:root {
            --primary-navy: #132438;
            --accent-gold: #d4af37;
            --gold-gradient: linear-gradient(135deg, #f3e7e1 0%, #d4af37 50%, #aa7c11 100%);
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --bg-blur: rgba(255, 255, 255, 0.88);
            --shadow-soft: 0 8px 30px rgba(19, 36, 56, 0.08);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #f8fafc; -webkit-font-smoothing: antialiased; }

        /* HEADER MAIN */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 6%;
            background: var(--bg-blur);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-soft);
            border-bottom: 2px solid rgba(212, 175, 55, 0.25);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 80px;
            overflow: visible;
        }

        /* BRAND LOGO */
        .logo {
            flex: 1 1 auto;
            min-width: 0;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: clamp(18px, 1.8vw, 26px);
            font-weight: 700;
            text-decoration: none;
            color: var(--primary-navy);
            letter-spacing: -0.2px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.3s ease;
            white-space: nowrap;
        }
        .logo a:hover { transform: scale(1.02); }
        .logo span {
            color: var(--accent-gold);
            background: var(--gold-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        /* NAVIGATION CONTAINER */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--primary-navy);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.08);
        }

        /* SEARCH BAR */
        .search-container {
            position: relative;
        }
        .search-container input {
            padding: 10px 16px 10px 40px;
            border-radius: 25px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: #ffffff;
            font-size: 13px;
            width: 220px;
            outline: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
        }
        .search-container input:focus {
            border-color: var(--accent-gold);
            width: 270px;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
        }
        /* Search Suggestions Dropdown */
        .search-suggestions {
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            max-width: 270px;
        }
        .search-suggestion-item {
            padding: 12px 15px !important;
            border-bottom: 1px solid #f0f0f0;
            text-decoration: none;
            color: #333;
            display: block;
            transition: background 0.2s;
            font-size: 13px;
        }
        .search-suggestion-item:hover {
            background: #f8f8f8;
            color: var(--accent-gold);
        }
        .search-suggestion-item:last-child {
            border-bottom: none;
        }
        .search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-gold);
            pointer-events: none;
            font-size: 13px;
        }

        /* BUTTONS & ACTIONS */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .cart-link {
            position: relative;
            font-size: 22px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: #ffffff;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.25);
            transition: all 0.3s ease;
        }
        .cart-link:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-color: var(--accent-gold);
        }
        .nav-actions a[title="Profile"] {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #fff;
            border: 1px solid rgba(212, 175, 55, 0.25);
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        }
        
        .cart-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: var(--primary-navy);
            color: var(--accent-gold);
            font-size: 10px;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 10px;
            border: 2px solid white;
        }

        .btn-login {
            background: var(--primary-navy);
            color: #ffffff;
            padding: 10px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            border: 1px solid var(--accent-gold);
        }
        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--primary-navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .menu-toggle {
            display: none;
            font-size: 26px;
            cursor: pointer;
            color: var(--primary-navy);
            border: 0;
            background: transparent;
            line-height: 1;
            padding: 8px;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .search-container input { width: 160px; }
            .search-container input:focus { width: 200px; }
        }

        @media (max-width: 768px) {
            .main-header {
                padding: 10px 12px;
                gap: 8px;
                position: sticky;
                overflow: visible;
            }
            .menu-toggle { display: block; order: 1; z-index: 3; }
            .logo { order: 2; flex: 1 1 auto; min-width: 0; }
            .logo a {
                font-size: 18px;
                letter-spacing: -0.12px;
                white-space: nowrap;
            }
            .nav-actions { order: 3; gap: 8px; }
            .cart-link { width: 36px; height: 36px; font-size: 18px; }
            .nav-actions a[title="Profile"] {
                width: 34px;
                height: 34px;
                font-size: 18px;
            }

            .nav-container {
                display: none;
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                right: 0;
                width: 100%;
                background: #ffffff;
                flex-direction: column;
                padding: 25px 20px;
                gap: 18px;
                box-shadow: 0 20px 25px rgba(0,0,0,0.1);
                border-bottom: 2px solid var(--accent-gold);
                z-index: 1100;
            }

            .nav-container.active { display: flex; }
            .nav-links { flex-direction: column; width: 100%; }
            .nav-link { width: 100%; text-align: center; font-size: 15px; }
            .search-container { width: 100%; }
            .search-container input { width: 100% !important; }
            .btn-login { width: 100%; text-align: center; }
        }
