        /* --- A. GLOBAL FONT DECLARATION --- */
        @font-face {
            font-family: 'Gotham Narrow Bold';
            src: url('Gotham Narrow Bold.woff2') format('woff2'),
                url('Gotham Narrow Bold.woff') format('woff'),
                url('Gotham Narrow Bold.otf') format('opentype');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: Helvetica, Arial, sans-serif;
            background: #ffffff;
            overflow-x: hidden;
            color: #000;
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 45px;
            background: rgba(255, 255, 255, 0.75);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 4px 30px;
            z-index: 1200;
            border-bottom: 1px solid #eee;
        }

        .center-logo-link {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(calc(-50% + 25px), -50%);
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-logo {
            height: 50px;
            opacity: 0.92;
            pointer-events: auto;
        }

        /* NAV */
        nav {
            margin-left: auto;
        }

        nav ul {
            list-style: none;
            display: flex;
            margin-top: 2px;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: opacity .25s ease;
        }

        nav ul li a:hover {
            opacity: 0.6;
        }

        .question-icon {
            height: 14px;
        }

        .desktop-icon {
            height: 12px;
        }

        .left-nav {
            display: flex;
            align-items: center;
        }

        .left-nav a {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
            text-decoration: none;
            margin-top: 4px;
            transition: opacity .25s ease;
        }

        .left-nav a:hover {
            opacity: 0.6;
        }

        /* HIGH-FASHION HEADER CONSTRUCTION SIGN */
        .header-construction-sign {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(0, 0, 0, 0.035);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 999px;
            padding: 3px 8px 2.5px 7px;
            margin-left: 20px;
            margin-top: 3px;
            line-height: 1;
            white-space: nowrap;
            user-select: none;
            pointer-events: none;
            box-sizing: border-box;
        }

        .header-construction-sign .construction-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #c5a880;
            display: inline-block;
            flex-shrink: 0;
            animation: minaraDotPulse 2.5s ease-in-out infinite;
        }

        .header-construction-sign .construction-text {
            font-family: 'Gotham Narrow Bold', 'Gotham Narrow Book', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: #555555;
        }

        @keyframes minaraDotPulse {
            0%, 100% { opacity: 0.45; transform: scale(0.9); }
            50% { opacity: 1; transform: scale(1.15); }
        }

        @media(max-width:900px) {
            .header-construction-sign {
                margin-left: 10px;
                margin-top: 0;
                padding: 2.5px 6px 2px 5px;
                gap: 4px;
            }
            .header-construction-sign .construction-dot {
                width: 3.5px;
                height: 3.5px;
            }
            .header-construction-sign .construction-text {
                font-size: 7px;
                letter-spacing: 1.1px;
            }
        }

        @media(max-width:380px) {
            .header-construction-sign {
                margin-left: 6px;
                padding: 2px 5px 1.5px 4px;
            }
            .header-construction-sign .construction-text {
                font-size: 6.5px;
                letter-spacing: 0.8px;
            }
        }

        .menu-icon {
            display: none;
        }

        .menu-icon img {
            height: 14px;
        }

        @media(max-width:900px) {
            nav {
                display: none;
            }

            .desktop-only {
                display: none !important;
            }

            header {
                justify-content: space-between;
                align-items: center;
                padding: 6px 16px;
            }

            .menu-icon {
                display: block;
            }

            .center-logo-link {
                position: absolute !important;
                left: 50% !important;
                top: 50% !important;
                transform: translate(-50%, -50%) !important;
                margin: 0 !important;
                pointer-events: none !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .center-logo {
                height: 36px !important;
                pointer-events: auto !important;
            }
        }

        /* CART BUTTON */
        .cart-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            text-transform: uppercase;
            color: #000;
            cursor: pointer;
        }

        .cart-btn img {
            height: 16px;
        }

        .cart-btn span {
            font-size: 12px;
        }

        .mobile-cart {
            display: none;
        }

        @media(max-width:900px) {
            .mobile-cart {
                display: flex;
                align-items: center;
                gap: 4px;
                position: absolute;
                right: 16px;
                top: 10px;
            }
        }

        /* ========== PAGE DIMMER FADE ========== */
        #pageDimmer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(1.4px);
            -webkit-backdrop-filter: blur(1.4px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 9000;
            /* above header */
            will-change: opacity;
        }

        #pageDimmer.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* ========== CART PANEL ========== */

        @media(max-width:900px) {
            #cartPanel::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 100px;
                background: #fff;
                z-index: 5;
                pointer-events: none;
            }

            #cartPanel>* {
                position: relative;
                z-index: 10;
            }
        }

        #cartPanel {
            position: fixed;
            top: 0;
            /* cover from very top, over header */
            right: 0;
            transform: translate3d(100%, 0, 0);
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform-style: preserve-3d;
            height: 100dvh;
            /* full screen height */
            width: 85vw;
            background: #fff;
            border-left: 1px solid #eaeaea;
            z-index: 10000;
            /* above everything */
            display: flex;
            flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        @media(max-width:900px) {
            #cartPanel {
                overflow: hidden;
            }
        }

        @media(min-width:901px) {
            #cartPanel {
                width: 26vw;
            }
        }

        #cartPanel.open {
            transform: translate3d(0, 0, 0);
        }

        .cart-header-row {
            background: #fff;
            border-bottom: 1px solid #eaeaea;
            padding: 12px 20px;
            font-size: 11px;
            text-transform: uppercase;
            display: flex;
            justify-content: space-between;
            color: #000000 !important;
        }

        .cart-close {
            cursor: pointer;
            color: #1106e8 !important;
        }

        .cart-ascii-wrap {
            padding: 12px 20px;
            border-bottom: 1px solid #eaeaea;
            background: #fafafa;
        }

        .cart-ascii {
            font-family: monospace;
            font-size: 9px;
            white-space: pre;
            line-height: 1.1;
        }

        @media(max-width:900px) {
            .cart-ascii {
                font-size: 8.5px;
            }
        }

        .cart-body {
            padding: 16px 20px;
            font-size: 11px;
        }

        .cart-auth-links {
            display: flex;
            gap: 30px;
            margin-top: 8px;
        }

        .cart-auth-links a {
            font-size: 11px;
            text-transform: uppercase;
            color: #000;
            text-decoration: none;
        }

        .cart-bottom {
            margin-top: auto;
        }

        .cart-section {
            padding: 12px 20px;
            border-top: 1px solid #eaeaea;
            font-size: 11px;
            text-transform: uppercase;
        }

        /* SLIDEOUT MENU — HIGH FASHION RICK OWENS AESTHETIC */
        .slideout {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 440px;
            height: 100dvh;
            background: #ffffff;
            z-index: 5000;
            transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 55px 36px 40px 36px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            box-shadow: 20px 0 60px rgba(0, 0, 0, 0.08);
            border-right: 1px solid #eaeaea;
        }

        @media (max-width: 600px) {
            .slideout {
                max-width: 100vw;
                padding: 50px 28px 36px 28px;
            }
        }

        .slideout.open {
            left: 0;
        }

        .close-btn {
            position: absolute;
            top: 22px;
            right: 24px;
            cursor: pointer;
            color: #000000;
            opacity: 0.85;
            transition: opacity 0.25s ease;
            z-index: 10;
            padding: 6px;
        }

        .close-btn:hover {
            opacity: 0.4;
        }

        .menu-nav-group {
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
        }

        .menu-group-label {
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 8.5px;
            font-weight: 900;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: #999999;
            margin-bottom: 16px;
            display: block;
        }

        .slideout a {
            display: block;
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.32em;
            margin-bottom: 16px;
            color: #111111;
            text-decoration: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .slideout a:hover {
            opacity: 0.5;
            transform: translateX(4px);
        }

        /* CATALOG REDESIGN */
        .catalog-main {
            padding: 100px 40px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .catalog-title-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .catalog-title-header h1 {
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            font-weight: normal;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 45px 20px;
        }

        .catalog-item {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            cursor: pointer;
        }

        .product-box {
            position: relative;
            width: 100%;
            margin: 0 auto;
            aspect-ratio: 1 / 1;
            background: #fcfaf8;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .se-card-badge {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100%;
            background: rgba(180, 83, 9, 0.95);
            color: #ffffff;
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 6.5px;
            font-weight: bold;
            text-align: center;
            padding: 3px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            pointer-events: none;
        }

        .product-box:empty {
            aspect-ratio: 1 / 1;
        }

        .product-link:hover .product-box img {
            transform: scale(1.05);
        }

        .product-box img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .product-info {
            margin-top: 15px;
            padding-top: 0;
            border-top: none;
            text-align: left;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 2px;
            text-transform: none;
            letter-spacing: 0.04em;
        }

        .product-inspired {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 11px;
            color: #6B7280;
            margin-top: 9px;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .product-retail-price {
            font-family: 'Gotham Narrow Book', sans-serif;
            font-size: 9px;
            font-weight: 400;
            color: #8a8a8a;
            letter-spacing: 0.5px;
            display: block;
            margin-top: 2px;
            margin-bottom: 0;
        }
        .hp-retail-price {
            font-family: 'Gotham Narrow Book', sans-serif;
            font-size: 9px;
            font-weight: 400;
            color: #8a8a8a;
            letter-spacing: 0.5px;
            display: inline;
            margin-left: 4px;
        }

        .product-flair-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
        }

        .product-flair-row .product-title {
            margin-bottom: 0;
            flex: 1 1 auto;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-flair {
            background: color-mix(in srgb, #b45309 18%, transparent);
            color: #b45309;
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 8px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            padding: 3px 9px;
            border-radius: 999px;
            line-height: 1;
            display: none;
            flex-shrink: 0;
        }


        .product-reviews-row {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 4px;
            margin-bottom: 6px;
        }

        .product-stars {
            color: #FFC107;
            font-size: 11px;
            letter-spacing: 1.5px;
        }

        .product-reviews-count {
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 9.5px;
            font-weight: 500;
            color: #6B7280;
            letter-spacing: 0.02em;
        }

        .catalog-stock-status {
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-title.placeholder,
        .product-price-block.placeholder {
            opacity: 0.5;
        }

        .product-price-action-row {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-top: auto;
            gap: 8px;
        }

        .product-price-block {
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0;
        }

        .product-price-block .sale-price {
            color: #111111;
        }

        .product-price-block .original-price {
            text-decoration: line-through;
            color: #6B7280;
            font-weight: 400;
            font-size: 0.9em;
        }
        .js-bundle-price, .js-bundle-was { display: none !important; }
        body.topup .js-price-empty { display: none !important; }
        body.topup .js-bundle-price, body.topup .js-bundle-was { display: inline !important; }
        body.topup .js-bundle-price { color: #1106e8 !important; }


        /* ADD TO CART BUTTON */
        .add-to-cart-btn {
            width: auto;
            background: #000;
            color: #fff;
            border: none;
            padding: 10px 18px;
            font-family: 'Gotham Narrow Bold', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: background 0.25s ease, opacity 0.25s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .add-to-cart-btn:hover {
            background: #333;
        }

        .add-to-cart-btn:disabled {
            background: #000000 !important;
            color: #ffffff !important;
            opacity: 0.5 !important;
            cursor: not-allowed !important;
        }

        .placeholder-btn {
            background: #000000 !important;
            color: #ffffff !important;
            opacity: 0.5 !important;
            cursor: not-allowed !important;
        }

        .placeholder-btn:hover {
            background: #000000 !important;
        }

        @media(max-width: 900px) {
            .product-box {
                max-width: none;
                aspect-ratio: 3 / 4;
            }

            .product-box img,
            .product-img {
                object-fit: contain !important;
                object-position: center !important;
            }

            .catalog-main {
                padding: 80px 24px 60px;
            }

            .catalog-title-header {
                margin-bottom: 40px;
            }

            .catalog-title-header h1 {
                font-size: 16px;
                letter-spacing: 0.3em;
            }

            .catalog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px;
            }

            .product-info {
                margin-top: 12px;
                padding-top: 0;
                border-top: none;
            }

            .product-title {
                font-size: 11px;
                margin-bottom: 2px;
            }

            .product-inspired {
                font-size: 10px;
                margin-bottom: 6px;
            }

            .product-price-action-row {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                width: 100%;
                margin-top: auto;
            }

            .product-price-block {
                font-size: 12px;
                margin-top: 5px;
                margin-bottom: 0;
            }

            .add-to-cart-btn {
                margin: 0;
                width: 100%;
                padding: 12px 10px;
                font-size: 9.5px;
                justify-content: center;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                gap: 6px;
                white-space: nowrap;
            }
        }

        /* FOOTER (PARIS CORNER LUXURY BRAND STYLE) */
        .site-footer {
          background: #0f0f0f;
          color: #ffffff;
          padding: 60px 20px 40px 20px;
          text-align: center;
          position: relative;
          z-index: 200;
          border-top: 1px solid rgba(255, 255, 255, 0.08);
          font-family: Helvetica, Arial, sans-serif;
          width: 100%;
        }

        .footer-container {
          max-width: 650px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .footer-logo-wrap {
          margin-bottom: 14px;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .footer-logo {
          height: 72px;
          width: auto;
          filter: invert(1);
          opacity: 0.95;
          transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .footer-logo:hover {
          opacity: 1;
          transform: scale(1.03);
        }

        .footer-brand-title {
          font-family: 'Gotham Narrow Bold', sans-serif;
          font-size: 16px;
          letter-spacing: 3px;
          text-transform: uppercase;
          font-weight: 900;
          color: #ffffff;
          margin-bottom: 20px;
        }

        .footer-description {
          font-size: 12px;
          line-height: 1.65;
          color: rgba(255, 255, 255, 0.72);
          margin-bottom: 24px;
          max-width: 540px;
          font-weight: 400;
          letter-spacing: 0.2px;
        }

        .footer-support {
          font-size: 11px;
          letter-spacing: 0.5px;
          color: rgba(255, 255, 255, 0.6);
          margin-bottom: 28px;
        }

        .footer-support a {
          color: rgba(255, 255, 255, 0.95);
          text-decoration: none;
          transition: opacity 0.2s ease;
        }

        .footer-support a:hover {
          opacity: 0.7;
          text-decoration: underline;
        }

        .footer-social-icons {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 14px;
          margin-bottom: 30px;
        }

        .social-icon-btn {
          width: 42px;
          height: 42px;
          border-radius: 50%;
          border: 1px solid rgba(255, 255, 255, 0.22);
          background: rgba(255, 255, 255, 0.04);
          color: #ffffff;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          transition: all 0.25s ease;
        }

        .social-icon-btn:hover {
          background: #ffffff;
          color: #000000;
          border-color: #ffffff;
          transform: translateY(-3px);
          box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
        }

        .footer-nav-links {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 14px;
          margin-bottom: 16px;
          font-size: 10px;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          flex-wrap: wrap;
        }

        .footer-nav-links a {
          color: rgba(255, 255, 255, 0.75);
          text-decoration: none;
          transition: color 0.25s ease;
        }

        .footer-nav-links a:hover {
          color: #ffffff;
        }

        .footer-nav-links .dot {
          opacity: 0.3;
          color: #ffffff;
        }

        .footer-copyright {
          font-size: 9px;
          letter-spacing: 1.2px;
          color: rgba(255, 255, 255, 0.4);
          text-transform: uppercase;
        }

        @media (max-width: 768px) {
          .site-footer {
            padding: 45px 16px 30px 16px;
          }
          .footer-logo {
            height: 60px;
          }
          .footer-brand-title {
            font-size: 14px;
            margin-bottom: 18px;
          }
          .footer-description {
            font-size: 11.5px;
            line-height: 1.6;
            margin-bottom: 20px;
          }
          .footer-support {
            font-size: 10.5px;
            margin-bottom: 24px;
          }
          .social-icon-btn {
            width: 38px;
            height: 38px;
          }
        }


        /* ================================
   ACCOUNT DROPDOWN (FINAL VERSION)
=================================== */

        .header-account .account-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .account-label {
            color: #000 !important;
            font-size: 11px !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none !important;
            line-height: 1;
            user-select: none;
        }

        /* Dropdown box */
        .acc-dropdown {
            position: fixed;
            top: 0;
            right: 0;
            width: 360px;
            background: #fff;
            border-left: 1px solid #eee;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
            display: none;
            z-index: 10001;
            /* Must be higher than the dimmer */
        }

        /* FORCING DIMMER TO SHOW */
        #pageDimmer.active {
            display: block !important;
            opacity: 1 !important;
            pointer-events: auto !important;
            z-index: 10000 !important;
            /* One level below the dropdown */
        }

        .acc-head {
            /* Tight top/side padding, but bottom padding creates the gap before the line */
            padding: 8px 12px 20px 12px;
            border-bottom: 1px solid #000;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            /* Keeps text at the very top */
        }

        #accName {
            font-size: 10.5px;
            /* Very slightly smaller */
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #000;
        }

        .acc-close {
            cursor: pointer;
            font-size: 10.5px;
            font-weight: 400;
            letter-spacing: 1.2px;
            color: #000000;
            text-transform: uppercase;
        }

        /* Menu items - Tighter boxes */
        .acc-item {
            display: block;
            padding: 10px 12px;
            /* Smaller boxes, text closer to left/top borders */
            font-size: 10.5px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #000000 !important;
            text-decoration: none !important;
            border-bottom: 1px solid #eee;
        }

        .acc-item:hover {
            text-decoration: underline !important;
            background: #fcfcfc;
        }

        @media (max-width:900px) {

            .mobile-account-block {
                margin-top: 0;
            }

            .mobile-account-link {
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.28em;
                margin: 0 0 24px 0;
                cursor: pointer;
                color: #000;
                -webkit-tap-highlight-color: transparent;
                user-select: none;
            }

            .mobile-arrow {
                margin-left: 8px;
                font-size: 14px;
                transition: transform .25s ease;
                pointer-events: none;
            }

            .mobile-arrow.open {
                transform: rotate(90deg);
            }

            .mobile-account-dropdown {
                margin-top: 14px;
            }

            .mobile-account-dropdown .acc-item {
                background: #f4f4f4;
                margin: 10px 0;
                padding: 16px 18px;
                border: none;
                font-size: 13px;
                letter-spacing: 0.22em;
            }

            .mobile-account-link.logout {
                margin-top: 0;
                margin-bottom: 24px;
            }
        }

        /* MOBILE ACCOUNT BUTTON */
        .mobile-account {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.28em;
            margin: 26px 0;
            color: #000;
            cursor: pointer;
            user-select: none;
        }

        /* Target the cart button specifically by its class */
        .cart-btn,
        .header-account .account-trigger {
            transition: opacity 0.2s ease !important;
            cursor: pointer !important;
        }

        /* Apply translucency on hover */
        .cart-btn:hover,
        .header-account .account-trigger:hover {
            opacity: 0.5 !important;
        }

        @media (min-width: 901px) {
            header {
                height: 54px;
                align-items: flex-start;
            }
        }
