*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1F2E63;
            --primary-light: #2A3D7E;
            --primary-dark: #162045;
            --primary-10: rgba(31, 46, 99, 0.1);
            --primary-20: rgba(31, 46, 99, 0.2);
            --secondary: #D39A3A;
            --secondary-light: #E0B05C;
            --secondary-10: rgba(211, 154, 58, 0.1);
            --secondary-20: rgba(211, 154, 58, 0.2);
            --bg: #FFFFFF;
            --bg-light: #F8F9FC;
            --bg-subtle: #F0F2F7;
            --text: #5F6368;
            --text-dark: #2D3142;
            --text-light: #8E9299;
            --black-5: #F5F5F5;
            --black-10: #EBEBEB;
            --black-20: #D4D4D4;
            --black-30: #B0B0B0;
            --black-40: #8A8A8A;
            --black-50: #6B6B6B;
            --black-60: #525252;
            --black-70: #3D3D3D;
            --black-80: #2D2D2D;
            --black-90: #1A1A1A;
            --white: #FFFFFF;
            --success: #1EB35B;
            --yellow-90: #F59E0B;
            --blue-90: #3B82F6;
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
            --radius-2xl: 1.25rem;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-base: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 12px rgba(31, 46, 99, 0.08);
            --shadow-lg: 0 8px 24px rgba(31, 46, 99, 0.1);
            --shadow-xl: 0 12px 40px rgba(31, 46, 99, 0.12);
            --container: 1920px;
            --font-family: 'Estedad', 'Segoe UI', Tahoma, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family);
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            width: 90%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0;
        }
        /* keep comfortable gutters on small screens */
        @media (max-width: 640px) {
            .container { width: 92%; }
        }
        /* ===== HEADER ===== */
        header {
            height: 4.5rem;
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--bg-subtle);
            transition: box-shadow 0.3s;
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
        }
        @media (min-width: 768px) {
            header { height: 5rem; }
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            position: relative;
        }
        /* the closed mega-menu is absolutely positioned; keep it out of layout width */
        .nav-desktop { position: static; }
        .nav-item.has-mega { position: static; }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .header-logo img {
            height: 2.25rem;
            width: auto;
            display: block;
        }
        @media (min-width: 768px) {
            .header-logo img { height: 2.6rem; }
        }
        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0.25rem;
        }
        @media (min-width: 1024px) {
            .nav-desktop { display: flex; }
        }
        .nav-item {
            position: relative;
            display: flex;
            align-items: center;
        }
        .nav-desktop .nav-link {
            color: var(--text);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.5rem;
            border-radius: var(--radius-md);
            transition: color 0.2s, background 0.2s;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            white-space: nowrap;
            border: none;
            background: none;
            font-family: var(--font-family);
        }
        .nav-desktop .nav-link:hover,
        .nav-item.has-mega:hover > .nav-link {
            color: var(--primary);
            background: var(--primary-10);
        }
        .nav-dropdown-arrow {
            width: 0.875rem;
            height: 0.875rem;
            transition: transform 0.25s;
        }
        .nav-item.has-mega:hover .nav-dropdown-arrow { transform: rotate(180deg); }
        /* ===== MEGA MENU ===== */
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            max-width: 100%;
            padding-top: 0.75rem;
            width: min(640px, calc(100vw - 3rem));
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
            z-index: 150;
        }
        .nav-item.has-mega:hover .mega-menu,
        .nav-item.has-mega:focus-within .mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }
        .mega-menu-inner {
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            padding: 1.25rem;
            max-height: min(70vh, 520px);
            overflow-y: auto;
        }
        .mega-menu-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-bottom: 0.75rem;
            margin-bottom: 0.75rem;
            border-bottom: 1px dashed var(--bg-subtle);
        }
        .mega-menu-title {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--text-dark);
        }
        .mega-menu-all {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            transition: color 0.2s;
        }
        .mega-menu-all:hover { color: var(--secondary); }
        .mega-menu-body {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (min-width: 1200px) {
            .mega-menu { width: min(860px, calc(100vw - 3rem)); }
            .mega-menu-body { grid-template-columns: 1fr 210px; }
        }
        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.25rem;
            align-content: start;
        }
        /* --- promo card inside the mega menu --- */
        .mega-promo {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.875rem;
            background: linear-gradient(160deg, var(--primary-10) 0%, var(--secondary-10) 100%);
            border: 1px solid var(--bg-subtle);
            border-radius: var(--radius-lg);
        }
        .mega-promo-media {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--white);
            aspect-ratio: 16 / 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mega-promo-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 35%;
            display: block;
        }
        .mega-promo-title {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.7;
        }
        .mega-promo-text {
            font-size: 0.6875rem;
            color: var(--text);
            line-height: 1.9;
        }
        .mega-promo-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            margin-top: auto;
            padding: 0.5rem 0.75rem;
            background: var(--primary);
            color: var(--white);
            border-radius: var(--radius-md);
            font-size: 0.75rem;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s;
        }
        .mega-promo-btn:hover { background: var(--secondary); transform: translateY(-1px); }
        .mega-promo-btn svg { width: 0.875rem; height: 0.875rem; }
        .mega-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.625rem;
            border-radius: var(--radius-md);
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text);
            transition: background 0.2s, color 0.2s;
        }
        .mega-link:hover {
            background: var(--primary-10);
            color: var(--primary);
        }
        .mega-link-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.75rem;
            height: 1.75rem;
            flex-shrink: 0;
            border-radius: var(--radius-md);
            background: var(--bg-light);
            color: var(--primary);
            transition: background 0.2s, color 0.2s;
        }
        .mega-link:hover .mega-link-icon {
            background: var(--primary);
            color: var(--white);
        }
        .mega-link-icon svg { width: 0.9375rem; height: 0.9375rem; }
        .mega-link-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .mega-badge {
            font-size: 0.5625rem;
            font-weight: 700;
            color: var(--white);
            background: var(--secondary);
            border-radius: 9999px;
            padding: 0.05rem 0.4rem;
            flex-shrink: 0;
            line-height: 1.6;
        }
        @media (max-width: 1199px) {
            .mega-promo {
                display: grid;
                grid-template-columns: 96px 1fr;
                grid-template-areas: "media title" "media text" "media btn";
                column-gap: 0.75rem;
                row-gap: 0.25rem;
                align-items: center;
            }
            .mega-promo-media { grid-area: media; aspect-ratio: 1; }
            .mega-promo-title { grid-area: title; }
            .mega-promo-text  { grid-area: text; }
            .mega-promo-btn   { grid-area: btn; margin-top: 0.25rem; justify-self: start; }
        }
        /* ===== SMART SEARCH ===== */
        .hx-search {
            position: relative;
            display: none;
            flex: 1 1 auto;
            min-width: 0;
            max-width: 200px;
            margin: 0 0.5rem;
        }
        @media (min-width: 1024px) { .hx-search { display: block; } }
        @media (min-width: 1140px) { .hx-search { max-width: 230px; margin: 0 0.625rem; } }
        @media (min-width: 1140px) { .nav-desktop .nav-link { padding: 0.5rem 0.75rem; } }
        @media (min-width: 1360px) { .hx-search { max-width: 340px; margin: 0 0.875rem; } }
        .hx-search-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            height: 2.625rem;
            padding-inline-start: 0.875rem;
            padding-inline-end: 0.3125rem;
            background: var(--bg-light);
            border: 1.5px solid var(--bg-subtle);
            border-radius: 9999px;
            transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
        }
        .hx-search.is-open .hx-search-box,
        .hx-search-box:focus-within {
            background: var(--white);
            border-color: var(--primary-20);
            box-shadow: 0 6px 22px rgba(31, 46, 99, 0.10);
        }
        .hx-search-lead {
            width: 1.0625rem;
            height: 1.0625rem;
            flex-shrink: 0;
            color: var(--text-light);
            transition: color 0.22s;
        }
        .hx-search.is-open .hx-search-lead,
        .hx-search-box:focus-within .hx-search-lead { color: var(--primary); }
        .hx-search-input {
            flex: 1;
            min-width: 0;
            border: none;
            outline: none;
            background: transparent;
            font-family: var(--font-family);
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text-dark);
        }
        .hx-search-input::placeholder { color: var(--text-light); font-weight: 400; }
        .hx-kbd {
            display: none;
            align-items: center;
            gap: 0.125rem;
            flex-shrink: 0;
            padding: 0.1rem 0.4rem;
            font-family: var(--font-family);
            font-size: 0.625rem;
            font-weight: 700;
            color: var(--text-light);
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-bottom-width: 2px;
            border-radius: var(--radius-sm);
            direction: ltr;
        }
        @media (min-width: 1024px) { .hx-search:not(.hx-search--mobile) .hx-kbd { display: inline-flex; } }
        .hx-search.has-text .hx-kbd { display: none; }
        .hx-search-clear {
            display: none;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 1.375rem;
            height: 1.375rem;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: var(--bg-subtle);
            color: var(--text);
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .hx-search.has-text .hx-search-clear { display: flex; }
        .hx-search-clear:hover { background: var(--primary-10); color: var(--primary); }
        .hx-search-clear svg { width: 0.75rem; height: 0.75rem; }
        .hx-search-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .hx-search-submit:hover { background: var(--secondary); transform: scale(1.06); }
        .hx-search-submit svg { width: 1rem; height: 1rem; }
        /* --- dropdown panel --- */
        .hx-search-panel {
            position: absolute;
            top: calc(100% + 0.625rem);
            inset-inline-end: 0;
            width: min(440px, calc(100vw - 2rem));
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            padding: 0.75rem;
            z-index: 160;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            max-height: min(70vh, 460px);
            overflow-y: auto;
        }
        .hx-search.is-open .hx-search-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .hx-sp-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            padding: 0.25rem 0.5rem 0.5rem;
            font-size: 0.6875rem;
            font-weight: 700;
            color: var(--text-light);
        }
        .hx-sp-label + .hx-sp-label { margin-top: 0.5rem; border-top: 1px dashed var(--bg-subtle); padding-top: 0.75rem; }
        .hx-sp-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
            padding: 0 0.25rem 0.25rem;
        }
        .hx-chip {
            padding: 0.3rem 0.75rem;
            font-family: var(--font-family);
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text);
            background: var(--bg-light);
            border: 1px solid var(--bg-subtle);
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .hx-chip:hover {
            color: var(--primary);
            background: var(--primary-10);
            border-color: var(--primary-20);
        }
        .hx-sp-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            width: 100%;
            padding: 0.5rem;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: background 0.15s;
            text-align: start;
        }
        .hx-sp-item:hover,
        .hx-sp-item.is-active { background: var(--primary-10); }
        .hx-sp-item:focus { outline: none; }
        .hx-sp-item:focus-visible {
            background: var(--primary-10);
            outline: 2px solid var(--primary-20);
            outline-offset: -2px;
        }
        .hx-search-submit:focus-visible,
        .hx-search-clear:focus-visible,
        .hx-chip:focus-visible {
            outline: 2px solid var(--primary-20);
            outline-offset: 2px;
        }
        .hx-sp-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 2.125rem;
            height: 2.125rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--primary-10), var(--secondary-10));
            color: var(--primary);
        }
        .hx-sp-icon svg { width: 1.0625rem; height: 1.0625rem; }
        .hx-sp-item.is-active .hx-sp-icon { background: var(--primary); color: var(--white); }
        .hx-sp-text { flex: 1; min-width: 0; }
        .hx-sp-title {
            display: block;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.7;
        }
        .hx-sp-title mark {
            background: var(--secondary-20);
            color: var(--secondary);
            border-radius: 3px;
            padding: 0 1px;
            font-weight: 800;
        }
        .hx-sp-meta {
            display: block;
            font-size: 0.6875rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .hx-sp-price {
            flex-shrink: 0;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }
        .hx-sp-price span { font-size: 0.625rem; font-weight: 600; color: var(--text-light); }
        .hx-sp-tagpill {
            flex-shrink: 0;
            padding: 0.1rem 0.5rem;
            font-size: 0.625rem;
            font-weight: 600;
            color: var(--text-light);
            background: var(--bg-light);
            border-radius: 9999px;
        }
        .hx-sp-empty {
            padding: 1.75rem 1rem;
            text-align: center;
        }
        .hx-sp-empty svg {
            width: 2.25rem;
            height: 2.25rem;
            color: var(--black-20);
            margin-bottom: 0.5rem;
        }
        .hx-sp-empty p { font-size: 0.8125rem; color: var(--text); font-weight: 600; }
        .hx-sp-empty small { font-size: 0.6875rem; color: var(--text-light); }
        .hx-sp-foot {
            display: none;
            align-items: center;
            gap: 0.875rem;
            margin-top: 0.5rem;
            padding: 0.5rem 0.5rem 0.125rem;
            border-top: 1px dashed var(--bg-subtle);
            font-size: 0.625rem;
            color: var(--text-light);
        }
        @media (min-width: 1024px) { .hx-search:not(.hx-search--mobile) .hx-sp-foot { display: flex; } }
        .hx-sp-foot span { display: inline-flex; align-items: center; gap: 0.25rem; }
        .hx-sp-foot b {
            font-family: var(--font-family);
            font-size: 0.5625rem;
            font-weight: 700;
            color: var(--text);
            background: var(--bg-light);
            border: 1px solid var(--bg-subtle);
            border-radius: 3px;
            padding: 0.05rem 0.3rem;
        }
        /* --- mobile variant: inline panel inside the drawer --- */
        .hx-search--mobile {
            display: block;
            max-width: none;
            margin: 0 0 1rem;
        }
        .hx-search--mobile .hx-search-box { height: 2.75rem; }
        .hx-search--mobile .hx-search-panel {
            position: static;
            width: 100%;
            max-height: none;
            padding: 0.5rem 0 0;
            margin-top: 0.5rem;
            border: none;
            border-top: 1px solid var(--bg-subtle);
            border-radius: 0;
            box-shadow: none;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: none;
        }
        .hx-search--mobile.is-open .hx-search-panel {
            display: block;
            animation: hxFade 0.22s ease;
        }
        @keyframes hxFade {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .btn-primary {
            padding: 0.5rem 1.25rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }
        .btn-secondary {
            padding: 0.5rem 1.25rem;
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--primary-20);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-secondary:hover {
            background: var(--primary-10);
            border-color: var(--primary);
        }
        .btn-secondary.gold {
            color: var(--secondary);
            border-color: var(--secondary-20);
        }
        .btn-secondary.gold:hover {
            background: var(--secondary-10);
            border-color: var(--secondary);
        }
        .mobile-menu-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary);
            border-radius: var(--radius-md);
            transition: background 0.2s;
        }
        @media (min-width: 1024px) {
            .mobile-menu-btn { display: none; }
        }
        .mobile-menu-btn:hover { background: var(--primary-10); }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
        }
        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 80%;
            max-width: 320px;
            background: var(--white);
            z-index: 200;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            padding: 1.5rem;
            box-shadow: -4px 0 20px rgba(0,0,0,0.1);
            overflow-y: auto;
        }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(31, 46, 99, 0.3);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            backdrop-filter: blur(4px);
        }
        .mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
        .mobile-menu-close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--primary-10);
            border: none;
            cursor: pointer;
            color: var(--primary);
            border-radius: var(--radius-md);
            margin-bottom: 1.5rem;
        }
        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .mobile-menu nav > a {
            color: var(--text-dark);
            font-size: 0.9375rem;
            font-weight: 500;
            padding: 0.75rem 0.5rem;
            border-radius: var(--radius-md);
            transition: background 0.2s;
        }
        .mobile-menu nav > a:hover { background: var(--primary-10); }
        /* ===== MOBILE COLLAPSIBLE SUBMENU ===== */
        .mobile-nav-group { display: flex; flex-direction: column; }
        .mobile-nav-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 0.5rem;
            padding: 0.75rem 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
            font-family: var(--font-family);
            font-size: 0.9375rem;
            font-weight: 500;
            text-align: right;
            border-radius: var(--radius-md);
            transition: background 0.2s, color 0.2s;
        }
        .mobile-nav-toggle:hover { background: var(--primary-10); }
        .mobile-nav-toggle svg {
            width: 1.125rem;
            height: 1.125rem;
            flex-shrink: 0;
            color: var(--text-light);
            transition: transform 0.28s ease;
        }
        .mobile-nav-toggle.open {
            color: var(--primary);
            background: var(--primary-10);
        }
        .mobile-nav-toggle.open svg {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .mobile-sub {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s ease;
        }
        .mobile-sub.open { grid-template-rows: 1fr; }
        .mobile-sub-inner {
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 0.125rem;
            padding-right: 0.5rem;
            margin-right: 0.5rem;
            border-right: 2px solid var(--bg-subtle);
        }
        .mobile-sub.open .mobile-sub-inner { padding: 0.375rem 0.5rem 0.5rem; }
        .mobile-menu .mobile-sub-inner a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text);
            border-radius: var(--radius-md);
            transition: background 0.2s, color 0.2s;
        }
        .mobile-menu .mobile-sub-inner a:hover {
            background: var(--primary-10);
            color: var(--primary);
        }
        .mobile-sub-inner .mega-link-icon {
            width: 1.5rem;
            height: 1.5rem;
        }
        .mobile-sub-inner .mega-link-icon svg { width: 0.8125rem; height: 0.8125rem; }
        .mobile-menu .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--bg-subtle);
        }
        /* ===== HERO SECTION ===== */
        .hero {
            padding: 3rem 0 2rem;
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(31, 46, 99, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 50%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(211, 154, 58, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        @media (min-width: 640px) {
            .hero { padding: 4rem 0 3rem; }
        }
        @media (min-width: 1024px) {
            .hero { padding: 5rem 0 4rem; }
        }
        .hero-inner {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 1024px) {
            .hero-inner {
                flex-direction: row;
                gap: 4rem;
            }
        }
        .hero-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        @media (min-width: 1024px) {
            .hero-content { width: 55%; }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 1rem;
            background: var(--secondary-10);
            border: 1px solid var(--secondary-20);
            border-radius: 9999px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--secondary);
            width: fit-content;
        }
        .hero-badge svg {
            width: 1rem;
            height: 1rem;
        }
        .hero-title {
            text-align: center;
        }
        @media (min-width: 1024px) {
            .hero-title { text-align: right; }
        }
        .hero-title h1 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.5;
        }
        @media (min-width: 640px) {
            .hero-title h1 { font-size: 2.25rem; }
        }
        @media (min-width: 768px) {
            .hero-title h1 { font-size: 2.75rem; }
        }
        .hero-title h1 .gold {
            color: var(--secondary);
        }
        .hero-desc {
            color: var(--text);
            font-size: 0.9375rem;
            line-height: 1.9;
            text-align: center;
        }
        @media (min-width: 640px) {
            .hero-desc { font-size: 1rem; }
        }
        @media (min-width: 1024px) {
            .hero-desc { text-align: right; }
        }
        .hero-search {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--white);
            padding: 0.5rem;
            padding-right: 1.25rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border: 1.5px solid var(--bg-subtle);
            transition: border-color 0.2s;
        }
        .hero-search:focus-within {
            border-color: var(--primary-20);
        }
        .hero-search input {
            width: 100%;
            border: none;
            outline: none;
            font-family: var(--font-family);
            font-size: 0.875rem;
            color: var(--text-dark);
            background: transparent;
        }
        .hero-search input::placeholder { color: var(--text-light); }
        .hero-search button {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 2.75rem;
            height: 2.75rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            cursor: pointer;
            transition: background 0.2s;
        }
        .hero-search button:hover { background: var(--primary-light); }
        .hero-search button svg { width: 1.125rem; height: 1.125rem; }
        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        @media (min-width: 1024px) {
            .hero-stats { justify-content: flex-start; }
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat .num {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        @media (min-width: 640px) {
            .hero-stat .num { font-size: 1.75rem; }
        }
        .hero-stat .label {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 0.125rem;
        }
        .hero-stat-divider {
            width: 1px;
            height: 2.5rem;
            background: var(--bg-subtle);
        }
        .hero-visual {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        @media (min-width: 1024px) {
            .hero-visual { width: 45%; }
        }
        .hero-visual-img {
            width: 100%;
            max-width: 560px;
            height: auto;
            display: block;
            object-fit: contain;
            filter: drop-shadow(0 18px 34px rgba(31, 46, 99, 0.16));
            animation: heroFloat 6s ease-in-out infinite;
        }
        @media (min-width: 1024px) {
            .hero-visual-img { max-width: 100%; }
        }
        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-visual-img { animation: none; }
        }
        /* ===== SECTION COMMON ===== */
        .section {
            padding: 3.5rem 0;
        }
        @media (min-width: 640px) {
            .section { padding: 4.5rem 0; }
        }
        @media (min-width: 1024px) {
            .section { padding: 5.5rem 0; }
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }
        @media (min-width: 640px) {
            .section-header { gap: 1.75rem; flex-wrap: nowrap; }
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            white-space: nowrap;
            flex-shrink: 0;
        }
        @media (min-width: 640px) {
            .section-title { font-size: 1.5rem; }
        }
        .section-title .accent { color: var(--secondary); }
        .section-divider {
            display: none;
            flex: 1;
            height: 1px;
            background: linear-gradient(to left, var(--bg-subtle), var(--black-20), var(--bg-subtle));
        }
        @media (min-width: 640px) {
            .section-divider { display: block; }
        }
        .section-link {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            flex-shrink: 0;
            margin-right: auto;
            transition: color 0.2s;
        }
        .section-link:hover { color: var(--secondary); }
        .section-link svg { width: 0.875rem; height: 0.875rem; }
        /* ===== PRODUCTS SLIDER (drag + autoplay) ===== */
        .products-viewport {
            overflow: hidden;
            /* negative margin + padding keeps card shadows from being clipped */
            margin: 0 -1rem;
            padding: 0.75rem 1rem 1.75rem;
        }
        .products-track {
            display: flex;
            gap: 1.25rem;
            cursor: grab;
            will-change: transform;
            touch-action: pan-y;
        }
        .products-track.dragging { cursor: grabbing; }
        .product-card {
            min-width: 280px;
            max-width: 320px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 40px 0 rgba(119, 132, 157, 0.2);
            border: 2px solid transparent;
            transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            opacity: 0;
            transform: translateY(10px);
            animation: slideIn 0.4s ease forwards;
        }
        @media (min-width: 640px) {
            .product-card { min-width: 300px; max-width: 340px; }
        }
        .product-card-img .discount-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            padding: 0.25rem 0.625rem;
            background: var(--secondary);
            color: var(--white);
            font-size: 0.6875rem;
            font-weight: 700;
            border-radius: var(--radius-md);
            z-index: 2;
        }
        .product-card:hover {
            /* border/shadow/transform handled by shared rule below */
        }
        .product-card:hover .product-card-title a {
            color: var(--secondary);
        }
        .product-card:hover .product-card-actions {
            opacity: 1;
            transform: translateY(0);
        }
        /* only the stats fade out on hover - the price stays visible */
        .product-card-footer__details,
        .slider-card-footer__details {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .product-card:hover .product-card-footer__details,
        .slider-card:hover .slider-card-footer__details {
            opacity: 0;
            visibility: hidden;
        }
        .product-card-img {
            position: relative;
            padding-top: 51%;
            overflow: hidden;
            border-radius: 8px;
            margin: 12px 12px 0;
        }
        .product-card-img .img-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-10) 0%, var(--secondary-10) 100%);
            border-radius: 8px;
        }
        .product-card-img { display: block; cursor: pointer; }
        .product-card-img .img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-card-img .img-placeholder img { transform: scale(1.05); }
        .product-card-img .img-placeholder svg {
            width: 3rem;
            height: 3rem;
            opacity: 0.25;
        }
        .product-card-body {
            padding: 13.5px 16px;
            transition: 0.3s;
        }
        .product-card-title {
            font-size: 17px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 32px;
            margin-bottom: 10px;
            max-height: 64px;
            overflow: hidden;
            transition: 0.3s;
            text-align: right;
            display: block;
            white-space: nowrap;
            text-overflow: ellipsis;
        }
        .product-card-title a {
            color: var(--text-dark);
            transition: 0.3s;
        }
        .product-card-title a:hover {
            color: var(--secondary);
        }
        .product-card:hover .product-card-title {
            white-space: normal;
        }
        .product-card-body__category {
            font-size: 14px;
            color: #959595;
            text-align: right;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
        }
        .product-card-body__category svg {
            width: 0.875rem;
            height: 0.875rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        .product-card-footer {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px 0 10px;
            margin: 0 15px;
            position: relative;
        }
        .product-card-footer__details {
            display: flex;
            align-items: center;
            gap: 6px;
            justify-content: flex-start;
            transition: 0.3s;
        }
        .product-card-footer__detail-item {
            text-align: center;
            margin: 0 6px;
        }
        .product-card-footer__detail-item:first-child {
            border-right: none;
            padding: 0;
            background-color: #f8f9fb;
            border-radius: 8px;
            width: 54px;
            height: 56px;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            margin-right: 0;
        }
        .product-card-footer__detail-item:first-child .product-card-footer__detail-count {
            color: var(--text-dark);
        }
        .product-card-footer__detail-item:last-child {
            direction: ltr;
        }
        .product-card-footer__detail-count {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: rgba(60, 67, 84, 0.8);
        }
        .product-card-footer__detail-label {
            font-size: 12px;
            color: rgba(109, 109, 109, 0.8);
            font-weight: 400;
        }
        .product-card-footer__price {
            text-align: center;
            position: relative;
            min-height: 54px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 113px;
        }
        .product-card-footer__price::after {
            content: "";
            position: absolute;
            border-right: 1px solid #ededed;
            right: -14px;
            height: 43px;
            bottom: 7px;
        }
        .product-card-footer__price__discount-text {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: -0.04em;
            color: var(--secondary);
            margin-bottom: 6px;
            text-align: center;
            position: absolute;
            left: -1px;
            top: -13px;
        }
        .product-card-footer__price__original {
            text-decoration: line-through;
            font-size: 14px;
            font-weight: 400;
            color: #959595;
            padding-right: 6px;
            text-align: right;
        }
        .product-card-footer__price__sale {
            display: block;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.7;
            white-space: nowrap;
            text-align: left;
        }
        .product-card-footer__price__sale__sym {
            font-size: 12px;
            font-weight: 700;
            color: #6d6d6d;
        }
        .product-card-footer__price__badge-off {
            display: block;
            width: 38px;
            height: 23px;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 3px;
            color: #fff;
            background-color: var(--secondary);
            text-align: center;
            line-height: 23px;
            font-size: 14px;
            font-weight: 700;
        }
        .product-card-actions {
            display: flex;
            transition: 0.3s;
            padding: 0 25px 25px 0;
            height: 70px;
            opacity: 0;
            overflow: visible;
            position: absolute;
            bottom: -75px;
            right: -11px;
            z-index: 10;
        }
        .product-card:hover .product-card-actions {
            opacity: 1;
            transform: translateY(-70px);
        }
        .product-card-actions__buy-btn {
            padding: 10px 15px;
            font-size: 14px;
            text-align: center;
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 115px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            gap: 0.375rem;
        }
        .product-card-actions__buy-btn:hover {
            background: var(--primary-light);
        }
        .product-card-actions__buy-btn svg {
            width: 1.125rem;
            height: 1.125rem;
        }
        .product-card-actions__preview-btn {
            margin-right: 6px;
            text-align: center;
            min-height: 42px;
            margin-left: 12px;
            padding: 10px 14px;
            font-size: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f1f3f5;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: 0.2s;
        }
        .product-card-actions__preview-btn:hover {
            background-color: #eeeff2;
        }
        .product-card-actions__preview-btn svg {
            width: 1.125rem;
            height: 1.125rem;
            color: #9ca4b4;
        }
        /* ===== CARD AUTHOR (developer) ===== */
        /* ===== TOOLTIP (preview button) ===== */
        .product-card-actions__preview-btn,
        .slider-card-actions__preview-btn { position: relative; }
        .product-card-actions__preview-btn::after,
        .slider-card-actions__preview-btn::after {
            content: attr(data-tip);
            position: absolute;
            bottom: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%) translateY(4px);
            padding: 0.3rem 0.6rem;
            background: var(--text-dark);
            color: var(--white);
            font-family: var(--font-family);
            font-size: 0.6875rem;
            font-weight: 600;
            line-height: 1.6;
            white-space: nowrap;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            z-index: 30;
        }
        .product-card-actions__preview-btn::before,
        .slider-card-actions__preview-btn::before {
            content: '';
            position: absolute;
            bottom: calc(100% + 0.22rem);
            left: 50%;
            transform: translateX(-50%) translateY(4px);
            border: 5px solid transparent;
            border-top-color: var(--text-dark);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            z-index: 30;
        }
        .product-card-actions__preview-btn:hover::after,
        .product-card-actions__preview-btn:focus-visible::after,
        .slider-card-actions__preview-btn:hover::after,
        .slider-card-actions__preview-btn:focus-visible::after,
        .product-card-actions__preview-btn:hover::before,
        .product-card-actions__preview-btn:focus-visible::before,
        .slider-card-actions__preview-btn:hover::before,
        .slider-card-actions__preview-btn:focus-visible::before {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .product-card-actions__preview-btn:hover,
        .slider-card-actions__preview-btn:hover {
            background-color: var(--primary) !important;
        }
        .product-card-actions__preview-btn:hover svg,
        .slider-card-actions__preview-btn:hover svg {
            color: var(--white) !important;
        }
        /* ===== CATEGORY GRID ===== */
        .category-viewport {
            overflow: hidden;
            margin: 0 -1rem;
            padding: 0.5rem 1rem 0.75rem;
        }
        .category-grid {
            display: flex;
            gap: 1rem;
            cursor: grab;
            will-change: transform;
            touch-action: pan-y;
        }
        .category-grid.dragging { cursor: grabbing; }
        @media (min-width: 640px) {
            .category-grid { gap: 1.25rem; }
        }
        .category-card {
            flex: 0 0 auto;
            width: calc((100% - 1rem) / 2);
        }
        @media (min-width: 640px) {
            .category-card { width: calc((100% - 2.5rem) / 3); }
        }
        @media (min-width: 768px) {
            .category-card { width: calc((100% - 3.75rem) / 4); }
        }
        @media (min-width: 1024px) {
            .category-card { width: calc((100% - 6.25rem) / 6); }
        }
        .cat-icon-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .cat-icon-inner svg { width: 1.5rem; height: 1.5rem; }
        .category-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 1.5rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            text-align: center;
            user-select: none;
            -webkit-user-drag: none;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.8125rem;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            box-shadow: var(--shadow-base);
            border: 1px solid var(--bg-subtle);
        }
        .category-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-20);
            color: var(--primary);
        }
        .category-card .cat-icon {
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-10);
            border-radius: var(--radius-lg);
            color: var(--primary);
            transition: background 0.2s;
        }
        .category-card:hover .cat-icon {
            background: var(--primary);
            color: var(--white);
        }
        .category-card .cat-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }
        /* ===== PRODUCT SLIDER ===== */
        .slider-section {
            padding: 3.5rem 0;
        }
        @media (min-width: 640px) {
            .slider-section { padding: 4.5rem 0; }
        }
        @media (min-width: 1024px) {
            .slider-section { padding: 5.5rem 0; }
        }
        .slider-tabs {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 0.25rem;
        }
        .slider-tabs::-webkit-scrollbar { display: none; }
        .slider-tab {
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--text);
            background: var(--bg-light);
            border: 1.5px solid var(--bg-subtle);
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
            font-family: var(--font-family);
        }
        .slider-tab:hover {
            color: var(--primary);
            border-color: var(--primary-20);
        }
        .slider-tab.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .slider-wrapper {
            position: relative;
        }
        .slider-track {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0.5rem 0 1.5rem;
            cursor: grab;
        }
        .slider-track::-webkit-scrollbar { display: none; }
        .slider-track.dragging { cursor: grabbing; scroll-behavior: auto; }
        .slider-card {
            min-width: 280px;
            max-width: 320px;
            flex-shrink: 0;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 40px 0 rgba(119, 132, 157, 0.2);
            border: 2px solid transparent;
            opacity: 0;
            transform: translateY(10px);
            animation: slideIn 0.4s ease forwards;
            position: relative;
        }
        @media (min-width: 640px) {
            .slider-card { min-width: 300px; max-width: 340px; }
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .slider-card:hover .slider-card-title a {
            color: var(--secondary);
        }
        .slider-card:hover .slider-card-actions {
            opacity: 1;
            transform: translateY(0);
        }
        /* ===== HEADER (IMAGE) ===== */
        .slider-card-img {
            position: relative;
            padding-top: 51%;
            overflow: hidden;
            border-radius: 8px;
            margin: 12px 12px 0;
        }
        .slider-card-img .img-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-10) 0%, var(--secondary-10) 100%);
            border-radius: 8px;
        }
        .slider-card-img .img-placeholder svg {
            width: 3rem;
            height: 3rem;
            opacity: 0.25;
        }
        .slider-card-img .discount-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            padding: 0.25rem 0.625rem;
            background: var(--secondary);
            color: var(--white);
            font-size: 0.6875rem;
            font-weight: 700;
            border-radius: var(--radius-md);
            z-index: 2;
        }
        /* ===== BODY ===== */
        .slider-card-body {
            padding: 13.5px 16px;
            transition: 0.3s;
        }
        .slider-card-title {
            font-size: 17px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 32px;
            margin-bottom: 10px;
            max-height: 64px;
            overflow: hidden;
            transition: 0.3s;
            text-align: right;
            display: block;
            white-space: nowrap;
            text-overflow: ellipsis;
        }
        .slider-card-title a {
            color: var(--text-dark);
            transition: 0.3s;
        }
        .slider-card-title a:hover {
            color: var(--secondary);
        }
        .slider-card:hover .slider-card-title {
            white-space: normal;
        }
        .slider-card-body__category {
            font-size: 14px;
            color: #959595;
            text-align: right;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
        }
        .slider-card-body__category svg {
            width: 0.875rem;
            height: 0.875rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        /* ===== FOOTER ===== */
        .slider-card-footer {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px 0 10px;
            margin: 0 15px;
            position: relative;
        }
        .slider-card-footer__details {
            display: flex;
            align-items: center;
            gap: 6px;
            justify-content: flex-start;
            transition: 0.3s;
        }
        .slider-card-footer__detail-item {
            text-align: center;
            margin: 0 6px;
        }
        .slider-card-footer__detail-item:first-child {
            border-right: none;
            padding: 0;
            background-color: #f8f9fb;
            border-radius: 8px;
            width: 54px;
            height: 56px;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            margin-right: 0;
        }
        .slider-card-footer__detail-item:first-child .slider-card-footer__detail-count {
            color: var(--text-dark);
        }
        .slider-card-footer__detail-item:last-child {
            direction: ltr;
        }
        .slider-card-footer__detail-count {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: rgba(60, 67, 84, 0.8);
        }
        .slider-card-footer__detail-label {
            font-size: 12px;
            color: rgba(109, 109, 109, 0.8);
            font-weight: 400;
        }
        .slider-card-footer__price {
            text-align: center;
            position: relative;
            min-height: 54px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 113px;
        }
        .slider-card-footer__price::after {
            content: "";
            position: absolute;
            border-right: 1px solid #ededed;
            right: -14px;
            height: 43px;
            bottom: 7px;
        }
        .slider-card-footer__price__discount-text {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: -0.04em;
            color: var(--secondary);
            margin-bottom: 6px;
            text-align: center;
            position: absolute;
            left: -1px;
            top: -13px;
        }
        .slider-card-footer__price__original {
            text-decoration: line-through;
            font-size: 14px;
            font-weight: 400;
            color: #959595;
            padding-right: 6px;
            text-align: right;
        }
        .slider-card-footer__price__sale {
            display: block;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.7;
            white-space: nowrap;
            text-align: left;
        }
        .slider-card-footer__price__sale__sym {
            font-size: 12px;
            font-weight: 700;
            color: #6d6d6d;
        }
        .slider-card-footer__price__badge-off {
            display: block;
            width: 38px;
            height: 23px;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 3px;
            color: #fff;
            background-color: var(--secondary);
            text-align: center;
            line-height: 23px;
            font-size: 14px;
            font-weight: 700;
        }
        /* ===== ACTIONS (SLIDE UP ON HOVER) ===== */
        .slider-card-actions {
            display: flex;
            transition: 0.3s;
            padding: 0 25px 25px 0;
            height: 70px;
            opacity: 0;
            overflow: visible;
            position: absolute;
            bottom: -75px;
            right: -11px;
            z-index: 10;
        }
        .slider-card:hover .slider-card-actions {
            opacity: 1;
            transform: translateY(-70px);
        }
        .slider-card-actions__buy-btn {
            padding: 10px 15px;
            font-size: 14px;
            text-align: center;
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 115px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            gap: 0.375rem;
        }
        .slider-card-actions__buy-btn:hover {
            background: var(--primary-light);
        }
        .slider-card-actions__buy-btn svg {
            width: 1.125rem;
            height: 1.125rem;
        }
        .slider-card-actions__preview-btn {
            margin-right: 6px;
            text-align: center;
            min-height: 42px;
            margin-left: 12px;
            padding: 10px 14px;
            font-size: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f1f3f5;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: 0.2s;
        }
        .slider-card-actions__preview-btn:hover {
            background-color: #eeeff2;
        }
        .slider-card-actions__preview-btn svg {
            width: 1.125rem;
            height: 1.125rem;
            color: #9ca4b4;
        }
        .slider-nav {
            display: none;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-radius: 50%;
            cursor: pointer;
            color: var(--primary);
            box-shadow: var(--shadow-md);
            transition: all 0.2s;
            position: absolute;
            top: 40%;
            z-index: 10;
        }
        @media (min-width: 768px) {
            .slider-nav { display: flex; }
        }
        .slider-nav:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .slider-nav svg { width: 1.125rem; height: 1.125rem; }
        .slider-nav.prev { right: -1.25rem; }
        .slider-nav.next { left: -1.25rem; }
        .slider-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .slider-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 9999px;
            background: var(--black-20);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .slider-dot.active {
            width: 1.5rem;
            background: var(--primary);
        }
        /* ===== OFFER BANNER (NEW: image + timer) ===== */
        .offer-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius-2xl);
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            position: relative;
            overflow: hidden;
            color: var(--white);
            direction: rtl;
        }
        @media (min-width: 768px) {
            .offer-banner {
                grid-template-columns: 1fr 1fr;
                padding: 3rem;
                gap: 3rem;
                align-items: center;
            }
        }
        .offer-banner-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 220px;
        }
        .offer-banner-bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            pointer-events: none;
        }
        .bubble-1 {
            width: 180px; height: 180px;
            background: radial-gradient(circle at 30% 30%, rgba(211,154,58,0.25), transparent 70%);
            top: 0; right: 10%;
        }
        .bubble-2 {
            width: 140px; height: 140px;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 70%);
            bottom: 0; left: 10%;
        }
        .bubble-3 {
            width: 100px; height: 100px;
            background: radial-gradient(circle at 50% 50%, rgba(211,154,58,0.15), transparent 70%);
            top: 20%; left: 5%;
        }
        .offer-gift-box {
            width: 180px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floaty 3.5s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }
        .offer-gift-box svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
        }
        @keyframes floaty {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        .offer-tag-float {
            position: absolute;
            top: 12px;
            right: 18px;
            background: var(--secondary);
            color: var(--white);
            border-radius: 16px;
            padding: 0.5rem 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1;
            box-shadow: 0 8px 20px rgba(211,154,58,0.45);
            transform: rotate(8deg);
            z-index: 3;
        }
        .offer-tag-float span {
            font-size: 1.5rem;
            font-weight: 800;
        }
        .offer-tag-float small {
            font-size: 0.75rem;
            margin-top: 2px;
            opacity: 0.9;
        }
        .offer-banner-panel {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .offer-banner-badge-new {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.9rem;
            background: rgba(211, 154, 58, 0.22);
            border: 1px solid rgba(211, 154, 58, 0.45);
            border-radius: 9999px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--secondary-light);
            width: fit-content;
        }
        .offer-banner-badge-new svg { width: 0.9rem; height: 0.9rem; }
        .offer-banner-title {
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.5;
            margin: 0;
        }
        @media (min-width: 640px) {
            .offer-banner-title { font-size: 1.85rem; }
        }
        .offer-banner-desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin: 0;
        }
        .offer-countdown {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin: 0.4rem 0 0.2rem;
            flex-wrap: wrap;
        }
        .cd-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
        }
        .cd-num {
            min-width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-lg);
            font-size: 1.4rem;
            font-weight: 800;
            backdrop-filter: blur(8px);
            font-variant-numeric: tabular-nums;
        }
        .cd-label {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.65);
            font-weight: 500;
        }
        .cd-sep {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--secondary-light);
            margin-top: 10px;
        }
        .btn-cta-gold {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.8rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-family: var(--font-family);
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: 0 6px 20px rgba(211,154,58,0.4);
            width: fit-content;
            margin-top: 0.5rem;
        }
        .btn-cta-gold:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(211,154,58,0.5);
        }
        .btn-cta-gold svg { width: 1.1rem; height: 1.1rem; }
        /* ===== BLOG SECTION ===== */
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            .blog-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
        }
        .blog-card {
            position: relative;
            cursor: pointer;
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-base);
            border: 1px solid var(--bg-subtle);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-20);
        }
        .blog-card-img-link { display: block; }
        .blog-card-img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-subtle);
            position: relative;
        }
        .blog-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(31,46,99,0.08));
            pointer-events: none;
        }
        .blog-card-body {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
            flex: 1;
        }
        .blog-card-tag {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            padding: 0.25rem 0.65rem;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(6px);
            color: var(--primary);
            font-size: 0.6875rem;
            font-weight: 600;
            border-radius: 9999px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .blog-card-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3rem;
            margin: 0;
        }
        .blog-card-title a {
            color: var(--text-dark);
            transition: color 0.2s;
        }
        .blog-card-title a:hover { color: var(--primary); }
        .blog-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0;
            border-top: 1px solid var(--bg-subtle);
            border-bottom: 1px solid var(--bg-subtle);
            font-size: 0.75rem;
            color: var(--text-light);
        }
        .blog-card-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .blog-card-avatar {
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
        }
        .blog-card-author-name { font-weight: 600; color: var(--text-dark); }
        .blog-card-time {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .blog-card-time svg { width: 0.875rem; height: 0.875rem; color: var(--primary); }
        .blog-card-overlay-link {
            position: absolute;
            inset: 0;
            z-index: 2;
            border-radius: var(--radius-xl);
        }
        .blog-card-overlay-link:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        /* keep the author/meta row interactive above the overlay */
        .blog-card-meta { position: relative; z-index: 3; pointer-events: none; }
        .blog-card:hover .blog-card-title a { color: var(--primary); }
        .blog-card-img { transition: transform 0.4s ease; }
        .blog-card:hover .blog-card-img { transform: scale(1.03); }
        .blog-card-img-link { overflow: hidden; }
        /* ===== FAQ SECTION ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-xl);
            border: 1px solid var(--bg-subtle);
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .faq-item.open { border-color: var(--primary-20); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: color 0.2s;
            gap: 1rem;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-question svg {
            width: 1.25rem;
            height: 1.25rem;
            min-width: 1.25rem;
            color: var(--primary);
            transition: transform 0.3s;
        }
        .faq-item.open .faq-question svg {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 1.5rem 1.25rem;
            font-size: 0.875rem;
            color: var(--text);
            line-height: 1.8;
        }
        /* ===== NEWSLETTER ===== */
        /* ===== BECOME A SELLER ===== */
        .seller-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius-2xl);
            padding: 3rem 1.5rem;
            text-align: center;
        }
        @media (min-width: 768px) {
            .seller-section { padding: 4rem 3rem; }
        }
        .seller-section::before,
        .seller-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .seller-section::before {
            width: 320px; height: 320px;
            background: radial-gradient(circle, rgba(211,154,58,0.28), transparent 70%);
            top: -140px; right: -80px;
        }
        .seller-section::after {
            width: 280px; height: 280px;
            background: radial-gradient(circle, rgba(211,154,58,0.18), transparent 70%);
            bottom: -140px; left: -60px;
        }
        .seller-section > * { position: relative; z-index: 1; }
        .seller-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.9rem;
            margin-bottom: 1rem;
            background: rgba(211, 154, 58, 0.2);
            border: 1px solid rgba(211, 154, 58, 0.35);
            border-radius: 9999px;
            color: var(--secondary-light);
            font-size: 0.75rem;
            font-weight: 700;
        }
        .seller-badge svg { width: 0.9rem; height: 0.9rem; }
        .seller-section h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        @media (min-width: 640px) {
            .seller-section h2 { font-size: 2.25rem; }
        }
        .seller-section p {
            font-size: 0.9375rem;
            color: rgba(255,255,255,0.82);
            line-height: 2;
            max-width: 620px;
            margin: 0 auto 2rem;
        }
        .seller-perks {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            max-width: 780px;
            margin: 0 auto 2.25rem;
        }
        @media (min-width: 640px) {
            .seller-perks { grid-template-columns: repeat(3, 1fr); }
        }
        .seller-perk {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            padding: 1.25rem 1rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(8px);
            transition: background 0.25s, transform 0.25s;
        }
        .seller-perk:hover {
            background: rgba(255,255,255,0.13);
            transform: translateY(-3px);
        }
        .seller-perk-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            margin-bottom: 0.35rem;
            border-radius: 50%;
            background: rgba(211, 154, 58, 0.22);
            color: var(--secondary-light);
        }
        .seller-perk-icon svg { width: 1.25rem; height: 1.25rem; }
        .seller-perk-title {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--white);
        }
        .seller-perk-text {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
        }
        .seller-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.625rem;
            padding: 1rem 2.75rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-family: var(--font-family);
            font-size: 1.0625rem;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 12px 30px rgba(211, 154, 58, 0.4);
            transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
        }
        @media (min-width: 640px) {
            .seller-cta { padding: 1.125rem 3.5rem; font-size: 1.125rem; }
        }
        .seller-cta:hover {
            background: var(--secondary-light);
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(211, 154, 58, 0.5);
        }
        .seller-cta:active { transform: translateY(-1px); }
        .seller-cta svg { width: 1.375rem; height: 1.375rem; }
        .seller-note {
            display: block;
            margin-top: 1rem;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.62);
        }
        /* ===== FOOTER (Modern) ===== */
        .footer-wrapper {
            padding: 0 0 2rem;
            margin-top: 3.5rem;
        }
        @media (min-width: 640px) {
            .footer-wrapper { margin-top: 4.5rem; }
        }
        footer {
            background: linear-gradient(135deg, #141F44 0%, var(--primary) 50%, var(--primary-dark) 100%);
            border-radius: var(--radius-2xl);
            padding: 3rem 2rem 2rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 768px) {
            footer { padding: 4rem 3rem 2rem; }
        }
        /* Animated background blobs */
        footer::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(211, 154, 58, 0.15) 0%, transparent 70%);
            filter: blur(20px);
            animation: blobFloat 14s ease-in-out infinite;
            pointer-events: none;
        }
        footer::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
            filter: blur(20px);
            animation: blobFloat 18s ease-in-out infinite reverse;
            pointer-events: none;
        }
        @keyframes blobFloat {
            0%, 100% { transform: translate(0,0) scale(1); }
            33% { transform: translate(20px,-20px) scale(1.08); }
            66% { transform: translate(-15px,15px) scale(0.95); }
        }
        .footer-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.4;
        }
        .footer-orb.o1 {
            width: 10px; height: 10px;
            background: var(--secondary-light);
            top: 20%; left: 15%;
            animation: orbDrift 9s ease-in-out infinite;
            box-shadow: 0 0 20px var(--secondary-light);
        }
        .footer-orb.o2 {
            width: 6px; height: 6px;
            background: #6CB4EE;
            top: 70%; left: 40%;
            animation: orbDrift 12s ease-in-out infinite reverse;
            box-shadow: 0 0 16px #6CB4EE;
        }
        .footer-orb.o3 {
            width: 8px; height: 8px;
            background: var(--secondary);
            top: 40%; right: 25%;
            animation: orbDrift 11s ease-in-out infinite;
            animation-delay: 2s;
            box-shadow: 0 0 18px var(--secondary);
        }
        @keyframes orbDrift {
            0%,100% { transform: translateY(0); opacity: 0.4; }
            50% { transform: translateY(-25px); opacity: 0.8; }
        }
        /* Grid decoration dots */
        .footer-grid-deco {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 28px 28px;
            mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
            pointer-events: none;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.25rem;
            position: relative;
            z-index: 2;
        }
        @media (min-width: 768px) {
            .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; }
        }
        .footer-about h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-about h3 .logo-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--secondary);
            display: inline-block;
            box-shadow: 0 0 12px var(--secondary);
            animation: pulseDot 2s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%,100% { transform: scale(1); box-shadow: 0 0 12px var(--secondary); }
            50% { transform: scale(1.3); box-shadow: 0 0 20px var(--secondary-light); }
        }
        .footer-about .tagline {
            font-size: 0.75rem;
            color: var(--secondary-light);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        .footer-about p {
            font-size: 0.8125rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.9;
            margin-bottom: 1.25rem;
            max-width: 380px;
        }
        .footer-social {
            display: flex;
            gap: 0.6rem;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 12px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: var(--white);
            transition: all 0.25s ease;
        }
        .footer-social a:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(211,154,58,0.35);
        }
        .footer-social a svg { width: 1rem; height: 1rem; }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.1rem;
            color: var(--white);
            position: relative;
            padding-bottom: 0.6rem;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary));
            border-radius: 2px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }
        .footer-col ul li a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: rgba(255,255,255,0.55);
            font-size: 0.8125rem;
            transition: all 0.2s;
            padding: 0.2rem 0;
        }
        .footer-col ul li a:hover {
            color: var(--white);
            transform: translateX(-4px);
        }
        .footer-col ul li a .dot {
            width: 5px;
            height: 5px;
            background: var(--secondary);
            border-radius: 9999px;
            opacity: 0.7;
            transition: all 0.2s;
        }
        .footer-col ul li a:hover .dot {
            opacity: 1;
            box-shadow: 0 0 8px var(--secondary);
        }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            color: rgba(255,255,255,0.6);
            font-size: 0.8125rem;
            padding: 0.35rem 0;
            transition: color 0.2s;
        }
        .footer-contact-item:hover { color: var(--white); }
        .footer-contact-item .ci-icon {
            width: 1.6rem;
            height: 1.6rem;
            border-radius: 8px;
            background: rgba(255,255,255,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--secondary-light);
        }
        .footer-contact-item .ci-icon svg { width: 0.85rem; height: 0.85rem; }
        .footer-bottom {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
            position: relative;
            z-index: 2;
        }
        .footer-bottom p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
        }
        .footer-bottom-badges {
            display: flex;
            gap: 0.5rem;
        }
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.3rem 0.65rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            font-size: 0.6875rem;
            color: rgba(255,255,255,0.6);
        }
        .footer-badge svg { width: 0.75rem; height: 0.75rem; color: var(--success); }
        @media (min-width: 640px) {
            .footer-bottom p { font-size: 0.8125rem; }
        }
        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 2.75rem;
            height: 2.75rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            transform: translateY(1rem);
            transition: opacity 0.3s, transform 0.3s, background 0.2s;
            z-index: 50;
        }
        .scroll-top.visible { opacity: 1; transform: translateY(0); }
        .scroll-top:hover { background: var(--primary-light); }
        .scroll-top svg { width: 1.25rem; height: 1.25rem; }
        /* ===== TOAST ===== */
        .toast-container {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            pointer-events: none;
        }
        .toast {
            background: var(--white);
            padding: 0.875rem 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            border-right: 4px solid var(--primary);
            font-size: 0.875rem;
            color: var(--text-dark);
            animation: toast-in 0.3s ease;
            pointer-events: auto;
        }
        @keyframes toast-in {
            from { opacity: 0; transform: translateY(-1rem); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* ===== HOVER EFFECTS ON PRODUCT/SLIDER CARDS (no full-color fill) ===== */
        .product-card:hover,
        .slider-card:hover {
            transform: translateY(-4px) !important;
            border-color: var(--secondary) !important;
            box-shadow: 0 14px 36px rgba(211, 154, 58, 0.22) !important;
        }
        /* ===== LATEST QUESTIONS SECTION (Redesigned grid) ===== */
        .questions-section {
            padding: 3.5rem 0;
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }
        .questions-section::before,
        .questions-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            opacity: 0.4;
        }
        .questions-section::before {
            width: 320px; height: 320px;
            background: radial-gradient(circle, var(--primary-10), transparent 70%);
            top: -80px; right: -80px;
            animation: floaty 10s ease-in-out infinite;
        }
        .questions-section::after {
            width: 280px; height: 280px;
            background: radial-gradient(circle, var(--secondary-10), transparent 70%);
            bottom: -80px; left: -60px;
            animation: floaty 12s ease-in-out infinite reverse;
        }
        @media (min-width: 640px) {
            .questions-section { padding: 4.5rem 0; }
        }
        @media (min-width: 1024px) {
            .questions-section { padding: 5.5rem 0; }
        }
        /* ===== QUESTIONS CAROUSEL (drag + autoplay) ===== */
        .questions-wrapper {
            position: relative;
            z-index: 1;
        }
        .questions-viewport {
            overflow: hidden;
            /* negative margin + padding keeps card shadows from being clipped */
            margin: 0 -1rem;
            padding: 0.75rem 1rem 1rem;
        }
        .questions-track {
            display: flex;
            gap: 1.25rem;
            cursor: grab;
            will-change: transform;
            touch-action: pan-y;
        }
        .questions-track.dragging { cursor: grabbing; }
        @media (min-width: 1024px) {
            .questions-track { gap: 1.75rem; }
        }
        .questions-nav {
            display: none;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-radius: 50%;
            cursor: pointer;
            color: var(--primary);
            box-shadow: var(--shadow-md);
            transition: all 0.2s;
            position: absolute;
            top: 45%;
            z-index: 10;
        }
        @media (min-width: 768px) {
            .questions-nav { display: flex; }
        }
        .questions-nav:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .questions-nav svg { width: 1.125rem; height: 1.125rem; }
        .questions-nav.prev { right: -1.25rem; }
        .questions-nav.next { left: -1.25rem; }
        .questions-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            position: relative;
            z-index: 1;
        }
        .questions-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 9999px;
            background: var(--black-20);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .questions-dot.active {
            width: 1.5rem;
            background: var(--primary);
        }
        .question-card {
            flex: 0 0 auto;
            width: calc(100% - 0.5rem);
            user-select: none;
            -webkit-user-drag: none;
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            box-shadow: var(--shadow-base);
            border: 1px solid var(--bg-subtle);
            display: flex;
            flex-direction: column;
            gap: 0.875rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .question-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }
        .question-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-20);
        }
        .question-card:hover::before {
            transform: scaleX(1);
        }
        /* 2 cards on tablet, 3 cards on desktop */
        @media (min-width: 640px) {
            .question-card { width: calc((100% - 1.25rem) / 2); }
        }
        @media (min-width: 1024px) {
            .question-card { width: calc((100% - 3.5rem) / 3); }
        }
        .question-card-header {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .question-card-user {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            flex: 1;
            min-width: 0;
        }
        .question-card-user-top {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .question-card-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }
        .question-card-username {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--text-dark);
        }
        .question-card-product {
            font-size: 0.65rem;
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.15rem 0.5rem;
            background: var(--primary-10);
            border-radius: 999px;
        }
        .question-card-product svg {
            width: 0.7rem;
            height: 0.7rem;
        }
        .question-card-text {
            font-size: 0.875rem;
            color: var(--text);
            line-height: 1.9;
            position: relative;
            padding-right: 0.5rem;
            border-right: 2px solid var(--bg-subtle);
        }
        .question-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 0.85rem;
            border-top: 1px dashed var(--bg-subtle);
        }
        .question-card-date {
            font-size: 0.7rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .question-card-date svg { width: 0.8rem; height: 0.8rem; }
        .question-card-status {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.6875rem;
            font-weight: 600;
            padding: 0.3rem 0.65rem;
            border-radius: 9999px;
        }
        .question-card-status.answered {
            background: rgba(30, 179, 91, 0.1);
            color: var(--success);
        }
        .question-card-status.pending {
            background: var(--secondary-10);
            color: var(--secondary);
        }
        .question-card-status svg {
            width: 0.8rem;
            height: 0.8rem;
        }
        .questions-cta {
            margin-top: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .questions-cta p {
            color: var(--text);
            font-size: 0.9rem;
        }
        .btn-ask-q {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: var(--shadow-md);
        }
        .btn-ask-q:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-ask-q svg { width: 1.1rem; height: 1.1rem; }
        /* ===== AMAZING PRODUCT (spotlight carousel + thumbs) ===== */
        .amazing-wrap {
            position: relative;
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
            border: 1px solid var(--bg-subtle);
            border-radius: var(--radius-2xl);
            padding: 1rem;
            overflow: hidden;
        }
        @media (min-width: 900px) {
            .amazing-wrap { padding: 1.25rem 3.25rem; }
        }
        .amazing-wrap::before {
            content: '';
            position: absolute;
            width: 520px; height: 520px;
            top: -260px; inset-inline-start: -160px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--secondary-10), transparent 70%);
            pointer-events: none;
        }
        .amazing-viewport {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: var(--radius-xl);
        }
        .amazing-nav:hover { transform: translateY(-50%) scale(1.06); }
        .amazing-track {
            display: flex;
            will-change: transform;
            touch-action: pan-y;
            cursor: grab;
        }
        .amazing-track.dragging { cursor: grabbing; }
        /* ---- nav arrows ---- */
        .amazing-nav {
            display: none;
            align-items: center;
            justify-content: center;
            width: 2.75rem;
            height: 2.75rem;
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-radius: 50%;
            cursor: pointer;
            color: var(--primary);
            box-shadow: var(--shadow-lg);
            transition: all 0.25s;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 14;
        }
        @media (min-width: 900px) {
            .amazing-nav { display: flex; }
        }
        .amazing-nav:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(31, 46, 99, 0.32);
        }
        .amazing-nav svg { width: 1.25rem; height: 1.25rem; }
        .amazing-nav.prev { right: 0.4rem; }
        .amazing-nav.next { left: 0.4rem; }
        /* ---- card ---- */
        .amazing-card {
            flex: 0 0 100%;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            background: var(--white);
            border: 1px solid var(--bg-subtle);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(31, 46, 99, 0.06);
            user-select: none;
        }
        /* ---- media: always 2100 x 1040 ---- */
        .amazing-media {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            aspect-ratio: 2100 / 1040;
            padding: 0;
            background: linear-gradient(150deg, var(--primary) 0%, var(--primary-light) 100%);
            overflow: hidden;
        }
        .amazing-media img {
            position: absolute;
            inset: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .amazing-offbadge {
            position: absolute;
            top: 0.75rem;
            inset-inline-start: 0.75rem;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.32rem 0.7rem;
            background: var(--secondary);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 800;
            border-radius: 9999px;
            box-shadow: 0 6px 18px rgba(211, 154, 58, 0.45);
        }
        .amazing-offbadge svg { width: 0.85rem; height: 0.85rem; }
        /* ---- body ---- */
        .amazing-body {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            padding: 1.125rem;
            min-width: 0;
        }
        .amazing-head {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
        }
        .amazing-head-text { min-width: 0; }
        /* countdown becomes a side-by-side element only when there is room */
        @media (min-width: 560px) {
            .amazing-head {
                flex-direction: row;
                align-items: flex-start;
                justify-content: space-between;
                gap: 1rem;
                flex-wrap: wrap;
            }
            .amazing-head-text { flex: 1; }
        }
        .amazing-title {
            font-size: 1.125rem;
            font-weight: 800;
            line-height: 1.65;
            color: var(--text-dark);
            margin: 0 0 0.4rem;
        }
        .amazing-title a { color: inherit; transition: color 0.25s; }
        .amazing-title a:hover { color: var(--primary); }
        /* category + developer on the SAME row */
        .amazing-subrow {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            font-size: 0.75rem;
        }
        .amazing-cat {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--text-light);
        }
        .amazing-cat svg { width: 0.85rem; height: 0.85rem; color: var(--primary); }
        .amazing-cat a { color: var(--primary); font-weight: 700; }
        .amazing-cat a:hover { color: var(--secondary); }
        /* ---- countdown ---- */
        .amazing-clock {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            direction: ltr;
            flex-shrink: 0;
        }
        @media (max-width: 559px) {
            .amazing-clock-unit { flex: 1; min-width: 0; }
        }
        .amazing-clock-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.1rem;
            min-width: 2.9rem;
            padding: 0.32rem 0.35rem;
            background: var(--primary);
            border-radius: var(--radius-md);
            box-shadow: 0 3px 10px rgba(31, 46, 99, 0.22);
        }
        .amazing-clock-num {
            font-size: 1.0625rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--white);
            font-variant-numeric: tabular-nums;
        }
        .amazing-clock-cap {
            font-size: 0.5625rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.65);
        }
        .amazing-clock-sep {
            font-size: 0.9375rem;
            font-weight: 800;
            color: var(--primary);
            padding-bottom: 0.7rem;
        }
        .amazing-desc {
            font-size: 0.8125rem;
            line-height: 1.95;
            color: var(--text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* ---- price ---- */
        .amazing-price-row {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .amazing-badge-off {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.22rem 0.6rem;
            background: var(--secondary);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 800;
            border-radius: var(--radius-md);
            animation: amazingPulse 2.4s ease-in-out infinite;
        }
        @keyframes amazingPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.07); }
        }
        @media (prefers-reduced-motion: reduce) {
            .amazing-badge-off { animation: none; }
        }
        .amazing-price-old {
            font-size: 0.8125rem;
            color: var(--text-light);
            text-decoration: line-through;
        }
        .amazing-price-new {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-dark);
            white-space: nowrap;
        }
        .amazing-price-new span {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-light);
        }
        /* ---- footer: stats + actions ---- */
        .amazing-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.875rem;
            flex-wrap: wrap;
            padding-top: 0.75rem;
            border-top: 1px dashed var(--bg-subtle);
        }
        @media (max-width: 999px) {
            .amazing-foot { margin-top: auto; }
        }
        /* same visual language as the product-card footer details */
        .amazing-stats {
            display: flex;
            align-items: center;
            gap: 6px;
            justify-content: flex-start;
        }
        .amazing-stat {
            text-align: center;
            margin: 0 6px;
        }
        .amazing-stat:first-child {
            padding: 0;
            background-color: #f8f9fb;
            border-radius: 8px;
            width: 54px;
            height: 56px;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            margin-right: 0;
        }
        .amazing-stat:first-child .amazing-stat-num { color: var(--text-dark); }
        .amazing-stat:last-child { direction: ltr; }
        .amazing-stat-num {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: rgba(60, 67, 84, 0.8);
            direction: ltr;
            unicode-bidi: isolate;
        }
        .amazing-stat-label {
            font-size: 12px;
            color: rgba(109, 109, 109, 0.8);
            font-weight: 400;
        }
        .amazing-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex: 1;
            min-width: 0;
            justify-content: flex-end;
        }
        /* stack-free fit on narrow screens */
        @media (max-width: 560px) {
            .amazing-foot { flex-direction: column; align-items: stretch; }
            .amazing-stats { justify-content: space-between; }
            .amazing-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 0.45rem; }
            .amazing-buy-btn,
            .amazing-preview-btn { width: 100%; padding: 0.85rem 1rem; font-size: 0.9375rem; }
        }
        .amazing-buy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.95rem 2.1rem;
            font-size: 1rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-family: var(--font-family);
            font-weight: 800;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 8px 22px rgba(31, 46, 99, 0.26);
            transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
        }
        .amazing-buy-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(211, 154, 58, 0.35);
        }
        .amazing-buy-btn:active { transform: translateY(0); }
        .amazing-buy-btn svg { width: 1.15rem; height: 1.15rem; }
        .amazing-preview-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 0.95rem 1.5rem;
            background: var(--bg-light);
            border: 1.5px solid var(--bg-subtle);
            border-radius: var(--radius-lg);
            color: var(--text);
            font-family: var(--font-family);
            font-size: 0.9375rem;
            font-weight: 700;
            white-space: nowrap;
            cursor: pointer;
            transition: background 0.25s, color 0.25s, border-color 0.25s;
        }
        .amazing-preview-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }
        .amazing-preview-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
        /* ================= DESKTOP: side-by-side ================= */
        @media (min-width: 1000px) {
            .amazing-card { grid-template-columns: 52% 1fr; align-items: stretch; }
            .amazing-media { aspect-ratio: 2100 / 1040; height: auto; align-self: start; }
            .amazing-body { align-self: stretch; }
            .amazing-body { padding: 0.875rem 1rem; gap: 0.55rem; justify-content: space-evenly; }
            .amazing-title { font-size: 0.9375rem; line-height: 1.5;
                display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
            .amazing-subrow { font-size: 0.6875rem; }
            .amazing-desc { display: none; }
            .amazing-clock-unit { min-width: 2.4rem; padding: 0.22rem 0.25rem; }
            .amazing-clock-num { font-size: 0.9375rem; }
            .amazing-clock-cap { font-size: 0.5rem; }
            .amazing-clock-sep { font-size: 0.8125rem; padding-bottom: 0.6rem; }
            .amazing-price-new { font-size: 1.0625rem; }
            .amazing-price-old { font-size: 0.6875rem; }
            .amazing-badge-off { font-size: 0.6875rem; padding: 0.18rem 0.5rem; }
            .amazing-foot { padding-top: 0.5rem; gap: 0.5rem; }
            .amazing-buy-btn { padding: 0.9rem 1.9rem; font-size: 0.9375rem; }
            .amazing-buy-btn svg { width: 1.1rem; height: 1.1rem; }
            .amazing-preview-btn { padding: 0.9rem 1.35rem; font-size: 0.875rem; }
            .amazing-preview-btn svg { width: 1.05rem; height: 1.05rem; }
        }
        @media (min-width: 1500px) {
            .amazing-card { grid-template-columns: 50% 1fr; }
            .amazing-body { padding: 1.375rem 1.75rem; gap: 0.65rem; }
            .amazing-title { font-size: 1.3125rem; -webkit-line-clamp: 2; }
            .amazing-subrow { font-size: 0.75rem; }
            .amazing-desc { display: -webkit-box; font-size: 0.8125rem; -webkit-line-clamp: 2; }
            .amazing-badge-off { font-size: 0.75rem; padding: 0.22rem 0.6rem; }
            .amazing-foot { padding-top: 0.75rem; }
            .amazing-buy-btn { padding: 0.65rem 1.25rem; font-size: 0.8125rem; }
            .amazing-buy-btn svg { width: 1.15rem; height: 1.15rem; }
            .amazing-preview-btn { width: 2.5rem; height: 2.5rem; }
            .amazing-preview-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
            .amazing-clock-unit { min-width: 3.2rem; padding: 0.4rem; }
            .amazing-clock-num { font-size: 1.25rem; }
            .amazing-clock-cap { font-size: 0.625rem; }
            .amazing-price-new { font-size: 1.4375rem; }
        }
        /* ================= THUMBNAILS ================= */
        .amazing-thumbs-section {
            position: relative;
            z-index: 1;
            margin-top: 0.875rem;
        }
        .amazing-thumbs-viewport {
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0.25rem;
            margin: -0.25rem;
        }
        .amazing-thumbs-viewport::-webkit-scrollbar { display: none; }
        .amazing-thumbs-track {
            display: flex;
            gap: 0.625rem;
        }
        .amazing-thumb {
            position: relative;
            flex: 0 0 auto;
            width: 13.5rem;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.5rem;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: var(--radius-lg);
            box-shadow: 0 2px 10px rgba(31, 46, 99, 0.06);
            cursor: pointer;
            text-align: start;
            font-family: var(--font-family);
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
        }
        @media (min-width: 640px) {
            .amazing-thumb { width: 15rem; }
        }
        .amazing-thumb:hover {
            transform: translateY(-2px);
            border-color: var(--primary-20);
            box-shadow: 0 6px 18px rgba(31, 46, 99, 0.12);
        }
        .amazing-thumb.is-active {
            border-color: var(--primary);
            box-shadow: 0 6px 20px rgba(31, 46, 99, 0.2);
        }
        .amazing-thumb-img {
            flex-shrink: 0;
            width: 3.4rem;
            aspect-ratio: 1 / 1;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--primary-10);
        }
        @media (min-width: 640px) {
            .amazing-thumb-img { width: 3.9rem; }
        }
        .amazing-thumb-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .amazing-thumb-text {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            min-width: 0;
            flex: 1;
        }
        .amazing-thumb-title {
            font-size: 0.6875rem;
            font-weight: 700;
            line-height: 1.6;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.25s;
        }
        .amazing-thumb:hover .amazing-thumb-title,
        .amazing-thumb.is-active .amazing-thumb-title { color: var(--primary); }
        .amazing-thumb-price {
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--secondary);
            white-space: nowrap;
        }
        .amazing-thumb-price small { font-size: 0.5625rem; font-weight: 600; }
        .amazing-thumb-off {
            position: absolute;
            top: -0.35rem;
            inset-inline-start: -0.35rem;
            padding: 0.1rem 0.4rem;
            background: var(--secondary);
            color: var(--white);
            font-size: 0.5625rem;
            font-weight: 800;
            border-radius: 9999px;
            box-shadow: 0 2px 6px rgba(211, 154, 58, 0.4);
        }
        /* ===== TWIN BANNERS ===== */
        .twin-section { padding-top: 0; }
        .twin-banners {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .twin-banners { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
        }
        @media (min-width: 1024px) {
            .twin-banners { gap: 1.75rem; }
        }
        .twin-banner {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.875rem;
            min-height: 132px;
            padding: 1.25rem;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            color: var(--white);
            text-decoration: none;
            isolation: isolate;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        @media (min-width: 1024px) {
            .twin-banner { min-height: 150px; padding: 1.5rem 1.75rem; gap: 1.125rem; }
        }
        .twin-banner--plugins {
            background:
                linear-gradient(125deg, rgba(31,46,99,0.92) 0%, rgba(42,61,126,0.88) 100%),
                url('assets/banner-plugins.jpg') center/cover no-repeat;
            box-shadow: 0 10px 30px rgba(31, 46, 99, 0.22);
        }
        .twin-banner--scripts {
            background:
                linear-gradient(125deg, rgba(184,131,47,0.90) 0%, rgba(224,176,92,0.86) 100%),
                url('assets/banner-scripts.jpg') center/cover no-repeat;
            box-shadow: 0 10px 30px rgba(211, 154, 58, 0.28);
        }
        .twin-banner:hover {
            transform: translateY(-4px);
        }
        .twin-banner--plugins:hover { box-shadow: 0 18px 42px rgba(31, 46, 99, 0.32); }
        .twin-banner--scripts:hover { box-shadow: 0 18px 42px rgba(211, 154, 58, 0.38); }
        /* decorative blobs */
        .twin-deco {
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
        }
        .twin-deco::before,
        .twin-deco::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.10);
        }
        .twin-deco::before {
            width: 190px; height: 190px;
            top: -70px; inset-inline-start: -50px;
        }
        .twin-deco::after {
            width: 130px; height: 130px;
            bottom: -60px; inset-inline-end: 12%;
            background: rgba(255, 255, 255, 0.07);
        }
        .twin-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.25rem;
            height: 3.25rem;
            flex-shrink: 0;
            border-radius: var(--radius-xl);
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(6px);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        @media (min-width: 1024px) {
            .twin-icon { width: 3.75rem; height: 3.75rem; }
        }
        .twin-icon svg { width: 1.5rem; height: 1.5rem; }
        @media (min-width: 1024px) {
            .twin-icon svg { width: 1.75rem; height: 1.75rem; }
        }
        .twin-banner:hover .twin-icon {
            transform: scale(1.06) rotate(-4deg);
            background: rgba(255, 255, 255, 0.24);
        }
        .twin-text {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            min-width: 0;
            flex: 1;
        }
        .twin-kicker {
            font-size: 0.625rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: rgba(255, 255, 255, 0.72);
        }
        .twin-title {
            font-size: 1.0625rem;
            font-weight: 800;
            line-height: 1.6;
            color: var(--white);
        }
        @media (min-width: 1024px) {
            .twin-title { font-size: 1.25rem; }
        }
        .twin-desc {
            font-size: 0.6875rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.78);
        }
        @media (min-width: 1024px) {
            .twin-desc { font-size: 0.75rem; }
        }
        .twin-cta {
            display: none;
            align-items: center;
            gap: 0.35rem;
            flex-shrink: 0;
            padding: 0.5rem 0.95rem;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
            transition: background 0.25s, color 0.25s, gap 0.25s;
        }
        @media (min-width: 480px) {
            .twin-cta { display: inline-flex; }
        }
        .twin-cta svg { width: 0.875rem; height: 0.875rem; }
        .twin-banner:hover .twin-cta {
            gap: 0.6rem;
            background: var(--white);
        }
        .twin-banner--plugins:hover .twin-cta { color: var(--primary); }
        .twin-banner--scripts:hover .twin-cta { color: #B8832F; }
        /* ===== AUTH MODAL ===== */
        .auth-overlay {
            position: fixed;
            inset: 0;
            z-index: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: rgba(22, 32, 69, 0.55);
            backdrop-filter: blur(6px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s;
        }
        .auth-overlay.open { opacity: 1; visibility: visible; }
        .auth-modal {
            position: relative;
            width: 100%;
            max-width: 420px;
            max-height: calc(100vh - 2rem);
            overflow-y: auto;
            background: var(--white);
            border-radius: var(--radius-2xl);
            box-shadow: 0 24px 70px rgba(22, 32, 69, 0.3);
            padding: 1.75rem 1.5rem 1.25rem;
            text-align: center;
            transform: translateY(16px) scale(0.98);
            transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .auth-overlay.open .auth-modal { transform: translateY(0) scale(1); }
        @media (min-width: 480px) {
            .auth-modal { padding: 2rem 1.875rem 1.5rem; }
        }
        .auth-close {
            position: absolute;
            top: 0.875rem;
            left: 0.875rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border: none;
            border-radius: 50%;
            background: var(--bg-light);
            color: var(--text);
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .auth-close:hover { background: var(--primary-10); color: var(--primary); }
        .auth-close svg { width: 1rem; height: 1rem; }
        .auth-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.125rem;
        }
        .auth-brand-img { height: 2.4rem; width: auto; display: block; }
        .auth-brand-name {
            font-size: 1.0625rem;
            font-weight: 800;
            color: var(--primary);
        }
        .auth-tabs {
            display: flex;
            gap: 0.25rem;
            padding: 0.25rem;
            margin-bottom: 1.25rem;
            background: var(--bg-light);
            border: 1px solid var(--bg-subtle);
            border-radius: 9999px;
        }
        .auth-tab {
            flex: 1;
            padding: 0.55rem 0.5rem;
            border: none;
            border-radius: 9999px;
            background: transparent;
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text);
            cursor: pointer;
            transition: background 0.22s, color 0.22s, box-shadow 0.22s;
        }
        .auth-tab:hover { color: var(--primary); }
        .auth-tab.active {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(31, 46, 99, 0.25);
        }
        .auth-tabs.is-hidden { display: none; }
        .auth-title {
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.375rem;
        }
        .auth-sub {
            font-size: 0.8125rem;
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 1.25rem;
        }
        /* steps */
        .auth-step { display: none; text-align: right; }
        .auth-step.is-active { display: block; animation: authFade 0.28s ease; }
        @keyframes authFade {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .auth-field { display: block; margin-bottom: 0.875rem; }
        .auth-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.375rem;
        }
        .auth-input-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 0.75rem;
            height: 2.875rem;
            background: var(--bg-light);
            border: 1.5px solid var(--bg-subtle);
            border-radius: var(--radius-lg);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }
        .auth-input-wrap:focus-within {
            background: var(--white);
            border-color: var(--primary-20);
            box-shadow: 0 4px 14px rgba(31, 46, 99, 0.08);
        }
        .auth-input-icon {
            width: 1.0625rem;
            height: 1.0625rem;
            flex-shrink: 0;
            color: var(--text-light);
        }
        .auth-input-wrap:focus-within .auth-input-icon { color: var(--primary); }
        .auth-input-wrap input {
            flex: 1;
            min-width: 0;
            border: none;
            outline: none;
            background: transparent;
            font-family: var(--font-family);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: 0.02em;
        }
        .auth-input-wrap input::placeholder {
            font-weight: 400;
            color: var(--text-light);
            letter-spacing: normal;
        }
        .auth-eye {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 1.75rem;
            height: 1.75rem;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: transparent;
            color: var(--text-light);
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .auth-eye:hover { background: var(--bg-subtle); color: var(--primary); }
        .auth-eye svg { width: 1rem; height: 1rem; }
        .auth-field.has-error .auth-input-wrap { border-color: #E5484D; background: rgba(229, 72, 77, 0.04); }
        .auth-error {
            display: none;
            margin-top: 0.3rem;
            font-size: 0.6875rem;
            font-weight: 600;
            color: #E5484D;
        }
        .auth-error.show { display: block; }
        .auth-error--center { text-align: center; }
        .auth-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            margin-top: 0.25rem;
            padding: 0.85rem 1rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-family: var(--font-family);
            font-size: 0.9375rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
            box-shadow: 0 8px 20px rgba(31, 46, 99, 0.18);
        }
        .auth-submit:hover { background: var(--primary-light); transform: translateY(-2px); }
        .auth-submit:active { transform: translateY(0); }
        .auth-submit svg { width: 1.0625rem; height: 1.0625rem; }
        .auth-submit[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
        .auth-back {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            width: 100%;
            margin-top: 0.625rem;
            padding: 0.6rem;
            background: none;
            border: none;
            font-family: var(--font-family);
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            border-radius: var(--radius-md);
            transition: background 0.2s, color 0.2s;
        }
        .auth-back:hover { background: var(--bg-light); color: var(--primary); }
        .auth-back svg { width: 0.9375rem; height: 0.9375rem; }
        /* OTP */
        .auth-sentto {
            font-size: 0.8125rem;
            color: var(--text);
            text-align: center;
            margin-bottom: 1rem;
            line-height: 1.9;
        }
        .auth-sentto b { color: var(--text-dark); font-weight: 800; }
        .auth-editphone {
            display: inline-block;
            margin-inline-start: 0.25rem;
            padding: 0;
            background: none;
            border: none;
            font-family: var(--font-family);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            text-decoration: underline;
        }
        .auth-editphone:hover { color: var(--secondary); }
        .auth-otp {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }
        .auth-otp-input {
            width: 3rem;
            height: 3.25rem;
            text-align: center;
            font-family: var(--font-family);
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-dark);
            background: var(--bg-light);
            border: 1.5px solid var(--bg-subtle);
            border-radius: var(--radius-lg);
            outline: none;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
        }
        .auth-otp-input:focus {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: 0 4px 14px rgba(31, 46, 99, 0.12);
            transform: translateY(-2px);
        }
        .auth-otp-input.filled { background: var(--white); border-color: var(--primary-20); }
        .auth-otp.shake { animation: authShake 0.4s ease; }
        .auth-otp.error .auth-otp-input { border-color: #E5484D; }
        @keyframes authShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-6px); }
            75% { transform: translateX(6px); }
        }
        .auth-demo-hint {
            display: none;
            margin: 0.75rem 0 0;
            padding: 0.5rem 0.75rem;
            background: var(--secondary-10);
            border: 1px dashed var(--secondary-20);
            border-radius: var(--radius-md);
            font-size: 0.6875rem;
            font-weight: 600;
            color: var(--secondary);
            text-align: center;
        }
        .auth-demo-hint.show { display: block; }
        .auth-demo-hint b { font-size: 0.875rem; letter-spacing: 0.15em; }
        .auth-resend {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0.875rem;
            font-size: 0.75rem;
            color: var(--text-light);
        }
        .auth-resend-btn {
            background: none;
            border: none;
            padding: 0;
            font-family: var(--font-family);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
        }
        .auth-resend-btn:disabled { color: var(--text-light); cursor: not-allowed; }
        .auth-resend-btn:not(:disabled):hover { color: var(--secondary); text-decoration: underline; }
        /* success */
        .auth-success { text-align: center; padding: 0.5rem 0 0; }
        .auth-success-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: rgba(30, 179, 91, 0.12);
            color: var(--success);
            animation: authPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        @keyframes authPop {
            0% { transform: scale(0.4); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        .auth-success-icon svg { width: 2rem; height: 2rem; }
        .auth-success h4 {
            font-size: 1.0625rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.375rem;
        }
        .auth-success p {
            font-size: 0.8125rem;
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 1.25rem;
        }
        .auth-terms {
            margin-top: 1rem;
            font-size: 0.6875rem;
            color: var(--text-light);
            line-height: 1.9;
        }
        .auth-terms a { color: var(--primary); font-weight: 700; }
        .auth-terms a:hover { color: var(--secondary); text-decoration: underline; }
        .auth-terms.is-hidden { display: none; }
