/* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-light);
            padding: 25px;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        }

        body.dark-theme .cookie-consent {
            background: rgba(15, 15, 20, 0.98);
            border-top-color: rgba(255, 255, 255, 0.1);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cookie-icon {
            font-size: 48px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cookie-text p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        .cookie-text a {
            color: var(--orange);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-family: 'General Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .cookie-btn.accept {
            background: var(--orange);
            color: white;
        }

        .cookie-btn.accept:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .cookie-btn.reject {
            background: transparent;
            color: var(--text-gray);
            border: 2px solid var(--border-light);
        }

        .cookie-btn.reject:hover {
            border-color: var(--text-gray);
            color: var(--text-dark);
        }

        .cookie-btn.settings {
            background: transparent;
            color: var(--orange);
            border: 2px solid var(--orange);
        }

        .cookie-btn.settings:hover {
            background: var(--orange);
            color: white;
        }

        /* Cookie Settings Modal */
        .cookie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10001;
            padding: 20px;
            overflow-y: auto;
        }

        .cookie-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cookie-modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        body.dark-theme .cookie-modal-content {
            background: #1a1a1a;
        }

        .cookie-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 32px;
            color: var(--text-gray);
            cursor: pointer;
            line-height: 1;
        }

        .cookie-close:hover {
            color: var(--text-dark);
        }

        .cookie-modal-content h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cookie-modal-content > p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .cookie-option {
            padding: 20px;
            background: var(--off-white);
            border-radius: 12px;
            margin-bottom: 15px;
        }

        body.dark-theme .cookie-option {
            background: rgba(255, 255, 255, 0.05);
        }

        .cookie-option-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .cookie-option-header h4 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 4px 0;
        }

        .cookie-option p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

        .cookie-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .cookie-badge.required {
            background: rgba(255, 107, 53, 0.1);
            color: var(--orange);
        }

        .cookie-badge.optional {
            background: rgba(107, 114, 128, 0.1);
            color: var(--text-gray);
        }

        /* Toggle Switch */
        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
            flex-shrink: 0;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 26px;
        }

        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        .cookie-toggle input:checked + .cookie-slider {
            background-color: var(--orange);
        }

        .cookie-toggle input:checked + .cookie-slider:before {
            transform: translateX(24px);
        }

        .cookie-slider.disabled {
            background-color: var(--orange);
            opacity: 0.5;
            cursor: not-allowed;
        }

        .cookie-modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .cookie-modal-buttons .cookie-btn {
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cookie-btn {
                width: 100%;
            }

            .cookie-modal-content {
                padding: 30px 20px;
            }

            .cookie-modal-buttons {
                flex-direction: column;
            }

            .cookie-icon {
                font-size: 40px;
            }
        }