       /* ══════════════════════════
         VARIABLES
       ══════════════════════════ */
        :root {
            --brand: #e31e24;
            --brand-dk: #b5161b;
            --brand-deep: #8e1014;
            --gold: #c9a24b;
            --gold-lt: #f0d48a;
            --ink: #191417;
            --ink-soft: #1e1e2e;
            --paper: #ffffff;
            --muted: #6b6b6b;
            --muted-lt: #b0b0b0;
            --line: #ececec;
            --bg: #f5f3ef;
            --mob-bot: 64px;
            --mob-head: 62px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            overflow-x: hidden;
            max-width: 100%;
            scroll-behavior: smooth;
        }

        body {
            max-width: 100%;
            font-family: "Plus Jakarta Sans", sans-serif;
            color: var(--ink);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        html[lang="bn"] body,
        html[lang="bn"] input,
        html[lang="bn"] button,
        html[lang="bn"] select,
        html[lang="bn"] textarea {
            font-family: "Hind Siliguri", "Plus Jakarta Sans", sans-serif;
            line-height: 1.65;
        }

        html[lang="bn"] h1,
        html[lang="bn"] h2,
        html[lang="bn"] h3,
        html[lang="bn"] h4,
        html[lang="bn"] h5,
        html[lang="bn"] h6 {
            font-family: "Hind Siliguri", "Plus Jakarta Sans", sans-serif;
            line-height: 1.4;
            font-weight: 700;
        }

        .serif {
            font-family: "DM Serif Display", serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ══════════════════════════
         DESKTOP TOPBAR
      ══════════════════════════ */
        .topbar {
            background: linear-gradient(90deg,
                    var(--brand-deep),
                    var(--brand) 55%,
                    var(--brand-dk));
            color: #fff;
            font-size: 0.79rem;
            font-weight: 300;
        }

        .topbar .inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 36px;
            gap: 0.75rem;
            overflow: hidden;
        }

        .tb-left {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            min-width: 0;
            overflow: hidden;
            flex-shrink: 1;
        }

        .tb-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .topbar a {
            color: rgba(255, 255, 255, 0.9);
            transition: color 0.18s;
            text-decoration: none;
            white-space: nowrap;
        }

        .topbar a:hover {
            color: var(--gold-lt);
        }

        .tb-sep {
            width: 1px;
            height: 13px;
            background: rgba(255, 255, 255, 0.25);
            flex-shrink: 0;
        }

        .tb-item {
            display: flex;
            align-items: center;
            gap: 0.28rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .tb-item i {
            color: var(--gold-lt);
        }

        .tb-social {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .tb-social a {
            width: 21px;
            height: 21px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.13);
            font-size: 0.7rem;
            transition:
                background 0.18s,
                color 0.18s;
        }

        .tb-social a:hover {
            background: var(--gold);
            color: var(--ink);
        }

        .tb-sel {
            background: transparent;
            border: none;
            color: #fff;
            font-family: inherit;
            font-size: 0.76rem;
            cursor: pointer;
            padding: 0;
        }

        .tb-sel:focus {
            outline: none;
        }

        .tb-sel option {
            color: #222;
        }

        .tb-lang-switch {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .tb-lang-btn {
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            padding: 2px 5px;
            border-radius: 4px;
            transition: color .15s, background .15s;
            letter-spacing: .04em;
        }

        .tb-lang-btn:hover,
        .tb-lang-btn.active {
            color: #fff;
            background: rgba(255,255,255,.15);
        }

        .tb-lang-sep {
            color: rgba(255,255,255,.3);
            font-size: 0.7rem;
        }

        .tb-currency {
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .tb-currency-symbol {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold-lt);
            line-height: 1;
        }

        /* ══════════════════════════
         DESKTOP STICKY HEADER WRAP
      ══════════════════════════ */
        .desk-header-sticky {
            position: sticky;
            top: 0;
            z-index: 1030;
            overflow-anchor: none;
        }

        .desk-header-sticky.scrolled .mainhead {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
        }

        @media (max-width: 767px) {
            .desk-header-sticky {
                display: none;
            }
        }

        /* ══════════════════════════
         DESKTOP MAIN HEADER
      ══════════════════════════ */
        .mainhead {
            background: var(--paper);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
            position: relative;
            z-index: 2;
        }

        .mainhead .inner {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            padding: 13px 0;
        }

        .brand-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .brand-logo img {
            height: 54px;
            width: auto;
            transition: opacity 0.18s;
        }

        .brand-logo:hover img {
            opacity: 0.83;
        }

        [x-cloak] { display: none !important; }

        .searchbox {
            flex: 1;
            max-width: 640px;
            display: flex;
            align-items: stretch;
            border: 1.5px solid #ddd;
            border-radius: 50px;
            background: #fff;
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
            transition:
                border-color 0.2s,
                box-shadow 0.2s;
            height: 50px;
        }

        .searchbox:focus-within {
            border-color: var(--brand);
            box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.10), 0 2px 14px rgba(0, 0, 0, 0.07);
        }

        /* ── Category dropdown ── */
        .s-cat-wrap {
            position: relative;
            flex-shrink: 0;
            display: flex;
            align-items: stretch;
        }

        html[lang="bn"] .s-cat-btn {
            max-width: 180px;
            font-size: 0.76rem;
        }

        .s-cat-btn {
            border: none;
            background: #f5f5f5;
            padding: 0 0.85rem 0 1.15rem;
            font-family: inherit;
            font-size: 0.81rem;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer;
            border-right: 1.5px solid #e8e8e8;
            max-width: 155px;
            min-width: 118px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: background-color 0.18s;
            border-radius: 50px 0 0 50px;
            white-space: nowrap;
        }

        .s-cat-btn:hover,
        .s-cat-btn.open {
            background: #ebebeb;
        }

        .s-cat-lbl {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            min-width: 0;
            flex: 1;
        }

        .s-cat-arr {
            font-size: 0.68rem;
            flex-shrink: 0;
            transition: transform 0.2s ease;
            color: var(--muted);
        }

        .s-cat-arr.flipped {
            transform: rotate(180deg);
        }

        /* ── Dropdown panel ── */
        .s-cat-drop {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 240px;
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.05);
            z-index: 9999;
            padding: 6px;
            overflow-y: auto;
            max-height: 390px;
        }

        .scd-in { transition: opacity 0.15s ease, transform 0.15s ease; }
        .scd-from { opacity: 0; transform: translateY(-6px) scale(0.97); }
        .scd-to { opacity: 1; transform: translateY(0) scale(1); }

        .scd-opt {
            display: flex;
            align-items: center;
            gap: 9px;
            width: 100%;
            padding: 7px 10px;
            border: none;
            background: transparent;
            border-radius: 10px;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.85rem;
            color: var(--ink);
            text-align: left;
            transition: background 0.13s;
        }

        .scd-opt:hover {
            background: #f6f6f6;
        }

        .scd-opt.active {
            background: #fff5f5;
            color: var(--brand);
            font-weight: 600;
        }

        .scd-ic {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--icbg);
            color: var(--ic);
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .scd-check {
            margin-left: auto;
            color: var(--brand);
            font-size: 0.88rem;
        }

        .scd-divider {
            height: 1px;
            background: #f0f0f0;
            margin: 4px 6px;
        }

        /* ── Search suggestions dropdown ── */
        .s-suggest-wrap {
            flex: 1;
            position: relative;
            display: flex;
            align-items: stretch;
            min-width: 0;
        }

        .s-suggest-drop {
            position: absolute;
            top: calc(100% + 10px);
            left: -1px;
            right: -1px;
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.05);
            z-index: 9998;
            overflow: hidden;
            max-height: 420px;
            overflow-y: auto;
        }

        .ss-loading {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 18px;
            font-size: 0.87rem;
            color: var(--muted);
        }

        .ss-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid #eee;
            border-top-color: var(--brand);
            border-radius: 50%;
            animation: ss-spin 0.7s linear infinite;
            flex-shrink: 0;
            will-change: transform;
        }

        @keyframes ss-spin { to { transform: rotate(360deg); } }

        .ss-item {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 9px 14px;
            text-decoration: none;
            color: var(--ink);
            transition: background 0.13s;
            cursor: pointer;
        }

        .ss-item:hover,
        .ss-item.focused {
            background: #f7f7f7;
        }

        .ss-thumb {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 1rem;
        }

        .ss-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ss-type-ic {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--icbg);
            color: var(--ic);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.88rem;
            flex-shrink: 0;
        }

        .ss-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

        .ss-label {
            font-size: 0.88rem;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ss-meta {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .ss-enter-ic {
            font-size: 0.72rem;
            color: var(--muted-lt);
            flex-shrink: 0;
        }

        .ss-view-all {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 14px;
            border-top: 1px solid #f0f0f0;
            text-decoration: none;
            font-size: 0.84rem;
            font-weight: 600;
            color: var(--brand);
            transition: background 0.13s;
        }

        .ss-view-all:hover {
            background: #fff5f5;
        }

        .ss-empty {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 18px;
            font-size: 0.87rem;
            color: var(--muted);
        }

        .searchbox input {
            flex: 1;
            border: none;
            padding: 0 0.9rem;
            font-family: inherit;
            font-size: 0.9rem;
            background: transparent;
            min-width: 0;
            color: var(--ink);
        }

        .searchbox input:focus {
            outline: none;
        }

        .searchbox input::placeholder {
            color: #bbb;
            font-size: 0.86rem;
        }

        .s-btn {
            border: none;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
            color: #fff;
            padding: 0 1.45rem;
            font-size: 1.05rem;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background 0.18s, transform 0.1s;
            flex-shrink: 0;
            border-radius: 0 50px 50px 0;
            min-width: 54px;
        }

        .s-btn:hover {
            background: linear-gradient(135deg, var(--brand-dk) 0%, var(--brand-deep) 100%);
        }

        .s-btn:active {
            transform: scale(0.95);
        }

        .head-actions {
            display: flex;
            align-items: center;
            gap: 0.1rem;
            margin-left: auto;
            flex-shrink: 0;
        }

        .hact {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.38rem 0.55rem;
            border-radius: 10px;
            text-decoration: none;
            color: var(--ink);
            position: relative;
            transition:
                background 0.18s,
                color 0.18s;
            white-space: nowrap;
        }

        .hact:hover {
            background: #fdf0f0;
            color: var(--brand);
        }

        .hact .ic {
            font-size: 1.44rem;
            line-height: 1;
            position: relative;
            flex-shrink: 0;
        }

        .hact .lbl {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .hact .lbl small {
            font-size: 0.62rem;
            color: var(--muted);
            font-weight: 300;
        }

        .hact .lbl b {
            font-size: 0.79rem;
            font-weight: 600;
        }

        .hact:hover .lbl small {
            color: var(--brand);
        }

        .hact-badge {
            position: absolute;
            top: -6px;
            right: -7px;
            background: var(--brand);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 800;
            min-width: 19px;
            height: 19px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            padding: 0 4px;
            border: 2px solid #fff;
            line-height: 1;
            box-shadow: 0 2px 6px rgba(227,30,36,.45);
        }

        /* ══════════════════════════
         DESKTOP NAVBAR
      ══════════════════════════ */
        .navwrap {
            background: var(--ink-soft);
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-rows: 1fr;
            transition:
                grid-template-rows 0.36s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.30s ease,
                box-shadow 0.30s ease;
            opacity: 1;
            box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
        }

        .navwrap>.container {
            overflow: clip;
            min-height: 0;
        }

        .desk-header-sticky.scrolled .navwrap {
            grid-template-rows: 0fr;
            opacity: 0;
            box-shadow: none;
        }

        .navwrap .inner {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            height: 52px;
        }

        .cat-wrap {
            position: relative;
        }

        .cat-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--brand);
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.2px;
            padding: 0 1.1rem;
            height: 52px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.18s;
            flex-shrink: 0;
        }

        .cat-btn:hover {
            background: var(--brand-dk);
        }

        .cat-btn .chev {
            font-size: 0.62rem;
            transition: transform 0.2s;
        }

        .cat-wrap.open .cat-btn .chev {
            transform: rotate(180deg);
        }

        .cat-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 272px;
            background: #fff;
            box-shadow: 0 20px 60px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.07);
            border-radius: 0 0 16px 16px;
            overflow: hidden;
            display: none;
            z-index: 1040;
        }

        .cat-wrap.open .cat-panel {
            display: block;
            animation: catFadeDown 0.2s cubic-bezier(0.34,1.56,0.64,1);
        }

        @keyframes catFadeDown {
            from { opacity: 0; transform: translateY(-8px) scale(0.98); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Panel header */
        .cat-panel-head {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px 10px;
            background: linear-gradient(135deg, var(--brand), #c81c1c);
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
        }
        .cat-panel-head i { font-size: .9rem; }

        /* Items list */
        .cat-panel-list { padding: 6px 0; }

        .cat-panel-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            color: #1a1a2e;
            font-size: .84rem;
            font-weight: 500;
            text-decoration: none;
            transition: background .15s, transform .15s;
            position: relative;
        }

        .cat-panel-list a:hover {
            background: #f8f8fb;
            transform: translateX(4px);
        }

        /* Colored icon circle */
        .cat-ic {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: var(--icbg);
            color: var(--ic);
            display: grid;
            place-items: center;
            font-size: .88rem;
            flex-shrink: 0;
            transition: transform .15s;
        }
        .cat-panel-list a:hover .cat-ic { transform: scale(1.1); }

        .cat-lbl { flex: 1; }

        .cat-arr {
            font-size: .62rem;
            color: #c0c0cc;
            opacity: 0;
            transform: translateX(-4px);
            transition: opacity .15s, transform .15s, color .15s;
        }
        .cat-panel-list a:hover .cat-arr {
            opacity: 1;
            transform: translateX(0);
            color: var(--brand);
        }

        /* Footer link */
        .cat-panel-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: #fafafa;
            border-top: 1px solid #f0f0f0;
            font-size: .78rem;
            font-weight: 700;
            color: var(--brand);
            text-decoration: none;
            letter-spacing: .02em;
            transition: background .15s, gap .15s;
        }
        .cat-panel-footer:hover {
            background: #fdf0f0;
            gap: 10px;
        }

        .mainnav {
            display: flex;
            align-items: center;
            flex: 1;
            overflow: hidden;
        }

        .mainnav a {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.86rem;
            font-weight: 400;
            padding: 0 0.75rem;
            height: 52px;
            display: flex;
            align-items: center;
            gap: 0.2rem;
            position: relative;
            transition: color 0.18s;
            white-space: nowrap;
            flex-shrink: 0;
            text-decoration: none;
        }

        .mainnav a::after {
            content: "";
            position: absolute;
            left: 0.75rem;
            right: 0.75rem;
            bottom: 0;
            height: 3px;
            background: var(--gold);
            border-radius: 3px 3px 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.2s;
        }

        .mainnav a:hover,
        .mainnav a.active {
            color: #fff;
        }

        .mainnav a:hover::after,
        .mainnav a.active::after {
            transform: scaleX(1);
        }

        .mainnav a.hot {
            color: var(--gold-lt);
            font-weight: 500;
        }

        .mainnav a .bi-chevron-down {
            font-size: 0.6rem;
            opacity: 0.6;
        }

        .nav-hotline {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            color: #fff;
            white-space: nowrap;
            flex-shrink: 0;
            padding-left: 0.7rem;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            margin-left: auto;
        }

        /* Language switcher — icon-only trigger in the header's top-right actions
           that reveals a language menu on hover (the conventional spot). */
        .head-lang {
            position: relative;
            flex-shrink: 0;
            margin-right: 12px;
        }

        .head-lang-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #f3f4f7;
            border: 1px solid #e7e9ef;
            color: #4b5563;
            font-size: 1rem;
            cursor: pointer;
            padding: 0;
            transition: background 0.15s, color 0.15s, border-color 0.15s;
        }

        .head-lang:hover .head-lang-trigger,
        .head-lang:focus-within .head-lang-trigger {
            background: #fff0f0;
            color: var(--brand, #e31e24);
            border-color: #fbcaca;
        }

        .head-lang-menu {
            position: absolute;
            top: calc(100% + 9px);
            right: 0;
            min-width: 148px;
            background: #fff;
            border: 1px solid #eceef3;
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
            padding: 6px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(7px);
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
            z-index: 1050;
        }

        /* Invisible bridge so the menu stays open while moving the cursor onto it */
        .head-lang-menu::before {
            content: '';
            position: absolute;
            top: -9px;
            left: 0;
            right: 0;
            height: 9px;
        }

        .head-lang:hover .head-lang-menu,
        .head-lang:focus-within .head-lang-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .head-lang-label {
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: #aab0bd;
            padding: 3px 10px 7px;
        }

        .head-lang-opt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 8px 10px;
            border-radius: 9px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.15s;
        }

        .head-lang-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #374151;
            transition: color 0.15s;
        }

        .head-lang-code {
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            color: #9ca3af;
            background: #f1f2f5;
            border-radius: 6px;
            padding: 2px 6px;
            transition: background 0.15s, color 0.15s;
        }

        .head-lang-opt:hover {
            background: #f6f7f9;
        }

        .head-lang-opt:hover .head-lang-name {
            color: #111827;
        }

        .head-lang-opt.active {
            background: #fff5f5;
        }

        .head-lang-opt.active .head-lang-name {
            color: var(--brand, #e31e24);
            font-weight: 800;
        }

        .head-lang-opt.active .head-lang-code {
            background: var(--brand, #e31e24);
            color: #fff;
        }

        .nav-hotline i {
            font-size: 1.35rem;
            color: var(--gold);
        }

        .nav-hotline small {
            display: block;
            font-size: 0.58rem;
            opacity: 0.6;
            font-weight: 300;
        }

        .nav-hotline b {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.4px;
        }

        /* ══════════════════════════
         OFFCANVAS MENU
      ══════════════════════════ */
        /* ── Premium Offcanvas ── */
        .offcanvas {
            max-width: 310px;
        }

        /* ── Offcanvas shell ── */
        #siteMenu {
            background: #f4f5f8;
            box-shadow: 4px 0 32px rgba(0,0,0,.18);
        }

        #siteMenu .offcanvas-body {
            padding: 0;
            background: #f4f5f8;
        }

        /* ── Header ── */
        .offcanvas-header {
            background: linear-gradient(145deg, #1a0005 0%, #6b0010 40%, var(--brand) 100%);
            padding: 1.6rem 1.3rem 1.4rem;
            position: relative;
            overflow: hidden;
            border-bottom: none;
        }

        .offcanvas-header::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255,255,255,.07);
            pointer-events: none;
        }

        .offcanvas-header::after {
            content: "";
            position: absolute;
            bottom: -60px;
            left: -20px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(255,255,255,.04);
            pointer-events: none;
        }

        .oc-logo {
            height: 38px;
            width: auto;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
        }

        /* ── User strip ── */
        .oc-user {
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 14px 16px 13px;
            background: #fff;
            border-bottom: 2px solid #f0f1f5;
            box-shadow: 0 2px 8px rgba(0,0,0,.05);
        }

        .oc-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(135deg, #fff0f0, #ffd0d0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            font-size: 1.3rem;
            border: 2.5px solid rgba(227,30,36,.2);
            box-shadow: 0 2px 10px rgba(227,30,36,.15);
        }

        .oc-user-name {
            font-size: .86rem;
            font-weight: 800;
            color: #111827;
            letter-spacing: -.01em;
        }

        .oc-user-cta {
            font-size: .71rem;
            color: var(--brand);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            margin-top: 2px;
            transition: gap .15s;
        }

        .oc-user-cta:hover { gap: 6px; }

        /* ── Nav scroll area ── */
        .oc-nav-wrap {
            padding: 8px 10px 4px;
        }

        /* ── Section labels ── */
        .oc-sec {
            font-size: .65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #6b7280;
            font-weight: 700;
            padding: 1.1rem 6px .35rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .oc-sec::before {
            content: "";
            width: 3px;
            height: 12px;
            background: var(--brand);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .oc-sec::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, #e5e7eb, transparent);
        }

        /* ── Links ── */
        .oc-link {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: .52rem 10px .52rem 8px;
            color: #374151;
            font-size: .86rem;
            font-weight: 600;
            border-radius: 11px;
            margin-bottom: 2px;
            text-decoration: none;
            position: relative;
            transition: background .15s, color .15s, transform .12s;
        }

        .oc-link:hover {
            background: #fff;
            color: var(--brand);
            transform: translateX(3px);
            box-shadow: 0 2px 10px rgba(0,0,0,.06);
        }

        .oc-link.active {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 14px rgba(227,30,36,.35);
        }

        .oc-link.active .oc-icon {
            background: rgba(255,255,255,.22);
        }

        .oc-link.active .oc-icon i { color: #fff; }

        .oc-link.active::after { color: rgba(255,255,255,.6); }

        .oc-link:active { transform: scale(0.97); }

        .oc-link-btn {
            width: 100%;
            border: none;
            background: transparent;
            cursor: pointer;
            font-family: inherit;
            color: #dc2626;
        }
        .oc-link-btn .oc-icon { background: #fee2e2; color: #dc2626; }
        .oc-link-btn:hover { background: #fee2e2; color: #dc2626; }
        .oc-link-btn:hover .oc-icon { background: #dc2626; color: #fff; }

        .oc-link::after {
            content: "›";
            margin-left: auto;
            color: #d1d5db;
            font-size: 1.2rem;
            line-height: 1;
        }

        /* ── Icons ── */
        .oc-icon {
            width: 35px;
            height: 35px;
            border-radius: 10px;
            flex-shrink: 0;
            background: rgba(227,30,36,.09);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .15s;
        }

        .oc-icon i {
            color: var(--brand);
            font-size: .92rem;
        }

        .oc-link:hover .oc-icon {
            background: var(--brand);
            box-shadow: 0 3px 8px rgba(227,30,36,.3);
        }

        .oc-link:hover .oc-icon i { color: #fff; }

        /* ── Footer ── */
        .oc-footer {
            padding: 14px 16px 12px;
            margin: 8px 10px 0;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 -1px 0 #e5e7eb;
        }

        .oc-social {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-bottom: 11px;
        }

        .oc-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f4f5f8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .88rem;
            transition: background .15s, color .15s, transform .15s, border-color .15s;
            border: 1.5px solid #e5e7eb;
            text-decoration: none;
        }

        /* Brand colors */
        .oc-social a:has(.bi-facebook)   { color: #1877f2; }
        .oc-social a:has(.bi-instagram)  { color: #e1306c; }
        .oc-social a:has(.bi-youtube)    { color: #ff0000; }
        .oc-social a:has(.bi-whatsapp)   { color: #25d366; }

        .oc-social a:hover { color: #fff; transform: translateY(-2px); }
        .oc-social a:has(.bi-facebook):hover  { background: #1877f2; border-color: #1877f2; box-shadow: 0 4px 10px rgba(24,119,242,.35); }
        .oc-social a:has(.bi-instagram):hover { background: #e1306c; border-color: #e1306c; box-shadow: 0 4px 10px rgba(225,48,108,.35); }
        .oc-social a:has(.bi-youtube):hover   { background: #ff0000; border-color: #ff0000; box-shadow: 0 4px 10px rgba(255,0,0,.35); }
        .oc-social a:has(.bi-whatsapp):hover  { background: #25d366; border-color: #25d366; box-shadow: 0 4px 10px rgba(37,211,102,.35); }

        .oc-lang {
            display: flex;
            gap: 8px;
            padding: 2px 0 4px;
        }
        .oc-lang-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            text-decoration: none;
            background: #fff;
            border: 1.5px solid #e5e7eb;
            border-radius: 11px;
            color: #4b5563;
            font-size: .8rem;
            font-weight: 600;
            padding: 10px 10px;
            cursor: pointer;
            transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
            box-shadow: 0 1px 4px rgba(0,0,0,.05);
        }
        .oc-lang-btn:hover {
            background: #f9fafb;
            border-color: var(--brand);
            color: var(--brand);
        }
        .oc-lang-btn.active {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(227,30,36,.3);
        }
        .oc-lang-flag { font-size: .95rem; line-height: 1; }

        .oc-copy {
            text-align: center;
            font-size: .62rem;
            color: #9ca3af;
            margin: 0;
            line-height: 1.5;
        }

        /* ══════════════════════════
         DESKTOP RESPONSIVE
      ══════════════════════════ */
        @media (max-width: 1199px) {
            .mainnav a {
                padding: 0 0.6rem;
                font-size: 0.83rem;
            }

            .brand-logo img {
                height: 50px;
            }

            /* tighter actions at 992-1199px */
            .head-actions {
                gap: 0;
            }

            .hact {
                padding: 0.32rem 0.42rem;
                gap: 0.32rem;
            }

            .hact .lbl b {
                font-size: 0.74rem;
            }

            .hact .lbl small {
                font-size: 0.57rem;
            }

            .hact .ic {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 991px) {
            .mainhead .inner {
                flex-wrap: wrap;
                padding: 9px 0;
                gap: 0.6rem;
            }

            .searchbox {
                order: 3;
                max-width: 100%;
                flex: 1 1 100%;
            }

            .s-cat-wrap {
                display: none;
            }

            /* icon-only mode at 768-991px */
            .head-actions {
                margin-left: auto;
                gap: 0;
            }

            .hact {
                padding: 0.38rem 0.48rem;
                gap: 0;
                border-radius: 10px;
            }

            .hact .lbl {
                display: none;
            }

            .hact .ic {
                font-size: 1.4rem;
            }

            .mainnav,
            .nav-hotline {
                display: none;
            }

            .navwrap .inner {
                padding-left: 0;
                padding-right: 0;
            }

            .mob-in-nav {
                display: flex !important;
            }
        }

        .mob-in-nav {
            display: none;
            align-items: center;
            gap: 0.6rem;
            flex: 1;
        }

        .mnav-menu-btn {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            background: var(--brand);
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.45rem 0.95rem;
            border: none;
            border-radius: 7px;
            cursor: pointer;
            transition: background 0.18s;
            flex-shrink: 0;
        }

        .mnav-menu-btn:hover {
            background: var(--brand-dk);
        }

        .mnav-menu-btn .bi-list {
            font-size: 1.2rem;
        }

        .mnav-search-btn {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 0.38rem;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.75);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.84rem;
            padding: 0.45rem 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 7px;
            cursor: pointer;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            transition: background 0.18s;
        }

        .mnav-search-btn:hover {
            background: rgba(255, 255, 255, 0.17);
        }

        /* ══════════════════════════════════════════════════════
         MOBILE — hidden by default, activated at ≤ 767px
      ══════════════════════════════════════════════════════ */
        .mob-header,
        .mob-search-bar,
        .mob-bottom-nav,
        .mob-content {
            display: none;
        }

        /* ── Mobile Topbar ── */
        .mtb-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.64rem;
        }

        /* ── Mobile Sticky Header ── */
        .mob-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: #fff;
            box-shadow: 0 1px 0 #f0f1f5, 0 4px 20px rgba(0,0,0,.08);
            /* Promote to its own GPU layer so the shadow isn't repainted every
               scroll frame — kills the sticky-header jitter on mobile. */
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .mob-head-inner {
            display: flex;
            align-items: center;
            height: var(--mob-head);
            padding: 0 12px;
            gap: 9px;
        }

        /* Left — Logo */
        .mob-hlogo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .mob-hlogo img {
            height: 42px;
            width: auto;
        }

        /* Center — Search */
        .mob-hsearch {
            flex: 1;
            min-width: 0;
        }

        .mob-hsearch-form {
            display: flex;
            align-items: stretch;
            background: #f4f5f8;
            border-radius: 14px;
            overflow: hidden;
            height: 40px;
            border: 1.5px solid #eaecf0;
            transition: border-color .18s, background .18s, box-shadow .18s;
        }

        .mob-hsearch-form:focus-within {
            border-color: var(--brand);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(227,30,36,.08);
        }

        .mob-hsearch-icon {
            display: flex;
            align-items: center;
            padding: 0 9px 0 13px;
            color: #9ca3af;
            font-size: .9rem;
            flex-shrink: 0;
        }

        .mob-hsearch-input {
            flex: 1;
            border: none;
            background: transparent;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: .84rem;
            min-width: 0;
            padding: 0;
            color: #111827;
        }

        .mob-hsearch-input:focus { outline: none; }

        .mob-hsearch-input::placeholder { color: #b0b7c3; }

        .mob-hsearch-btn {
            border: none;
            background: var(--brand);
            color: #fff;
            padding: 0 14px;
            font-size: .9rem;
            border-radius: 0 12px 12px 0;
            cursor: pointer;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .15s;
        }

        .mob-hsearch-btn:active { background: var(--brand-dk); }

        /* Right — Cart + Wishlist */
        .mob-hright {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-shrink: 0;
        }

        .mob-hbtn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: #f4f5f8;
            color: #374151;
            font-size: 1.15rem;
            text-decoration: none;
            border: 1.5px solid #eaecf0;
            cursor: pointer;
            transition: background .15s, color .15s, border-color .15s;
        }

        .mob-hbtn:active,
        .mob-hbtn:hover {
            background: #fff0f0;
            color: var(--brand);
            border-color: #fca5a5;
        }

        .mob-hbtn.cart {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
            box-shadow: 0 3px 10px rgba(227,30,36,.3);
        }

        .mob-hbtn.cart:active,
        .mob-hbtn.cart:hover {
            background: var(--brand-dk);
            border-color: var(--brand-dk);
        }

        .mob-hbadge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #f43f5e;
            color: #fff;
            font-size: .44rem;
            font-weight: 800;
            min-width: 16px;
            height: 16px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            border: 2px solid #fff;
            line-height: 1;
            padding: 0 3px;
        }

        .mob-hbtn.cart .mob-hbadge {
            background: #fff;
            color: var(--brand);
            border-color: var(--brand);
        }

        /* Separate search bar — no longer shown on mobile */
        .mob-search-bar {
            display: none !important;
        }


        /* ══════════════════════════════
         MOBILE PAGE CONTENT
      ══════════════════════════════ */

        /* ─ Promo Banner ─ */
        .m-banner-wrap {
            padding: 12px 12px 0;
        }

        .m-banner {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background-color: #1a1a2e;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px 18px 22px;
        }

        /* No text overlay — image shown clean */
        /* .m-banner-deco removed — real images used instead */
        .m-banner-dots {
            display: flex;
            justify-content: center;
            gap: 5px;
            padding: 9px 0 2px;
        }

        .m-banner-dots span {
            width: 6px;
            height: 6px;
            border-radius: 3px;
            background: #ccc;
            transition: all 0.25s;
        }

        .m-banner-dots span.active {
            width: 20px;
            background: var(--brand);
        }

        /* ─ Section Header ─ */
        .m-sec {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 14px 10px;
        }

        /* ─ Shared category heading ─ */
        .cats-heading {
            text-align: center;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding-bottom: 14px;
        }

        .cats-heading i {
            color: var(--brand);
        }

        .mob-cats-heading {
            padding: 18px 14px 10px;
        }

        /* ══════════════════════════
           CATEGORIES
      ══════════════════════════ */
        .desk-cats {
            background: #fff;
            border-bottom: 1px solid var(--line);
            padding: 22px 0 26px;
        }

        @media (max-width: 767px) {
            section.desk-cats {
                padding: 14px 0 18px;
            }
        }

        .dc-scroll {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 4px 0 12px;
            -webkit-user-select: none;
            user-select: none;
            cursor: grab;
        }

        .dc-scroll:active {
            cursor: grabbing;
        }

        .dc-scroll::-webkit-scrollbar {
            display: none;
        }

        .dc-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            width: 110px;
            padding: 14px 10px;
            background: rgba(227, 30, 36, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.07);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition:
                box-shadow 0.2s,
                transform 0.18s;
        }

        .dc-item:hover {
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .dc-item:active {
            transform: scale(0.97);
        }

        .dc-circle {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .dc-circle img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .dc-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--ink);
            text-align: center;
            width: 100%;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .dc-item {
                width: 130px;
                padding: 16px 12px;
            }

            .dc-circle {
                width: 70px;
                height: 70px;
            }
        }


        /* ══════════════════════════
           TOP PRODUCTS (home)
      ══════════════════════════ */
        .tp-scroll {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 4px 0 12px;
            cursor: grab;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x proximity;
            overscroll-behavior-x: contain;
        }
        .tp-scroll:active { cursor: grabbing; }
        .tp-scroll::-webkit-scrollbar { display: none; }

        .tp-card {
            flex-shrink: 0;
            width: calc((100% - 7 * 10px) / 8);
            border-radius: 12px;
            border: 1.5px solid #f1f5f9;
            background: #fff;
            text-decoration: none;
            overflow: hidden;
            transition: box-shadow .2s, transform .18s, border-color .18s;
            display: flex;
            flex-direction: column;
            scroll-snap-align: start;
        }
        .tp-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,.1);
            transform: translateY(-2px);
            border-color: #e2e8f0;
        }
        .tp-card:active { transform: scale(.97); }

        .tp-card-img {
            width: 100%;
            aspect-ratio: 1;
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }
        .tp-card-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            padding: 8px;
        }
        .tp-card-img-ph {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d1d5db;
            font-size: 1.6rem;
        }

        .tp-card-body {
            padding: 6px 8px 10px;
        }
        .tp-card-name {
            font-family: "Poppins", "Plus Jakarta Sans", sans-serif;
            font-size: .72rem;
            font-weight: 600;
            color: var(--ink, #111827);
            line-height: 1.3;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Tablet: 5 cards */
        @media (max-width: 991px) {
            .tp-card { width: calc((100% - 4 * 10px) / 5); }
        }

        /* Mobile: 3 cards */
        @media (max-width: 575px) {
            .tp-scroll { gap: 8px; }
            .tp-card { width: calc((100% - 2 * 8px) / 3); border-radius: 10px; }
            .tp-card-img img { padding: 6px; }
            .tp-card-body { padding: 5px 6px 8px; }
            .tp-card-name { font-size: .68rem; }
        }

        /* Top Products Dots */
        .tp-dots {
            display: flex;
            gap: 6px;
            justify-content: center;
            padding-top: 10px;
            min-height: 18px;
        }
        .tp-dot {
            width: 14px;
            height: 3px;
            border-radius: 2px;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            padding: 0;
            flex-shrink: 0;
            transition: all .25s;
        }
        .tp-dot.active {
            width: 32px;
            background: var(--brand, #e31e24);
        }

        /* Smaller dots on mobile */
        @media (max-width: 575px) {
            .tp-dots { gap: 4px; padding-top: 8px; min-height: 12px; }
            .tp-dot { width: 8px; height: 2.5px; }
            .tp-dot.active { width: 18px; }
        }

        /* ─ Category dots (mobile + desktop) ─ */
        .cat-dots {
            display: flex;
            gap: 6px;
            justify-content: center;
            padding-top: 10px;
        }

        .cat-dot {
            width: 20px;
            height: 4px;
            border-radius: 2px;
            background: rgba(0, 0, 0, 0.15);
            border: none;
            cursor: pointer;
            transition:
                width 0.25s,
                background 0.25s;
            padding: 0;
        }

        .cat-dot.active {
            width: 44px;
            background: var(--brand);
        }

        /* ─ Mobile Sub-banner ─ */
        .m-subbanner-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 10px 12px 4px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .m-subbanner-scroll::-webkit-scrollbar {
            display: none;
        }

        .m-subcard {
            flex-shrink: 0;
            width: calc(50% - 10px);
            height: 110px;
            border-radius: 12px;
            overflow: hidden;
            display: block;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: var(--line);
            transition:
                transform 0.18s,
                box-shadow 0.18s;
        }

        .m-subcard:active {
            transform: scale(0.97);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
        }

        .msb1 {
            background-image: url("../Sub-banner-image/image1.png");
        }

        .msb2 {
            background-image: url("../Sub-banner-image/image2.png");
        }

        .msb3 {
            background-image: url("../Sub-banner-image/image3.png");
        }

        /* ─ Deal badge SVG ─ */

        @keyframes badgePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.06);
            }
        }

        .deal-badge-svg .badge-fill {
            fill: var(--badge-fill, var(--brand));
        }

        .deal-badge-svg .badge-shine {
            fill: rgba(255, 255, 255, 0.3);
        }

        .deal-badge-svg text {
            fill: var(--badge-text, #fff);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        /* Product/grid image background palettes */
        .pi-blue {
            background: linear-gradient(135deg, #e8f4fd, #c8e6fb);
        }

        .pi-pink {
            background: linear-gradient(135deg, #fde8f0, #fbc8d8);
        }

        .pi-green {
            background: linear-gradient(135deg, #e8fdf0, #c8fbd8);
        }

        .pi-gold {
            background: linear-gradient(135deg, #fdf8e8, #fbf0c8);
        }

        .pi-purple {
            background: linear-gradient(135deg, #f0e8ff, #d8c8fb);
        }

        .pi-peach {
            background: linear-gradient(135deg, #fff0e8, #fbd8c8);
        }

        .pi-sky {
            background: linear-gradient(135deg, #e8f8ff, #c8eefb);
        }

        .pi-lime {
            background: linear-gradient(135deg, #f8ffe8, #eefbc8);
        }

        /* Section extra top spacing */
        .m-sec-top {
            padding-top: 22px;
        }

        /* ─ 2-Column Grid ─ */
        .m-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 12px 8px;
        }

        .m-grid-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.15s;
        }

        .m-grid-card:active {
            box-shadow: 0 3px 14px rgba(0, 0, 0, 0.13);
        }

        .m-grid-img {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            position: relative;
        }

        .m-grid-img-ph {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.2rem;
        }

        .m-grid-body {
            padding: 10px;
        }

        .m-grid-name {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--ink);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }

        .m-grid-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .m-grid-prices {
            display: flex;
            flex-direction: column;
        }

        .m-grid-now {
            font-size: 0.93rem;
            font-weight: 700;
            color: var(--brand);
        }

        .m-grid-old {
            font-size: 0.7rem;
            color: var(--muted-lt);
            text-decoration: line-through;
        }

        .m-grid-cart-btn {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--brand);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            flex-shrink: 0;
            transition: background 0.14s;
        }

        /* ══════════════════════════
         MOBILE BOTTOM NAV
      ══════════════════════════ */
        .mob-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: var(--mob-bot);
            background: rgba(255,255,255,.96);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border-top: 1px solid #f0f1f5;
            box-shadow: 0 -4px 24px rgba(0,0,0,.09);
            z-index: 1040;
        }

        .bot-nav {
            display: flex;
            align-items: stretch;
            height: 100%;
            list-style: none;
            padding: 0 4px;
            margin: 0;
        }

        .bot-nav li {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bot-nav-item {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: #9ca3af;
            font-size: .58rem;
            font-weight: 600;
            background: none;
            border: none;
            cursor: pointer;
            transition: color .15s;
            text-decoration: none;
            padding: 6px 4px 10px;
            position: relative;
            border-radius: 12px;
        }

        .bot-nav-item i {
            font-size: 1.25rem;
            line-height: 1;
            transition: transform .2s;
        }

        .bot-nav-item.active {
            color: var(--brand);
        }

        .bot-nav-item.active i {
            transform: translateY(-1px);
        }

        .bot-nav-item.active::after {
            content: "";
            position: absolute;
            bottom: 6px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--brand);
        }

        .bot-center-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            gap: 3px;
            cursor: pointer;
        }

        .bot-center-ring {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            background: linear-gradient(145deg, #ff4444, var(--brand), var(--brand-deep));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            margin-top: -18px;
            box-shadow: 0 6px 20px rgba(227,30,36,.45), 0 2px 8px rgba(0,0,0,.15);
            border: 3px solid rgba(255,255,255,.96);
            transition: transform .18s, box-shadow .18s;
        }

        .bot-center-wrap:active .bot-center-ring {
            transform: scale(.93);
            box-shadow: 0 3px 10px rgba(227,30,36,.35);
        }

        .bot-center-lbl {
            font-size: .57rem;
            font-weight: 700;
            color: var(--brand);
            letter-spacing: .02em;
        }

        .bot-center-li {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bot-nav-badge {
            position: absolute;
            top: 4px;
            right: calc(50% - 22px);
            background: var(--brand);
            color: #fff;
            font-size: .44rem;
            font-weight: 800;
            min-width: 15px;
            height: 15px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            border: 1.5px solid #fff;
            line-height: 1;
        }

        /* ══════════════════════════
         MOBILE BREAKPOINT  ≤ 767px
      ══════════════════════════ */
        @media (max-width: 767px) {
            .topbar {
                display: none !important;
            }

            .mainhead {
                display: none !important;
            }

            .navwrap {
                display: none !important;
            }

            .mob-header {
                display: block;
                order: 1;
            }

            .mob-bottom-nav {
                display: block;
            }

            .mob-content {
                display: block;
                order: 2;
            }

            /* Page content wrapper — must come after mob-header */
            .main-content-wrap {
                order: 2;
                min-width: 0;
                width: 100%;
                overflow-x: clip;
            }

            /* Footer comes last */
            .site-footer {
                order: 3;
            }

            body {
                display: flex;
                flex-direction: column;
                padding-bottom: var(--mob-bot);
                background: var(--bg);
            }
        }

        @media (max-width: 390px) {
            .mob-hlogo img {
                height: 38px;
            }

            .mob-hbtn {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }

            .mob-head-inner {
                padding: 0 10px;
                gap: 8px;
            }

            .mob-hsearch-btn {
                padding: 0 12px;
            }
        }

        /* ══════════════════════════
         DESKTOP HERO SECTION
      ══════════════════════════ */
        .desk-hero {
            padding: 20px 0 0;
            background-color: white;
        }

        .dh-inner {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        /* ─ Left Category Sidebar ─ */
        .dh-cats {
            width: 25%;
            flex-shrink: 0;
            border: 1px solid var(--line);
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
        }

        .dh-cat-nav {
            height: 420px;
            overflow: hidden;
        }

        .dh-cat-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .dh-cat-nav li {
            flex: 1;
            display: flex;
        }

        .dh-cat-link {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 0 16px;
            color: var(--ink);
            font-size: 0.86rem;
            border-bottom: 1px solid #f5f5f5;
            transition:
                background 0.13s,
                color 0.13s;
            text-decoration: none;
        }

        .dh-cat-link:hover {
            background: rgba(227, 30, 36, 0.07);
            color: var(--brand);
        }

        .dh-cat-lft {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dh-ci {
            color: var(--brand);
            font-size: 0.98rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .dh-caret {
            font-size: 0.72rem;
            color: var(--muted-lt);
            flex-shrink: 0;
            transition:
                transform 0.13s,
                color 0.13s;
        }

        .dh-cat-link:hover .dh-caret {
            transform: translateX(3px);
            color: var(--brand);
        }

        .dh-cat-seeall {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 0 16px;
            color: var(--brand);
            font-size: 0.86rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.13s;
        }

        .dh-cat-seeall:hover {
            background: rgba(227, 30, 36, 0.07);
        }

        /* ─ Main Banner Carousel ─ */
        .dh-banner {
            flex: 1;
            min-width: 0;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 420px;
        }

        .dh-carousel {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .dh-slides {
            display: flex;
            height: 100%;
            will-change: transform;
        }

        .dh-slide {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
            display: block;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            text-decoration: none;
            cursor: grab;
            user-select: none;
            -webkit-user-drag: none;
        }
        .dh-slide:active { cursor: grabbing; }

        .dhs1 {
            background-image: url("../Hero_image/image1.png");
        }

        .dhs2 {
            background-image: url("../Hero_image/image2.png");
        }

        .dhs3 {
            background-image: url("../Hero_image/image3.png");
        }

        .dh-dots {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }

        .dh-dot {
            width: 20px;
            height: 4px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.4);
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            padding: 0;
        }

        .dh-dot.active {
            width: 48px;
            background: #fff;
        }

        /* ─ Sub-banner Row ─ */
        .dh-subrow {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 16px;
            padding-bottom: 22px;
        }

        .dh-subcard {
            border-radius: 10px;
            overflow: hidden;
            height: 180px;
            display: block;
            position: relative;
            text-decoration: none;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: var(--line);
            transition:
                transform 0.18s,
                box-shadow 0.18s;
        }

        .dh-subcard:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        }

        .dsb1 {
            background-image: url("../Sub-banner-image/image1.png");
        }

        .dsb2 {
            background-image: url("../Sub-banner-image/image2.png");
        }

        .dsb3 {
            background-image: url("../Sub-banner-image/image3.png");
        }

        /* ══════════════════════════
         SHARED FLASH DEALS
      ══════════════════════════ */
        .flash-deals {
            background:
                radial-gradient(circle at top left,
                    rgba(227, 30, 36, 0.08),
                    rgba(255, 255, 255, 0) 320px),
                linear-gradient(180deg, #fffefb 0%, #faf9f7 100%);
            border-bottom: 1px solid rgba(227, 30, 36, 0.08);
            padding: 32px 0 36px;
        }

        .df-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .df-title-wrap {
            min-width: 0;
            flex: 1;
        }

        .df-title {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--ink);
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .df-title i {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: #fff;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            box-shadow: 0 10px 24px rgba(227, 30, 36, 0.25);
            font-size: 1.25rem;
        }

        .df-sub {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: -0.2px;
        }

        .df-side {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .df-timer {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 8px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            box-shadow: 0 8px 16px rgba(227, 30, 36, 0.2);
        }

        .df-timer-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
        }

        .df-timer-box {
            min-width: 40px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--brand-deep);
            font-weight: 800;
            font-size: 0.92rem;
            letter-spacing: -0.3px;
            font-variant-numeric: tabular-nums;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }

        .df-timer-num {
            display: block;
            line-height: 1;
            will-change: transform;
        }

        @keyframes dfRoll {
            0%   { transform: translateY(-105%); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        .df-timer-num.df-tick {
            animation: dfRoll 0.45s cubic-bezier(0.33, 1, 0.68, 1);
        }
        @media (prefers-reduced-motion: reduce) {
            .df-timer-num.df-tick { animation: none; }
        }

        .df-timer-label {
            font-size: 0.62rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .df-timer-sep {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 800;
            font-size: 0.95rem;
            margin-bottom: 14px;
            /* offset for label below */
        }

        .df-view-all {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1.5px solid var(--brand);
            color: var(--brand);
            font-size: 0.85rem;
            font-weight: 700;
            background: rgba(227, 30, 36, 0.06);
            transition:
                background 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;
        }

        .df-view-all:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(227, 30, 36, 0.25);
        }

        .df-carousel {
            position: relative;
        }

        .df-track {
            display: flex;
            align-items: stretch;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 4px 2px 10px;
        }

        .df-track::-webkit-scrollbar {
            display: none;
        }

        .df-card {
            flex: 0 0 calc((100% - 48px) / 4);
            min-width: 0;
            background: #ffffff;
            border: 1px solid rgba(227, 30, 36, 0.08);
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            scroll-snap-align: start;
            box-shadow: 0 4px 12px rgba(25, 20, 23, 0.05);
            transition:
                transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.18s ease,
                border-color 0.18s ease;
            position: relative;
        }

        .df-card:hover {
            transform: translateY(-8px) scale(1.01);
            border-color: rgba(227, 30, 36, 0.2);
            box-shadow:
                0 12px 32px rgba(227, 30, 36, 0.12),
                0 2px 6px rgba(25, 20, 23, 0.06);
        }

        .df-img-link { display: block; text-decoration: none; }
        .df-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #d1d5db; font-size: 2.5rem; }
        .df-img {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin: 6px;
            border: 1px solid rgba(227, 30, 36, 0.08);
        }

        .df-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            padding: 8px;
        }

        .df-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(25, 20, 23, 0) 52%,
                    rgba(25, 20, 23, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
            border-radius: 12px;
        }

        .df-card:hover .df-img img {
            transform: scale(1.08);
        }

        .df-card:hover .df-img::after {
            opacity: 1;
        }

        .df-actions {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 4;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(12px);
            transition:
                opacity 0.2s ease,
                transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .df-card:hover .df-actions,
        .df-card:focus-within .df-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .df-action-btn {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            color: var(--ink);
            box-shadow: 0 12px 24px rgba(25, 20, 23, 0.18);
            transition:
                background 0.18s ease,
                color 0.18s ease,
                transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.18s ease;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
        }

        .df-action-btn:hover {
            background: linear-gradient(135deg, #ff416c, #e31e24);
            color: #fff;
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 14px 28px rgba(255, 65, 108, 0.35);
        }

        .df-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 14px;
            background: #ffffff;
        }

        .df-name {
            display: block;
            color: var(--ink);
            font-size: 0.93rem;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-decoration: none;
        }

        a.df-name:hover {
            color: var(--brand, #e31e24);
        }

        .df-prices {
            display: flex;
            align-items: baseline;
            margin-bottom: 4px;
            gap: 8px;
            flex-wrap: wrap;
        }

        .df-now {
            color: var(--brand);
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .df-old {
            color: var(--muted-lt);
            font-size: 0.78rem;
            text-decoration: line-through;
            font-weight: 500;
        }

        .df-btn-group {
            display: flex;
            flex-direction: row;
            gap: 8px;
            width: 100%;
        }

        .df-cart-btn,
        .df-buynow-btn {
            flex: 1;
            position: relative;
            min-height: 40px;
            margin-top: auto;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            white-space: nowrap;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.83rem;
            font-weight: 700;
            cursor: pointer;
            overflow: hidden;
            touch-action: manipulation;
            transition:
                background 0.2s ease,
                color 0.2s ease,
                transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.2s ease;
        }

        /* Bengali locale: stacked full-width buttons */
        html[lang="bn"] .df-btn-group {
            flex-direction: column;
            gap: 5px;
        }

        html[lang="bn"] .df-cart-btn,
        html[lang="bn"] .df-buynow-btn {
            font-size: 0.78rem;
            padding: 8px 10px;
            min-height: 36px;
            gap: 6px;
        }

        /* ── Cart Button ── */
        .df-cart-btn {
            border: 1.5px solid rgba(255, 65, 108, 0.45);
            background: rgba(255, 65, 108, 0.07);
            color: #ff416c;
            z-index: 1;
        }

        .df-cart-btn:hover {
            background: linear-gradient(135deg, #ff416c, #e31e24);
            border-color: transparent;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 65, 108, 0.35);
        }

        .df-cart-btn:active {
            transform: scale(0.97);
        }

        /* ── Buy Now Button ── */
        .df-buynow-btn {
            border: 1.5px solid transparent;
            background: linear-gradient(135deg, #ff416c, #e31e24);
            color: #fff;
            z-index: 1;
            box-shadow: 0 4px 14px rgba(255, 65, 108, 0.28);
        }

        .df-buynow-btn:hover {
            opacity: 1;
            filter: brightness(1.06);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(255, 65, 108, 0.42);
        }

        .df-buynow-btn:active {
            transform: scale(0.97);
        }

        /* ── Variant products: single full-width "Select Options" CTA ── */
        .df-cart-btn.df-options-btn {
            border-color: transparent;
            background: linear-gradient(135deg, #ff416c, #e31e24);
            color: #fff;
            box-shadow: 0 4px 14px rgba(255, 65, 108, 0.28);
        }

        .df-cart-btn.df-options-btn:hover {
            filter: brightness(1.06);
            color: #fff;
            box-shadow: 0 10px 24px rgba(255, 65, 108, 0.42);
        }

        /* ═══════════════════════════════════════════
        📺 Large Desktop  (1400px+)
      ═══════════════════════════════════════════ */
        @media (min-width: 1400px) {

            .df-cart-btn,
            .df-buynow-btn {
                padding: 12px 14px;
                font-size: 0.88rem;
                min-height: 44px;
                gap: 7px;
                border-radius: 9px;
            }
        }

        /* ═══════════════════════════════════════════
        🖥️ Desktop  (1200px – 1399px)
          ═══════════════════════════════════════════ */
        @media (max-width: 1399px) and (min-width: 1200px) {

            .df-cart-btn,
            .df-buynow-btn {
                padding: 10px 12px;
                font-size: 0.85rem;
                min-height: 42px;
            }
        }

        /* ═══════════════════════════════════════════
       💻 Small Desktop / Large Tablet (992px – 1199px)
       ═══════════════════════════════════════════ */
        @media (max-width: 1199px) and (min-width: 992px) {

            .df-cart-btn,
            .df-buynow-btn {
                padding: 10px;
                font-size: 0.83rem;
                min-height: 40px;
            }
        }

        /* ═══════════════════════════════════════════
        📱 Tablet  (768px – 991px)
        ═══════════════════════════════════════════ */
        @media (max-width: 991px) and (min-width: 768px) {
            .df-btn-group {
                gap: 7px;
            }

            .df-cart-btn,
            .df-buynow-btn {
                padding: 9px 8px;
                font-size: 0.8rem;
                min-height: 38px;
                gap: 5px;
            }
        }

        /* ═══════════════════════════════════════════
       📲 Small Tablet  (576px – 767px)
        ═══════════════════════════════════════════ */
        @media (max-width: 767px) and (min-width: 576px) {
            .df-btn-group {
                gap: 6px;
            }

            .df-cart-btn,
            .df-buynow-btn {
                padding: 8px 7px;
                font-size: 0.78rem;
                min-height: 37px;
                gap: 4px;
                border-radius: 7px;
            }
        }

        /* ═══════════════════════════════════════════
      📵 Mobile  (max 575px) — Column Layout
       ═══════════════════════════════════════════ */
        @media (max-width: 575px) {
            .df-btn-group {
                flex-direction: column;
                /* ✅ 1 row = 1 button */
                gap: 6px;
            }

            .df-cart-btn,
            .df-buynow-btn {
                width: 100%;
                flex: none;
                padding: 10px 12px;
                font-size: 0.82rem;
                min-height: 40px;
                border-radius: 7px;
                gap: 5px;
            }
        }

        /* ═══════════════════════════════════════════
         📵 Small Mobile  (max 360px)
         ═══════════════════════════════════════════ */
        @media (max-width: 360px) {
            .df-btn-group {
                gap: 5px;
            }

            .df-cart-btn,
            .df-buynow-btn {
                padding: 9px 10px;
                font-size: 0.78rem;
                min-height: 38px;
            }
        }

        /* ═══════════════════════════════════════════
     👆 Touch Device — Hover off, Active on
       ═══════════════════════════════════════════ */
        @media (hover: none) and (pointer: coarse) {

            .df-cart-btn:hover,
            .df-buynow-btn:hover {
                transform: none;
                box-shadow: none;
            }

            .df-cart-btn:hover {
                background: rgba(255, 65, 108, 0.06);
                color: #ff416c;
                border-color: #ff416c;
            }

            .df-buynow-btn:hover {
                opacity: 1;
            }

            .df-cart-btn:active {
                background: linear-gradient(135deg, #ff416c, #e31e24);
                border-color: transparent;
                color: #fff;
                transform: scale(0.97);
            }

            .df-buynow-btn:active {
                opacity: 0.82;
                transform: scale(0.97);
            }
        }

        .df-scroll-btn {
            position: absolute;
            top: 50%;
            z-index: 6;
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.98);
            color: var(--brand);
            box-shadow: 0 12px 32px rgba(25, 20, 23, 0.18);
            transform: translateY(-50%);
            transition:
                background 0.2s ease,
                color 0.2s ease,
                transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.2s ease;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .df-scroll-btn:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 16px 40px rgba(227, 30, 36, 0.2);
        }

        .df-scroll-btn.prev {
            left: -14px;
        }

        .df-scroll-btn.next {
            right: -14px;
        }

        @media (max-width: 767px) {
            .df-actions {
                opacity: 1;
                transform: translateX(0);
                top: 8px;
                right: 8px;
                gap: 6px;
            }

            .df-action-btn {
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
                box-shadow: 0 6px 14px rgba(25, 20, 23, 0.15);
            }
        }

        @media (max-width: 480px) {
            .df-actions {
                top: 6px;
                right: 6px;
                gap: 5px;
            }

            .df-action-btn {
                width: 32px;
                height: 32px;
                font-size: 0.88rem;
            }
        }

        /* ─ Responsive ─ */
        @media (max-width: 1399px) {
            .df-card {
                flex: 0 0 calc((100% - 45px) / 3);
            }
        }

        @media (max-width: 991px) {
            .dh-cats {
                display: none;
            }

            .dh-banner {
                height: 320px;
            }

            .dh-subcard {
                height: 140px;
            }

            .df-card {
                flex-basis: calc((100% - 32px) / 3);
            }
        }

        @media (max-width: 768px) {
            .df-card {
                flex: 0 0 calc(50% - 6px);
            }
        }

        @media (max-width: 767px) {
            .desk-hero {
                display: none;
            }

            .flash-deals {
                order: 4;
                padding: 20px 0 24px;
                background:
                    radial-gradient(circle at top left,
                        rgba(227, 30, 36, 0.06),
                        rgba(255, 255, 255, 0) 240px),
                    linear-gradient(180deg, #fffefb 0%, #faf9f7 100%);
            }

            .df-head {
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 14px;
                margin-bottom: 14px;
            }

            .df-title {
                font-size: 1.25rem;
            }

            .df-title i {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }

            .df-sub {
                font-size: 0.82rem;
            }

            .df-side {
                width: 100%;
                justify-content: space-between;
                gap: 10px;
                flex-wrap: wrap;
            }

            .df-timer {
                padding: 6px 7px;
                gap: 5px;
            }

            .df-timer-box {
                min-width: 36px;
                height: 32px;
                font-size: 0.82rem;
                border-radius: 6px;
            }

            .df-view-all {
                padding: 11px 14px;
                font-size: 0.8rem;
                flex: 1;
                text-align: center;
                border-radius: 50px;
            }

            .df-scroll-btn {
                display: none;
            }

            .df-track {
                gap: 12px;
                padding: 4px 12px 12px 2px;
                scroll-padding-left: 2px;
            }

            .df-card {
                flex: 0 0 calc(50% - 6px);
                min-width: 0;
            }

            .df-img {
                margin: 5px;
            }

            .df-body {
                padding: 12px;
            }

            .df-name {
                font-size: 0.85rem;
            }

            .dc-item {
                gap: 4px;
                width: 100px;
                padding: 6px 8px;
            }

            .df-prices {
                margin-top: 5px;
                gap: 7px;
            }

            .df-now {
                font-size: 1.05rem;
            }

            .df-cart-btn {
                min-height: 38px;
                padding: 9px;
                font-size: 0.79rem;
                margin-top: 9px;
            }
        }

        /* promo script */
        .promo-section {
            padding: 24px 0 28px;
        }

        .promo-grid {
            display: grid;
            grid-template-columns: 60% 1fr;
            gap: 14px;
        }

        /* ── Image Wrapper ── */
        .promo-left,
        .promo-right {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
        }

        .promo-left:hover,
        .promo-right:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
        }

        /* ── Zoom on hover ── */
        .promo-left:hover .promo-img,
        .promo-right:hover .promo-img {
            transform: scale(1.04);
        }

        .promo-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: #fff;
        }

        /* ── Tablet (768px – 991px) ── */
        @media (max-width: 991px) {
            .promo-img {
                height: 180px;
            }
        }

        /* ── Mobile (max 767px) ── */
        @media (max-width: 767px) {
            .promo-section {
                order: 5;
                padding: 14px 0 18px;
            }

            .promo-grid {
                gap: 8px;
            }

            .promo-img {
                height: 110px;
                object-fit: fill;
                border-radius: 10px;
            }

            .promo-left,
            .promo-right {
                border-radius: 10px;
            }
        }

        /* ── Small Mobile (max 400px) ── */
        @media (max-width: 400px) {
            .promo-img {
                height: 95px;
                object-fit: fill;
            }
        }

        /* ══════════════════════════
         NEW ARRIVAL
      ══════════════════════════ */
        .new-arrival {
            background:
                radial-gradient(circle at top right, rgba(201, 162, 75, 0.09), transparent 360px),
                linear-gradient(180deg, #fdf9f0 0%, #fff 100%);
            border-bottom: 1px solid rgba(201, 162, 75, 0.13);
            padding: 32px 0 36px;
        }

        .new-arrival .df-title i {
            background: linear-gradient(135deg, #a07830, var(--gold));
            box-shadow: 0 10px 24px rgba(201, 162, 75, 0.35);
        }

        @media (max-width: 767px) {
            .new-arrival {
                order: 6;
                padding: 14px 0 18px;
            }

            /* ── Mobile New Arrival header card ── */
            .new-arrival .df-head {
                background: linear-gradient(135deg, #7a5420 0%, #b8893a 55%, #c9a24b 100%);
                border-radius: 16px;
                padding: 16px 16px 14px;
                margin-bottom: 18px;
                gap: 0;
                flex-wrap: nowrap;
                align-items: center;
                position: relative;
                overflow: hidden;
                box-shadow: 0 8px 24px rgba(201, 162, 75, 0.38);
            }

            .new-arrival .df-head::before {
                content: "";
                position: absolute;
                top: -28px;
                right: -28px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.08);
                pointer-events: none;
            }

            .new-arrival .df-head::after {
                content: "";
                position: absolute;
                bottom: -36px;
                left: -16px;
                width: 90px;
                height: 90px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.05);
                pointer-events: none;
            }

            .new-arrival .df-title-wrap {
                padding-left: 0;
                flex: 1;
                min-width: 0;
            }

            .new-arrival .df-title-wrap::before {
                display: none;
            }

            .new-arrival .df-title {
                color: #fff;
                font-size: 1.15rem;
                gap: 10px;
            }

            .new-arrival .df-title i {
                background: rgba(255, 255, 255, 0.18);
                box-shadow: none;
                border: 1px solid rgba(255, 255, 255, 0.25);
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
            }

            .new-arrival .df-sub {
                color: rgba(255, 255, 255, 0.78);
                font-size: 0.75rem;
                margin-top: 4px;
            }

            .new-arrival .df-side {
                width: auto;
                flex-shrink: 0;
                margin-left: 12px;
            }

            .new-arrival .df-view-all {
                background: rgba(255, 255, 255, 0.18);
                border: 1.5px solid rgba(255, 255, 255, 0.35);
                color: #fff;
                padding: 7px 13px;
                font-size: 0.76rem;
                flex: none;
                border-radius: 999px;
                box-shadow: none;
                white-space: nowrap;
            }

            .new-arrival .df-view-all:hover {
                background: rgba(255, 255, 255, 0.28);
                transform: none;
                box-shadow: none;
            }
        }

        /* ══════════════════════════
         BEST SELLERS
      ══════════════════════════ */
        .best-sellers {
            background:
                radial-gradient(circle at top left, rgba(227, 30, 36, 0.06), transparent 360px),
                linear-gradient(180deg, #fdf5f5 0%, #fff 100%);
            border-bottom: 1px solid rgba(227, 30, 36, 0.08);
            padding: 32px 0 36px;
        }

        .best-sellers .df-title i {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            box-shadow: 0 10px 24px rgba(227, 30, 36, 0.28);
        }

        @media (max-width: 767px) {
            .best-sellers {
                order: 7;
                padding: 14px 0 18px;
            }

            .best-sellers .df-head {
                background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, #ff5c5c 100%);
                border-radius: 16px;
                padding: 16px 16px 14px;
                margin-bottom: 18px;
                gap: 0;
                flex-wrap: nowrap;
                align-items: center;
                position: relative;
                overflow: hidden;
                box-shadow: 0 8px 28px rgba(227, 30, 36, 0.38);
            }

            .best-sellers .df-head::before {
                content: "";
                position: absolute;
                top: -28px;
                right: -28px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.08);
                pointer-events: none;
            }

            .best-sellers .df-head::after {
                content: "";
                position: absolute;
                bottom: -36px;
                left: -16px;
                width: 90px;
                height: 90px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.05);
                pointer-events: none;
            }

            .best-sellers .df-title-wrap {
                padding-left: 0;
                flex: 1;
                min-width: 0;
            }

            .best-sellers .df-title-wrap::before {
                display: none;
            }

            .best-sellers .df-title {
                color: #fff;
                font-size: 1.15rem;
                gap: 10px;
            }

            .best-sellers .df-title i {
                background: rgba(255, 255, 255, 0.18);
                box-shadow: none;
                border: 1px solid rgba(255, 255, 255, 0.25);
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
            }

            .best-sellers .df-sub {
                color: rgba(255, 255, 255, 0.78);
                font-size: 0.75rem;
                margin-top: 4px;
            }

            .best-sellers .df-side {
                width: auto;
                flex-shrink: 0;
                margin-left: 12px;
            }

            .best-sellers .df-view-all {
                background: rgba(255, 255, 255, 0.18);
                border: 1.5px solid rgba(255, 255, 255, 0.35);
                color: #fff;
                padding: 7px 13px;
                font-size: 0.76rem;
                flex: none;
                border-radius: 999px;
                box-shadow: none;
                white-space: nowrap;
            }

            .best-sellers .df-view-all:hover {
                background: rgba(255, 255, 255, 0.28);
                transform: none;
                box-shadow: none;
            }
        }

        /* ══════════════════════════
         ALL PRODUCTS
      ══════════════════════════ */
        .all-products {
            background:
                radial-gradient(ellipse at 50% 0%, rgba(227, 30, 36, 0.04) 0%, transparent 52%),
                linear-gradient(180deg, #f5f3ef 0%, #ece9e3 100%);
            padding: 36px 0 56px;
        }

        .ap-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        /* ── Filter bar wrapper ── */
        .ap-filters-wrap {
            position: relative;
            margin: 6px 0 30px;
            padding: 10px 12px;
            background: #f6f3ee;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 18px;
        }
        /* soft fade on the right edge to hint horizontal scroll */
        .ap-filters-wrap::after {
            content: "";
            position: absolute;
            top: 8px;
            bottom: 8px;
            right: 8px;
            width: 42px;
            border-radius: 0 18px 18px 0;
            background: linear-gradient(90deg, rgba(246, 243, 238, 0), #f6f3ee);
            pointer-events: none;
        }

        .ap-filters {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            cursor: grab;
            scroll-behavior: smooth;
            padding: 4px 2px;
        }
        .ap-filters.ap-dragging {
            cursor: grabbing;
            scroll-behavior: auto;
            user-select: none;
        }

        .ap-filters::-webkit-scrollbar {
            display: none;
        }

        .ap-filter-btn {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            text-decoration: none;
            padding: 9px 22px;
            border: 1.5px solid rgba(0, 0, 0, 0.07);
            border-radius: 999px;
            background: #fff;
            color: var(--ink);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.84rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
            transition: background 0.18s, color 0.18s, border-color 0.18s,
                box-shadow 0.18s, transform 0.18s;
        }

        .ap-filter-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: rgba(227, 30, 36, 0.05);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(227, 30, 36, 0.1);
        }

        .ap-filter-btn.active {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 6px 16px rgba(227, 30, 36, 0.26);
            transform: translateY(-1px);
        }

        /* ── Grid ── */
        .ap-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .ap-grid .df-card {
            flex: none;
            width: 100%;
            scroll-snap-align: none;
        }

        .ap-card-hidden {
            display: none !important;
        }

        /* ── Load More ── */
        .ap-load-more {
            display: flex;
            justify-content: center;
            margin-top: 36px;
        }

        .ap-load-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 48px;
            border: 2px solid rgba(227, 30, 36, 0.28);
            border-radius: 999px;
            background: #fff;
            color: var(--brand);
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
            transition: background 0.22s, color 0.22s, border-color 0.22s,
                box-shadow 0.22s, transform 0.22s;
        }

        .ap-load-btn:hover {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 12px 28px rgba(227, 30, 36, 0.26);
            transform: translateY(-2px);
        }

        /* ── Tablet ── */
        @media (max-width: 1199px) {
            .ap-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ── Mobile ── */
        @media (max-width: 767px) {
            .all-products {
                order: 8;
                padding: 14px 0 28px;
            }

            /* Mobile section header card */
            .all-products .ap-head {
                background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, #ff5c5c 100%);
                border-radius: 16px;
                padding: 16px 16px 14px;
                margin-bottom: 16px;
                flex-wrap: nowrap;
                align-items: center;
                gap: 0;
                position: relative;
                overflow: hidden;
                box-shadow: 0 8px 24px rgba(227, 30, 36, 0.3);
            }

            .all-products .ap-head::before {
                content: "";
                position: absolute;
                top: -24px;
                right: -24px;
                width: 90px;
                height: 90px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.08);
                pointer-events: none;
            }

            .all-products .ap-head::after {
                content: "";
                position: absolute;
                bottom: -32px;
                left: -12px;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.05);
                pointer-events: none;
            }

            .all-products .df-title-wrap {
                padding-left: 0;
                flex: 1;
                min-width: 0;
            }

            .all-products .df-title-wrap::before {
                display: none;
            }

            .all-products .df-title {
                color: #fff;
                font-size: 1.12rem;
                gap: 10px;
            }

            .all-products .df-title i {
                background: rgba(255, 255, 255, 0.18);
                box-shadow: none;
                border: 1px solid rgba(255, 255, 255, 0.25);
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .all-products .df-sub {
                color: rgba(255, 255, 255, 0.78);
                font-size: 0.74rem;
                margin-top: 4px;
            }

            .all-products .ap-head .df-view-all {
                background: rgba(255, 255, 255, 0.18);
                border: 1.5px solid rgba(255, 255, 255, 0.35);
                color: #fff;
                padding: 7px 12px;
                font-size: 0.75rem;
                flex: none;
                border-radius: 999px;
                box-shadow: none;
                white-space: nowrap;
            }

            .all-products .ap-head .df-view-all:hover {
                background: rgba(255, 255, 255, 0.28);
                transform: none;
                box-shadow: none;
            }

            /* Filter bar: padded pill container with horizontal scroll */
            .ap-filters-wrap {
                margin: 4px 0 22px;
                padding: 8px 10px;
                border-radius: 14px;
            }
            .ap-filters-wrap::after {
                border-radius: 0 14px 14px 0;
                width: 30px;
                right: 6px;
            }
            .ap-filters {
                gap: 7px;
                padding: 2px;
                margin: 0;
            }

            .ap-filter-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
                flex-shrink: 0;
                background: #fff;
            }

            .ap-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .ap-load-btn {
                padding: 11px 32px;
                font-size: 0.85rem;
            }
        }

        .badge-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 60px;
            z-index: 1;
        }

        .deal-badge-new {
            width: 100%;
            height: 100%;
            display: block;
            pointer-events: none;
        }

        .badge-text {
            position: absolute;
            top: 40%;
            left: 40%;
            transform: translate(-50%, -50%);
            color: black;
            font-size: 15px;
            font-weight: 700;
            line-height: 1;
            pointer-events: none;
            white-space: nowrap;
        }

        @media (max-width: 767px) {
            .badge-wrapper {
                width: 55px;
                height: 55px;
            }

            .badge-text {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .badge-wrapper {
                width: 50px;
                height: 50px;
            }

            .badge-text {
                font-size: 10px;
            }
        }

        /* ══════════════════════════
         CART DRAWER
      ══════════════════════════ */
        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(25, 20, 23, 0.52);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 1060;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.32s ease;
        }

        .cart-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 420px;
            max-width: 100vw;
            background: #fff;
            z-index: 1061;
            display: flex;
            flex-direction: column;
            transform: translateX(110%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 56px rgba(25, 20, 23, 0.18);
        }

        .cart-drawer.open {
            transform: translateX(0);
        }

        /* Head */
        .cart-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px 18px;
            background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 60%, #ff4040 100%);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .cart-drawer-head::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -30px;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            pointer-events: none;
        }

        .cart-drawer-head::after {
            content: "";
            position: absolute;
            bottom: -50px;
            left: -10px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .cart-drawer-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.08rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.2px;
            position: relative;
            z-index: 1;
        }

        .cart-drawer-title i {
            font-size: 1.25rem;
        }

        .cart-count-badge {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            min-width: 22px;
            height: 22px;
            border-radius: 11px;
            display: grid;
            place-items: center;
            padding: 0 6px;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
        }

        /* header & mobile nav badge — override drawer-style white */
        .hact-badge.cart-count-badge,
        .mob-hbadge.cart-count-badge {
            background: var(--brand);
            color: #fff;
            border: 2px solid #fff;
            box-shadow: 0 2px 6px rgba(227, 30, 36, .45);
        }

        .cart-close-btn {
            position: relative;
            z-index: 1;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            display: grid;
            place-items: center;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.18s, transform 0.22s;
        }

        .cart-close-btn:hover {
            background: rgba(255, 255, 255, 0.26);
            transform: rotate(90deg);
        }

        /* Free delivery bar */

        /* Items */
        .cart-items-wrap {
            flex: 1;
            overflow-y: auto;
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            scrollbar-width: thin;
            scrollbar-color: #fde0e0 transparent;
        }

        .cart-items-wrap::-webkit-scrollbar {
            width: 4px;
        }

        .cart-items-wrap::-webkit-scrollbar-track {
            background: transparent;
        }

        .cart-items-wrap::-webkit-scrollbar-thumb {
            background: #fde0e0;
            border-radius: 4px;
        }

        .cart-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            background: #fff;
            border: 1px solid #eef2f7;
            border-radius: 16px;
            padding: 13px;
            position: relative;
            transition: box-shadow 0.18s, border-color 0.18s, opacity 0.25s, transform 0.25s;
            box-shadow: 0 1px 4px rgba(0,0,0,.04);
        }

        .cart-item:hover {
            box-shadow: 0 4px 18px rgba(227, 30, 36, 0.09);
            border-color: rgba(227, 30, 36, 0.2);
        }

        .cart-item-img {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f8fafc;
            border: 1px solid #eef2f7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-item-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 5px;
        }

        .cart-item-info {
            flex: 1;
            min-width: 0;
            padding-right: 26px;
        }

        .cart-item-name {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.38;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cart-item-unit {
            font-size: 0.72rem;
            color: var(--muted);
            font-weight: 500;
            margin-bottom: 9px;
        }

        .cart-item-bot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .cart-item-line-total {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--brand);
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }

        .cart-qty {
            display: flex;
            align-items: center;
            border: 1.5px solid #e8edf2;
            border-radius: 8px;
            overflow: hidden;
            height: 30px;
            background: #f8fafc;
            flex-shrink: 0;
        }

        .cart-qty-btn {
            width: 28px;
            height: 100%;
            border: none;
            background: transparent;
            color: var(--ink);
            font-size: 1rem;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: background 0.15s, color 0.15s;
            line-height: 1;
        }

        .cart-qty-btn:hover {
            background: var(--brand);
            color: #fff;
        }

        .cart-qty-val {
            min-width: 30px;
            text-align: center;
            font-size: 0.83rem;
            font-weight: 700;
            color: var(--ink);
            border-left: 1.5px solid #e8edf2;
            border-right: 1.5px solid #e8edf2;
            height: 100%;
            display: grid;
            place-items: center;
        }

        .cart-item-remove {
            position: absolute;
            top: 8px;
            right: 9px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: #c8d0dc;
            font-size: 0.62rem;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background 0.15s, color 0.15s, transform 0.18s;
        }

        .cart-item-remove:hover {
            background: #fee2e2;
            color: var(--brand);
            transform: rotate(90deg);
        }

        /* Summary */
        .cart-summary {
            padding: 0 20px 20px;
            border-top: 1px solid var(--line);
            background: #fff;
            flex-shrink: 0;
        }

        .cart-sub-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0 13px;
            border-bottom: 1px solid #f0f4f8;
            margin-bottom: 14px;
        }

        .cart-sub-label {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: var(--muted);
            font-weight: 500;
        }

        .cart-sub-label i {
            color: var(--brand);
            font-size: 0.78rem;
        }

        .cart-sub-val {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.3px;
        }

        .cart-ck-arrow {
            margin-left: auto;
            font-size: 0.82rem;
            opacity: 0.75;
            transition: transform 0.2s;
        }

        .cart-checkout-btn:hover .cart-ck-arrow {
            transform: translateX(4px);
        }

        .cart-coupon {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .cart-coupon-input {
            flex: 1;
            border: 1.5px solid var(--line);
            border-radius: 8px;
            padding: 0 12px;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.83rem;
            color: var(--ink);
            background: #fafafa;
            height: 38px;
            transition: border-color 0.18s, background 0.18s;
            min-width: 0;
        }

        .cart-coupon-input:focus {
            outline: none;
            border-color: var(--brand);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
        }

        .cart-coupon-input::placeholder {
            color: var(--muted-lt);
        }

        .cart-coupon-apply {
            padding: 0 14px;
            height: 38px;
            border-radius: 8px;
            border: none;
            background: var(--ink-soft);
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
            transition: background 0.18s;
        }

        .cart-coupon-apply:hover {
            background: var(--brand);
        }

        .cart-summary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.83rem;
            color: var(--muted);
            margin-bottom: 7px;
        }

        .cart-summary-row span:last-child {
            color: var(--ink);
            font-weight: 600;
        }

        .cart-free-tag {
            color: #16a34a;
            font-weight: 700;
            font-size: 0.75rem;
            background: #dcfce7;
            padding: 2px 8px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }

        .cart-delivery-note {
            color: #9ca3af;
            font-size: 0.65rem;
            font-weight: 400;
            margin-left: 4px;
        }

        .cart-discount-val {
            color: #16a34a !important;
            font-weight: 700 !important;
        }

        .cart-summary-divider {
            height: 1px;
            background: var(--line);
            margin: 12px 0;
        }

        .cart-summary-total {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .cart-summary-total-lbl {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--ink);
        }

        .cart-summary-total-val {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--brand);
            letter-spacing: -0.6px;
        }

        .cart-checkout-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 9px;
            width: 100%;
            padding: 14px 16px;
            border-radius: 13px;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand) 55%, #ff4040);
            color: #fff;
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.1px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 26px rgba(227, 30, 36, 0.3);
            transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
            margin-bottom: 10px;
        }

        .cart-checkout-btn:hover {
            opacity: 0.93;
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(227, 30, 36, 0.4);
            color: #fff;
        }

        .cart-continue-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 11px;
            border-radius: 12px;
            background: transparent;
            color: var(--brand);
            font-size: 0.83rem;
            font-weight: 600;
            text-decoration: none;
            border: 1.5px solid rgba(227, 30, 36, 0.22);
            cursor: pointer;
            transition: background 0.18s, border-color 0.18s;
        }

        .cart-continue-btn:hover {
            background: rgba(227, 30, 36, 0.05);
            border-color: var(--brand);
            color: var(--brand);
        }

        /* Empty state */
        .cart-empty {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 32px 24px;
            text-align: center;
            color: var(--muted);
        }

        .cart-empty-img {
            width: 160px;
            height: auto;
            display: block;
            margin: 0 auto 4px;
            animation: cartEmptyFloat 3s ease-in-out infinite;
        }

        @keyframes cartEmptyFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .cart-empty-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 4px;
        }

        .cart-empty-sub {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .cart-empty-shop-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-top: 6px;
            padding: 10px 22px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            color: #fff;
            font-size: 0.84rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(227, 30, 36, 0.28);
            transition: opacity 0.18s, transform 0.18s;
        }

        .cart-empty-shop-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            color: #fff;
        }

        /* ══════════════════════════
         WISHLIST DRAWER
      ══════════════════════════ */
        .wish-overlay {
            position: fixed;
            inset: 0;
            background: rgba(25, 20, 23, 0.52);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 1060;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.32s ease;
        }

        .wish-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .wish-drawer {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 420px;
            max-width: 100vw;
            background: #fff;
            z-index: 1061;
            display: flex;
            flex-direction: column;
            transform: translateX(110%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 56px rgba(25, 20, 23, 0.18);
        }

        .wish-drawer.open {
            transform: translateX(0);
        }

        .wish-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px 18px;
            background: linear-gradient(135deg, #8e1014 0%, #c9184a 55%, #ff4d6d 100%);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .wish-drawer-head::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -30px;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            pointer-events: none;
        }

        .wish-drawer-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.08rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.2px;
            position: relative;
            z-index: 1;
        }

        .wish-drawer-title i {
            font-size: 1.2rem;
            color: #ffb3c1;
        }

        .wish-count-badge {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            min-width: 22px;
            height: 22px;
            border-radius: 11px;
            display: grid;
            place-items: center;
            padding: 0 6px;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
        }

        .wish-close-btn {
            position: relative;
            z-index: 1;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            display: grid;
            place-items: center;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.18s, transform 0.22s;
        }

        .wish-close-btn:hover {
            background: rgba(255, 255, 255, 0.26);
            transform: rotate(90deg);
        }

        .wish-items-wrap {
            flex: 1;
            overflow-y: auto;
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            scrollbar-width: thin;
            scrollbar-color: #fde0e0 transparent;
        }

        .wish-items-wrap::-webkit-scrollbar {
            width: 4px;
        }

        .wish-items-wrap::-webkit-scrollbar-thumb {
            background: #fde0e0;
            border-radius: 4px;
        }

        .wish-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            background: #fafafa;
            border: 1px solid #f0f0f0;
            border-radius: 14px;
            padding: 12px;
            position: relative;
            transition: box-shadow 0.18s, border-color 0.18s, opacity 0.26s, transform 0.26s;
        }

        .wish-item:hover {
            box-shadow: 0 4px 18px rgba(201, 24, 74, 0.09);
            border-color: rgba(201, 24, 74, 0.18);
        }

        .wish-item-img {
            width: 72px;
            height: 72px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: #fff;
            border: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wish-item-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 4px;
        }

        .wish-item-info {
            flex: 1;
            min-width: 0;
            padding-right: 28px;
        }

        .wish-item-name {
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.35;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .wish-item-prices {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 10px;
        }

        .wish-item-now {
            font-size: 0.97rem;
            font-weight: 800;
            color: #c9184a;
            letter-spacing: -0.3px;
        }

        .wish-item-old {
            font-size: 0.7rem;
            color: var(--muted-lt);
            text-decoration: line-through;
        }

        .wish-item-cart-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 8px;
            border: 1.5px solid #c9184a;
            background: transparent;
            color: #c9184a;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.18s, color 0.18s;
        }

        .wish-item-cart-btn:hover {
            background: #c9184a;
            color: #fff;
        }

        .wish-item-remove {
            position: absolute;
            top: 9px;
            right: 10px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--muted-lt);
            font-size: 0.72rem;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background 0.15s, color 0.15s;
        }

        .wish-item-remove:hover {
            background: #fde8e8;
            color: #c9184a;
        }

        /* Empty state */
        .wish-empty {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 32px 24px;
            text-align: center;
        }

        .wish-empty i {
            font-size: 3.5rem;
            color: #ffb3c1;
        }

        .wish-empty-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
        }

        .wish-empty-sub {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.5;
        }

        @media (max-width: 480px) {
            .wish-drawer {
                width: 100vw;
            }
        }

        /* ── Toast Notification ── */
        .hcm-toast {
            position: fixed;
            bottom: 86px;
            left: 50%;
            transform: translateX(-50%) translateY(16px);
            background: var(--ink-soft);
            color: #fff;
            padding: 11px 20px;
            border-radius: 50px;
            font-size: 0.84rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 9px;
            z-index: 1070;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease;
            white-space: nowrap;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
            max-width: calc(100vw - 32px);
        }

        .hcm-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .hcm-toast i {
            font-size: 1rem;
        }

        .hcm-toast.toast-cart i {
            color: #4ade80;
        }

        .hcm-toast.toast-wish i {
            color: #f87171;
        }

        .hcm-toast.toast-unwish i {
            color: #94a3b8;
        }

        @media (min-width: 768px) {
            .hcm-toast {
                bottom: 32px;
            }
        }

        /* ── Wishlist filled state ── */
        .df-action-btn.wishlisted {
            background: #fde8e8;
            color: var(--brand);
        }

        .df-action-btn.wishlisted i {
            color: var(--brand);
        }

        @media (max-width: 480px) {
            .cart-drawer {
                width: 100vw;
            }

            .cart-drawer-head {
                padding: 16px 18px 14px;
            }

            .cart-items-wrap {
                padding: 12px 14px;
            }

            .cart-summary {
                padding: 14px 16px 20px;
            }
        }

        /* ═══════════════════════════════════════════════
         PREMIUM UI OVERRIDES
      ═══════════════════════════════════════════════ */

        /* ── Cards: refined shadow + border ── */
        .df-card {
            border: 1px solid rgba(0, 0, 0, 0.055);
            border-radius: 16px;
            box-shadow:
                0 1px 3px rgba(0, 0, 0, 0.04),
                0 4px 14px rgba(0, 0, 0, 0.06);
        }

        .df-card:hover {
            transform: translateY(-10px) scale(1.012);
            border-color: rgba(0, 0, 0, 0.055);
            box-shadow:
                0 2px 4px rgba(0, 0, 0, 0.04),
                0 12px 32px rgba(0, 0, 0, 0.1),
                0 20px 48px rgba(227, 30, 36, 0.07);
        }

        /* ── Image area: cleaner ── */
        .df-img {
            border: none;
            margin: 8px 8px 0;
            border-radius: 10px;
            background: linear-gradient(150deg, #fafafa 0%, #f3f3f5 100%);
        }

        .df-img::after {
            background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.04) 100%);
        }

        /* ── Action buttons: glass ── */
        .df-action-btn {
            width: 38px;
            height: 38px;
            font-size: 0.92rem;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
        }

        .df-action-btn:hover {
            background: linear-gradient(135deg, #ff416c, #e31e24);
            border-color: transparent;
            box-shadow: 0 8px 22px rgba(255, 65, 108, 0.38);
            transform: translateY(-2px) scale(1.12);
        }

        /* ── Card body ── */
        .df-body {
            padding: 10px 14px 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }

        .df-name {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: -0.1px;
            margin-top: 2px;
            margin-bottom: 6px;
        }

        /* ── Price: gradient text ── */
        .df-prices {
            margin-bottom: 10px;
            gap: 6px;
        }

        .df-now {
            font-size: 1.18rem;
            font-weight: 800;
            letter-spacing: -0.6px;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .df-old {
            font-size: 0.74rem;
            color: #c0c0c0;
            font-weight: 400;
            text-decoration: line-through;
            text-decoration-color: #d0d0d0;
        }

        /* ── Buttons: premium ── */
        .df-cart-btn {
            border: 1.5px solid rgba(255, 65, 108, 0.4);
            background: rgba(255, 65, 108, 0.07);
            color: #ff416c;
            border-radius: 9px;
            letter-spacing: 0.1px;
        }

        .df-cart-btn:hover {
            background: linear-gradient(135deg, #ff416c, #e31e24);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 8px 20px rgba(255, 65, 108, 0.35);
        }

        .df-buynow-btn {
            background: linear-gradient(135deg, #ff416c, #e31e24);
            border-radius: 9px;
            letter-spacing: 0.1px;
            box-shadow: 0 4px 12px rgba(255, 65, 108, 0.28);
        }

        .df-buynow-btn:hover {
            opacity: 1;
            filter: brightness(1.06);
            box-shadow: 0 10px 24px rgba(255, 65, 108, 0.42);
            transform: translateY(-2px);
        }

        /* ── Section backgrounds: premium gradient ── */
        .flash-deals {
            background:
                radial-gradient(ellipse at 0% 0%, rgba(227, 30, 36, 0.07) 0%, transparent 52%),
                radial-gradient(ellipse at 100% 100%, rgba(201, 162, 75, 0.06) 0%, transparent 50%),
                linear-gradient(180deg, #fffefb 0%, #faf9f7 100%);
        }

        .new-arrival {
            background:
                radial-gradient(ellipse at 100% 0%, rgba(201, 162, 75, 0.10) 0%, transparent 48%),
                radial-gradient(ellipse at 0% 100%, rgba(201, 162, 75, 0.04) 0%, transparent 42%),
                linear-gradient(180deg, #fdf9f0 0%, #fff 60%);
        }

        .all-products {
            background:
                radial-gradient(ellipse at 50% 0%, rgba(227, 30, 36, 0.05) 0%, transparent 58%),
                linear-gradient(180deg, #f5f3ef 0%, #ece9e3 100%);
        }

        /* ── Section title: left accent bar ── */
        .df-title-wrap {
            position: relative;
            padding-left: 16px;
        }

        .df-title-wrap::before {
            content: "";
            position: absolute;
            left: 0;
            top: 3px;
            bottom: 3px;
            width: 4px;
            border-radius: 4px;
            background: linear-gradient(180deg, var(--gold), var(--brand));
        }

        .df-title {
            font-size: 1.45rem;
            letter-spacing: -0.4px;
        }

        .df-sub {
            font-size: 0.83rem;
            font-weight: 400;
            letter-spacing: 0.1px;
            color: var(--muted);
            margin-top: 5px;
        }

        /* ── View All button ── */
        .df-view-all {
            background: rgba(227, 30, 36, 0.04);
            border: 1.5px solid rgba(227, 30, 36, 0.22);
            font-size: 0.84rem;
            font-weight: 600;
            letter-spacing: 0.2px;
            padding: 9px 18px;
        }

        .df-view-all:hover {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 10px 22px rgba(227, 30, 36, 0.24);
            transform: translateY(-2px);
        }

        /* ── Filter tabs: elevated pill ── */
        .ap-filter-btn {
            padding: 8px 20px;
            font-weight: 600;
            letter-spacing: 0.2px;
            border: 1.5px solid rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.18s;
        }

        .ap-filter-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: rgba(227, 30, 36, 0.04);
            box-shadow: 0 4px 14px rgba(227, 30, 36, 0.12);
            transform: translateY(-1px);
        }

        .ap-filter-btn.active {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 6px 18px rgba(227, 30, 36, 0.28);
            transform: translateY(-1px);
        }

        /* ── Load More button ── */
        .ap-load-btn {
            border: 2px solid rgba(227, 30, 36, 0.25);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
            letter-spacing: 0.3px;
            font-size: 0.88rem;
            padding: 12px 40px;
        }

        .ap-load-btn:hover {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 12px 28px rgba(227, 30, 36, 0.26);
            transform: translateY(-2px);
        }

        /* ══════════════════════════
         FOOTER
      ══════════════════════════ */
        /* ===== SITE FOOTER ===== */
        .site-footer {
            background: #111827;
            color: #6b7280;
            font-size: 0.875rem;
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: "";
            position: absolute;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(227,30,36,0.07) 0%, transparent 60%);
            top: -250px; left: -150px;
            pointer-events: none; z-index: 0;
        }

        .site-footer::after {
            content: "";
            position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(201,162,75,0.05) 0%, transparent 60%);
            bottom: 0; right: -100px;
            pointer-events: none; z-index: 0;
        }

        .site-footer > * { position: relative; z-index: 1; }

        /* ── Top accent bar ── */
        .ft-accent {
            height: 3px;
            background: linear-gradient(90deg, #b01a1f 0%, #E31E24 30%, #c9a24b 58%, #e8c96f 72%, #E31E24 88%, #b01a1f 100%);
        }

        /* ── Main grid ── */
        .ft-main {
            padding: 52px 0 44px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .ft-grid {
            display: grid;
            grid-template-columns: 1.65fr 0.95fr 0.95fr 1.15fr;
            gap: 52px;
        }

        /* ── Brand col ── */
        .ft-brand-logo {
            height: 60px;
            width: auto;
            margin-bottom: 16px;
            display: block;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .ft-tagline {
            font-size: 0.83rem;
            line-height: 1.85;
            color: #6b7280;
            margin-bottom: 24px;
            max-width: 264px;
        }

        .ft-social-label {
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #374151;
            margin-bottom: 10px;
        }

        .ft-socials { display: flex; gap: 8px; }

        .ft-social-btn {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            display: grid; place-items: center;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .ft-social-btn.fb { color: #1877f2; }
        .ft-social-btn.ig { color: #e1306c; }
        .ft-social-btn.yt { color: #ff4444; }
        .ft-social-btn.wa { color: #25d366; }
        .ft-social-btn.tt { color: #e5e7eb; }

        .ft-social-btn.fb:hover {
            background: #1877f2; border-color: #1877f2; color: #fff;
            transform: translateY(-3px); box-shadow: 0 6px 18px rgba(24,119,242,0.38);
        }
        .ft-social-btn.ig:hover {
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-color: transparent; color: #fff;
            transform: translateY(-3px); box-shadow: 0 6px 18px rgba(220,39,67,0.38);
        }
        .ft-social-btn.yt:hover {
            background: #ff0000; border-color: #ff0000; color: #fff;
            transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,0,0,0.32);
        }
        .ft-social-btn.wa:hover {
            background: #25d366; border-color: #25d366; color: #fff;
            transform: translateY(-3px); box-shadow: 0 6px 18px rgba(37,211,102,0.32);
        }
        .ft-social-btn.tt:hover {
            background: #fff; border-color: #fff; color: #111;
            transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,255,255,0.15);
        }

        /* ── Column titles ── */
        .ft-col-title {
            color: #f3f4f6;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 13px;
        }

        .ft-col-title::after {
            content: "";
            position: absolute;
            left: 0; bottom: 0;
            width: 30px; height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, #E31E24, #c9a24b);
        }

        /* ── Links ── */
        .ft-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        .ft-links a {
            color: #6b7280;
            font-size: 0.845rem;
            display: flex;
            align-items: center;
            gap: 9px;
            text-decoration: none;
            transition: color 0.18s, padding-left 0.18s;
        }

        .ft-links a i {
            font-size: 0.54rem;
            color: #E31E24;
            opacity: 0.45;
            flex-shrink: 0;
            transition: opacity 0.18s, transform 0.2s;
        }

        .ft-links a:hover { color: #f3f4f6; padding-left: 5px; }
        .ft-links a:hover i { opacity: 1; transform: translateX(3px); }

        /* ── Contact ── */
        .ft-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 13px;
            margin-bottom: 16px;
            color: #6b7280;
            font-size: 0.84rem;
            line-height: 1.65;
        }

        .ft-contact-icon {
            width: 34px; height: 34px;
            border-radius: 9px;
            background: rgba(201,162,75,0.1);
            border: 1px solid rgba(201,162,75,0.2);
            display: grid; place-items: center;
            flex-shrink: 0;
            color: #c9a24b;
            font-size: 0.85rem;
            transition: background 0.2s;
        }

        .ft-contact-item:hover .ft-contact-icon { background: rgba(201,162,75,0.2); }

        /* ── Newsletter ── */
        .ft-newsletter { margin-top: 6px; }

        .ft-nl-desc {
            font-size: 0.81rem;
            color: #6b7280;
            line-height: 1.65;
            margin-bottom: 14px;
        }

        .ft-nl-form {
            display: flex;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            margin-bottom: 10px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .ft-nl-form:focus-within {
            border-color: rgba(227,30,36,0.4);
            box-shadow: 0 0 0 3px rgba(227,30,36,0.08);
        }

        .ft-nl-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 15px;
            color: #f3f4f6;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.84rem;
            min-width: 0;
        }

        .ft-nl-input::placeholder { color: #374151; }
        .ft-nl-input:focus { outline: none; }

        .ft-nl-btn {
            border: none;
            background: linear-gradient(135deg, #b01a1f, #E31E24 60%, #ff4f57);
            color: #fff;
            padding: 0 18px;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            letter-spacing: 0.3px;
            transition: filter 0.18s;
        }

        .ft-nl-btn:hover { filter: brightness(1.12); }

        .ft-nl-note {
            font-size: 0.7rem;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ft-nl-note i { color: #c9a24b; font-size: 0.64rem; }

        /* ── Bottom bar ── */
        .ft-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 0;
            flex-wrap: wrap;
        }

        .ft-copy {
            font-size: 0.77rem;
            color: #374151;
            line-height: 1.5;
        }

        .ft-copy a {
            color: #E31E24;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.18s;
        }

        .ft-copy a:hover { color: #ff3b41; }

        .ft-bottom-right {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .ft-pay-label {
            font-size: 0.67rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: #374151;
        }

        .ft-pay-icons {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .ft-pay-img {
            height: 26px;
            width: auto;
            border-radius: 6px;
            background: rgba(255,255,255,0.08);
            padding: 4px 8px;
            object-fit: contain;
            display: block;
            border: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
            transition: opacity 0.18s, transform 0.18s;
        }

        .ft-pay-img:hover { opacity: 1; transform: translateY(-2px); }

        /* ── Responsive ── */
        @media (max-width: 1199px) {
            .ft-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
            .ft-features-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 991px) {
            .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
            .ft-tagline { max-width: 100%; }
            .ft-features-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 767px) {
            .site-footer { display: none; }
        }

        /* ── Rating stars ── */
        .df-rating {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: 4px;
            margin-bottom: 6px;
            min-width: 0;
        }

        .df-rating-val {
            font-size: 0.74rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.2px;
            line-height: 1;
        }

        .df-stars {
            display: flex;
            gap: 1px;
            font-size: 0.66rem;
            line-height: 1;
        }

        .df-stars .bi-star-fill,
        .df-stars .bi-star-half {
            color: #f59e0b;
        }

        .df-stars .bi-star {
            color: #d1d5db;
        }

        .df-rating-count {
            font-size: 0.68rem;
            color: var(--muted-lt);
            font-weight: 400;
            line-height: 1;
            white-space: nowrap;
        }

        /* ══════════════════════════════════════════════════
           SHOP PAGE
        ══════════════════════════════════════════════════ */

        /* ── Hero / Breadcrumb ── */
        /* ── Breadcrumb Bar ── */
        .sp-breadcrumb-bar {
            background: linear-gradient(135deg, #1a0a10 0%, var(--ink-soft) 50%, #1e0810 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .sp-breadcrumb-bar::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 85% 50%, rgba(227, 30, 36, 0.14) 0%, transparent 55%),
                radial-gradient(ellipse at 5% 50%, rgba(201, 162, 75, 0.08) 0%, transparent 45%);
            pointer-events: none;
        }

        .sp-bc-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .sp-bc-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
            margin: 0;
            letter-spacing: -0.4px;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .sp-bc-title i {
            color: var(--brand);
            font-size: 1.1rem;
        }

        .sp-bc-nav {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            flex-shrink: 0;
        }

        .sp-bc-nav a {
            color: #f0d48a;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: opacity 0.18s;
        }

        .sp-bc-nav a:hover {
            opacity: 0.75;
        }

        .sp-bc-nav i.bi-chevron-right {
            font-size: 0.62rem;
        }

        /* ── Main Section ── */
        .sp-section {
            background: var(--bg);
            padding: 18px 0 48px;
        }

        /* ── Layout ── */
        .sp-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 22px;
            align-items: start;
        }

        /* ── Sidebar ── */
        .sp-sidebar {
            position: sticky;
            top: 80px;
            max-height: calc(100vh - 100px);
            background: #fff;
            border-radius: 18px;
            border: 1.5px solid #e8edf4;
            box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
            overflow-y: auto;
            overflow-x: hidden;
            scrollbar-width: thin;
            scrollbar-color: #e5e7eb transparent;
        }
        .sp-sidebar::-webkit-scrollbar { width: 4px; }
        .sp-sidebar::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }

        /* Sidebar header */
        .sp-sidebar-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 16px 13px;
            border-bottom: 1.5px solid #f0f4f8;
            background: linear-gradient(135deg, #fff 60%, #fff5f5 100%);
            border-radius: 18px 18px 0 0;
        }
        .sp-sidebar-head-left {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
            font-weight: 800;
            color: #111827;
        }
        .sp-sidebar-head-left i {
            color: var(--brand);
            font-size: 1.05rem;
        }

        /* ── Product Content Area (grid child — must have min-width:0 to prevent overflow) ── */
        .sp-content {
            min-width: 0;
            overflow-x: clip;
        }

        .sp-search-wrap {
            position: relative;
            padding: 12px 14px;
            border-bottom: 1px solid #f0f4f8;
        }

        .sp-search-icon {
            position: absolute;
            left: 26px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 0.78rem;
            pointer-events: none;
        }

        .sp-search-input {
            width: 100%;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            padding: 8px 10px 8px 30px;
            font-size: 0.82rem;
            font-family: inherit;
            background: #f9fafb;
            color: var(--ink);
            outline: none;
            transition: border-color 0.18s, background 0.18s;
        }
        .sp-search-input:focus {
            border-color: var(--brand);
            background: #fff;
        }

        .sp-filter-group {
            border-bottom: 1px solid #f0f4f8;
        }
        .sp-filter-group:last-of-type {
            border-bottom: none;
        }

        .sp-filter-title {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 13px 16px 9px;
            font-size: 0.72rem;
            font-weight: 700;
            color: #1f2937;
            letter-spacing: .055em;
            text-transform: uppercase;
            margin: 0;
        }
        .sp-filter-title > i:first-child {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 7px;
            background: rgba(227,30,36,.1);
            color: var(--brand);
            font-size: 0.73rem;
            flex-shrink: 0;
        }

        .sp-filter-list {
            list-style: none;
            padding: 2px 8px 10px;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        /* Category filter buttons */
        .sp-cat-filter,
        .sp-cat-filter-mob {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            padding: 8px 10px;
            border: none;
            border-radius: 10px;
            background: transparent;
            font-size: 0.83rem;
            font-weight: 500;
            color: #374151;
            cursor: pointer;
            transition: all 0.18s;
            font-family: inherit;
            text-align: left;
        }
        .sp-cat-filter i, .sp-cat-filter-mob i {
            font-size: 0.85rem;
            color: #9ca3af;
            flex-shrink: 0;
            transition: color 0.18s;
        }
        .sp-cat-filter:hover,
        .sp-cat-filter-mob:hover {
            background: #fff5f5;
            color: var(--brand);
        }
        .sp-cat-filter:hover i,
        .sp-cat-filter-mob:hover i { color: var(--brand); }
        .sp-cat-filter.active,
        .sp-cat-filter-mob.active {
            background: linear-gradient(135deg, #ff416c, var(--brand));
            color: #fff;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(227,30,36,.25);
        }
        .sp-cat-filter.active i,
        .sp-cat-filter-mob.active i { color: #fff; }
        .sp-cat-filter.active .sp-count-badge,
        .sp-cat-filter-mob.active .sp-count-badge {
            background: rgba(0,0,0,.22);
            color: #fff;
            border-color: transparent;
        }

        .sp-check-label {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 0.82rem;
            font-weight: 500;
            color: #374151;
            cursor: pointer;
            padding: 7px 10px;
            border-radius: 9px;
            transition: background 0.15s, color 0.15s;
        }
        .sp-check-label:hover { background: #fff5f5; color: var(--brand); }
        .sp-check-label:hover .sp-rating-lbl { color: var(--brand); }
        .sp-check-label:has(input:checked) {
            background: #fff5f5;
            color: var(--brand);
            font-weight: 600;
        }
        .sp-check-label:has(input:checked) .sp-rating-lbl { color: var(--brand); }
        .sp-check-label input[type="checkbox"],
        .sp-check-label input[type="radio"] {
            accent-color: var(--brand);
            width: 15px;
            height: 15px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .sp-rating-lbl {
            font-size: 0.77rem;
            color: #6b7280;
            margin-left: auto;
            transition: color 0.15s;
        }

        .sp-brand-dot {
            width: 10px;
            height: 10px;
            border-radius: 3px;
            flex-shrink: 0;
            box-shadow: 0 1px 3px rgba(0,0,0,.18);
        }

        .sp-count-badge {
            margin-left: auto;
            background: #f3f4f6;
            color: #6b7280;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            flex-shrink: 0;
            min-width: 22px;
            text-align: center;
        }

        .sp-stars {
            display: flex;
            gap: 2px;
            font-size: 0.75rem;
            color: #f59e0b;
            flex-shrink: 0;
        }

        /* Price Range */
        .sp-price-wrap {
            padding: 4px 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        .sp-price-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .sp-preset-btn {
            background: #f8fafc;
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 7px 15px;
            cursor: pointer;
            color: #4b5563;
            transition: all 0.18s;
            font-family: inherit;
            line-height: 1.4;
        }
        .sp-preset-btn:hover { border-color: var(--brand); color: var(--brand); background: #fff5f5; }
        .sp-preset-btn.active {
            background: linear-gradient(135deg, #ff416c, var(--brand));
            border-color: var(--brand);
            color: #fff;
            box-shadow: 0 2px 8px rgba(227,30,36,.28);
        }

        /* Mobile offcanvas price preset buttons */
        .sp-preset-btn-mob {
            background: #f3f4f6;
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #374151;
            padding: 8px 16px;
            cursor: pointer;
            transition: all 0.18s;
            font-family: inherit;
            line-height: 1.2;
        }
        .sp-preset-btn-mob:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: #fff5f5;
        }
        .sp-preset-btn-mob.active {
            background: linear-gradient(135deg, #ff416c, var(--brand));
            border-color: var(--brand);
            color: #fff;
            box-shadow: 0 2px 8px rgba(227,30,36,.28);
        }

        .sp-price-inputs {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sp-price-field {
            flex: 1;
            display: flex;
            align-items: center;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
            background: #f9fafb;
            min-width: 0;
            transition: border-color 0.18s, box-shadow 0.18s;
        }
        .sp-price-field:focus-within {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(227,30,36,.08);
            background: #fff;
        }

        .sp-price-sym {
            padding: 8px 8px;
            color: var(--brand);
            font-size: 0.78rem;
            font-weight: 800;
            background: rgba(227,30,36,.06);
            flex-shrink: 0;
            line-height: 1;
            border-right: 1px solid #e5e7eb;
        }

        .sp-price-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 8px 7px;
            font-size: 0.81rem;
            font-family: inherit;
            color: var(--ink);
            outline: none;
            min-width: 0;
            font-weight: 600;
        }
        .sp-price-input::-webkit-inner-spin-button,
        .sp-price-input::-webkit-outer-spin-button { opacity: 0; }

        .sp-price-dash {
            color: #cbd5e1;
            flex-shrink: 0;
            font-size: 1rem;
            font-weight: 300;
        }

        .sp-price-apply-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #ff416c, var(--brand));
            color: #fff;
            border: none;
            border-radius: 11px;
            font-size: 0.83rem;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
            font-family: inherit;
            box-shadow: 0 4px 14px rgba(227,30,36,.28);
            letter-spacing: .02em;
        }
        .sp-price-apply-btn:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(227,30,36,.35); }

        .sp-clear-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 5px 10px;
            background: none;
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            color: #6b7280;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.18s;
            font-family: inherit;
        }
        .sp-clear-btn:hover {
            background: #fff5f5;
            border-color: rgba(227,30,36,.4);
            color: var(--brand);
        }

        /* ── Toolbar ── */
        .sp-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border-radius: 12px;
            border: 1px solid var(--line);
            padding: 11px 16px;
            margin-bottom: 18px;
            gap: 12px;
            flex-wrap: wrap;
        }

        .sp-toolbar-left,
        .sp-toolbar-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sp-mob-filter-btn {
            display: none;
            align-items: center;
            gap: 6px;
            background: var(--brand);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 7px 14px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.18s;
        }

        .sp-mob-filter-btn:hover {
            background: var(--brand-dk);
        }

        .sp-result-count {
            font-size: 0.81rem;
            color: var(--muted);
        }

        .sp-result-count b {
            color: var(--ink);
        }

        .sp-view-btns {
            display: flex;
            border: 1.5px solid var(--line);
            border-radius: 8px;
            overflow: hidden;
        }

        .sp-view-btn {
            background: none;
            border: none;
            padding: 6px 11px;
            color: var(--muted);
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.15s;
            line-height: 1;
        }

        .sp-view-btn.active,
        .sp-view-btn:hover {
            background: var(--brand);
            color: #fff;
        }

        .sp-sort-wrap {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .sp-sort-label {
            font-size: 0.8rem;
            color: var(--muted);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .sp-sort-hidden {
            display: none;
        }

        .sp-sort-btn-wrap {
            position: relative;
        }

        .sp-sort-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 11px;
            border: 1.5px solid var(--line);
            border-radius: 10px;
            background: #fff;
            font-family: inherit;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer;
            white-space: nowrap;
            transition: border-color 0.18s, box-shadow 0.18s;
            min-width: 162px;
        }

        .sp-sort-btn:hover,
        .sp-sort-btn.open {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
        }

        .s-sort-ic {
            font-size: 0.82rem;
            flex-shrink: 0;
        }

        .sp-sort-arr {
            font-size: 0.68rem;
            color: var(--muted);
            margin-left: auto;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .sp-sort-arr.flipped {
            transform: rotate(180deg);
        }

        .sp-sort-drop {
            position: absolute;
            top: calc(100% + 7px);
            right: 0;
            min-width: 210px;
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 14px;
            box-shadow: 0 14px 44px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.05);
            z-index: 500;
            padding: 6px;
        }

        .sp-sort-opt {
            display: flex;
            align-items: center;
            gap: 9px;
            width: 100%;
            padding: 8px 10px;
            border: none;
            background: transparent;
            border-radius: 9px;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.85rem;
            color: var(--ink);
            text-align: left;
            transition: background 0.13s;
        }

        .sp-sort-opt:hover {
            background: #f6f6f6;
        }

        .sp-sort-opt.active {
            background: #fff5f5;
            color: var(--brand);
            font-weight: 600;
        }

        /* ── Shop Grid ── */
        .sp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .sp-grid .df-card {
            flex: none;
            width: 100%;
            scroll-snap-align: none;
        }

        /* ── Pagination ── */
        .sp-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .sp-page-btn {
            min-width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid var(--line);
            border-radius: 9px;
            background: #fff;
            color: var(--ink);
            font-size: 0.84rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.18s;
            padding: 0 12px;
            text-decoration: none;
            font-family: inherit;
        }

        .sp-page-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
        }

        .sp-page-btn.active {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            font-weight: 700;
        }

        .sp-page-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .sp-page-btn:disabled:hover {
            border-color: var(--line);
            color: var(--ink);
        }

        /* ── Mobile Filter Offcanvas ── */
        .sp-filter-drawer .offcanvas-header {
            background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
            padding: 16px 18px;
        }

        .sp-filter-drawer .offcanvas-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sp-filter-drawer .offcanvas-body {
            padding: 0;
            background: #fff;
        }

        /* Price presets in mobile drawer */
        .sp-filter-drawer .sp-price-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            padding: 4px 0 2px;
        }

        /* Categories in mobile drawer */
        .sp-filter-drawer .sp-filter-title {
            padding: 14px 18px 6px;
            border-bottom: none;
        }

        .sp-filter-drawer .sp-price-wrap {
            padding: 4px 18px 16px;
        }

        .sp-filter-drawer .sp-clear-btn {
            display: flex;
            width: calc(100% - 36px);
            margin: 4px 18px 18px;
            padding: 10px;
            justify-content: center;
            border-radius: 10px;
            font-size: 0.82rem;
        }

        /* ── Responsive ── */
        @media (max-width: 991.98px) {
            .sp-layout {
                grid-template-columns: 1fr;
            }

            .sp-sidebar {
                display: none;
            }

            .sp-mob-filter-btn {
                display: inline-flex;
            }

            .sp-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .sp-breadcrumb-bar { padding: 10px 0; }
            .sp-bc-inner { gap: 8px; }
            .sp-bc-title { font-size: 0.95rem; gap: 6px; }
            .sp-bc-title i { font-size: 0.88rem; }
            .sp-bc-nav { font-size: 0.72rem; gap: 5px; }
            .sp-bc-nav a { gap: 3px; }
            .sp-bc-nav i.bi-chevron-right { font-size: 0.55rem; }

            .sp-section {
                padding: 14px 0 32px;
            }

            .sp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .sp-toolbar {
                gap: 10px;
            }

            .sp-toolbar-left {
                gap: 8px;
            }

            .sp-toolbar-right {
                gap: 8px;
            }

            .sp-sort-label {
                display: none;
            }

            .sp-sort-btn {
                min-width: 130px;
                font-size: 0.8rem;
                padding: 6px 10px;
            }

            .sp-result-count {
                font-size: 0.78rem;
            }

            .sp-pagination {
                margin-top: 22px;
            }

            .sp-page-btn {
                min-width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }

            /* Card buttons: smaller on tablet portrait */
            .sp-grid .df-cart-btn,
            .sp-grid .df-buynow-btn {
                font-size: 0.75rem;
                padding: 8px 6px;
                min-height: 36px;
                gap: 4px;
            }
        }

        /* ── Category Filter Buttons (sidebar) ── */
        .sp-cat-list,
        .sp-cat-list-mob {
            list-style: none;
            padding: 2px 12px 12px;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        /* ── Category Tabs (above grid) ── */
        /* ── Category Tag on Cards ── */
        .sp-cat-tag {
            display: inline-flex;
            align-self: flex-start;
            align-items: center;
            padding: 2px 8px;
            border-radius: 5px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-bottom: 5px;
        }

        /* ── Card Rating ── */
        .sp-card-rating {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: 4px;
            margin: 3px 0 7px;
            min-width: 0;
        }

        .sp-card-stars {
            display: flex;
            gap: 1px;
            font-size: 0.62rem;
            color: #f59e0b;
        }

        .sp-card-stars .bi-star {
            color: #d1d5db;
        }

        .sp-card-rating-val {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--ink);
            line-height: 1;
        }

        .sp-card-reviews {
            font-size: 0.67rem;
            color: var(--muted-lt);
            line-height: 1;
            white-space: nowrap;
        }

        /* ── Pagination dots ── */
        .sp-page-dots {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            color: var(--muted-lt);
            font-size: 0.9rem;
        }

        /* ── List View ── */
        .sp-grid.sp-list-view {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .sp-grid.sp-list-view .df-card {
            display: flex;
            flex-direction: row;
            min-height: 220px;
            border-radius: 18px;
            transition: transform 0.22s, box-shadow 0.22s;
        }

        .sp-grid.sp-list-view .df-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }

        .sp-grid.sp-list-view .df-img {
            width: 280px;
            flex-shrink: 0;
            aspect-ratio: unset;
            height: auto;
            min-height: 220px;
            margin: 0;
            border-radius: 18px 0 0 18px;
            background: #f8f8f8;
        }

        .sp-grid.sp-list-view .df-img img {
            height: 100%;
            object-fit: contain;
            padding: 16px;
        }

        .sp-grid.sp-list-view .badge-wrapper {
            width: 72px;
            height: 72px;
            top: 8px;
            left: 8px;
        }

        .sp-grid.sp-list-view .badge-text {
            font-size: 17px;
        }

        .sp-grid.sp-list-view .df-body {
            flex: 1;
            min-width: 0;
            padding: 20px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 4px;
        }

        .sp-grid.sp-list-view .sp-cat-tag {
            align-self: flex-start;
            font-size: 0.65rem;
            padding: 3px 10px;
            margin-bottom: 4px;
        }

        .sp-grid.sp-list-view .df-name {
            font-size: 1.05rem;
            font-weight: 700;
            -webkit-line-clamp: unset;
            line-clamp: unset;
            white-space: normal;
            width: 100%;
            color: var(--ink);
            line-height: 1.4;
        }

        .sp-grid.sp-list-view .sp-card-rating {
            margin: 4px 0 6px;
            gap: 6px;
        }

        .sp-grid.sp-list-view .sp-card-stars {
            font-size: 0.72rem;
        }

        .sp-grid.sp-list-view .sp-card-rating-val {
            font-size: 0.82rem;
        }

        .sp-grid.sp-list-view .sp-card-reviews {
            font-size: 0.76rem;
        }

        .sp-grid.sp-list-view .df-prices {
            width: 100%;
            margin-top: 2px;
        }

        .sp-grid.sp-list-view .df-now {
            font-size: 1.2rem;
        }

        .sp-grid.sp-list-view .df-old {
            font-size: 0.85rem;
        }

        .sp-grid.sp-list-view .df-btn-group {
            width: 100%;
            max-width: 380px;
            margin-top: 10px;
            padding-top: 0;
            gap: 10px;
        }

        .sp-grid.sp-list-view .df-cart-btn,
        .sp-grid.sp-list-view .df-buynow-btn {
            min-height: 42px;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 10px;
        }

        @media (max-width: 575.98px) {
            .sp-grid.sp-list-view .df-card {
                min-height: 130px;
            }

            .sp-grid.sp-list-view .df-img {
                width: 110px;
                min-height: 130px;
            }

            .sp-grid.sp-list-view .df-body {
                padding: 10px 12px;
            }

            .sp-grid.sp-list-view .df-name {
                font-size: 0.88rem;
            }
        }

        @media (max-width: 480px) {
            /* List view: stack buttons vertically to prevent overflow */
            .sp-grid.sp-list-view .df-btn-group {
                flex-direction: column;
                gap: 5px;
                max-width: 100%;
                width: 100%;
            }

            .sp-grid.sp-list-view .df-cart-btn,
            .sp-grid.sp-list-view .df-buynow-btn {
                width: 100%;
                min-height: 32px;
                font-size: 0.7rem;
                padding: 6px 8px;
                justify-content: center;
            }

            .sp-grid.sp-list-view .df-img {
                width: 130px;
                min-height: 150px;
            }

            .sp-grid.sp-list-view .df-card {
                min-height: 150px;
            }

            .sp-grid.sp-list-view .df-body {
                padding: 10px 12px;
            }

            .sp-grid.sp-list-view .df-name {
                font-size: 0.82rem;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                overflow: hidden;
                display: -webkit-box;
                -webkit-box-orient: vertical;
            }
        }

        /* ══ Shop page: Small mobile (≤480px) card & layout fixes ══ */
        @media (max-width: 480px) {
            /* Toolbar: 2 rows */
            .sp-toolbar {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                padding: 10px 12px;
            }

            /* Row 1: [Filters] [All Categories ▼] */
            .sp-toolbar-left {
                width: 100%;
                justify-content: flex-start;
                gap: 8px;
            }

            .sp-cat-dd {
                flex: 1;
            }

            .sp-cat-dd-btn {
                width: 100%;
                min-width: 0;
                font-size: 0.78rem;
                padding: 7px 10px;
            }

            /* Row 2: [Showing X of Y] [view] [sort] */
            .sp-toolbar-right {
                width: 100%;
                justify-content: space-between;
                gap: 8px;
            }

            .sp-result-count {
                font-size: 0.72rem;
                flex: 1;
            }

            .sp-sort-wrap {
                flex-shrink: 0;
            }

            .sp-sort-btn-wrap {
                flex-shrink: 0;
            }

            .sp-sort-btn {
                font-size: 0.76rem;
                min-width: 0;
                padding: 6px 9px;
            }

            /* Image: shorter box so the card isn't so tall (object-fit:contain keeps the photo whole) */
            .sp-grid .df-img {
                aspect-ratio: 1.2;
                margin: 6px 6px 0;
            }

            /* Card body: tighter padding */
            .sp-grid .df-body {
                padding: 8px 9px 9px;
            }

            /* Category tag: smaller */
            .sp-grid .sp-cat-tag {
                font-size: 0.55rem;
                padding: 1px 5px;
                margin-bottom: 3px;
            }

            /* Product name: smaller */
            .sp-grid .df-name {
                font-size: 0.77rem;
                min-height: 0;
                margin-top: 2px;
                line-height: 1.3;
            }

            /* Rating: compact */
            .sp-grid .sp-card-rating {
                gap: 3px;
                margin: 2px 0 5px;
            }

            .sp-grid .sp-card-stars {
                font-size: 0.56rem;
            }

            .sp-grid .sp-card-rating-val {
                font-size: 0.66rem;
            }

            .sp-grid .sp-card-reviews {
                display: inline;
                font-size: 0.6rem;
            }

            /* Price: smaller */
            .sp-grid .df-now {
                font-size: 0.88rem;
            }

            .sp-grid .df-old {
                font-size: 0.67rem;
            }

            /* Buttons: stack vertically */
            .sp-grid .df-btn-group {
                flex-direction: column;
                gap: 5px;
                margin-top: 6px;
            }

            .sp-grid .df-cart-btn,
            .sp-grid .df-buynow-btn {
                width: 100%;
                min-height: 30px;
                font-size: 0.68rem;
                padding: 5px 6px;
                gap: 3px;
                justify-content: center;
                border-radius: 8px;
            }

            /* Mob filter button: compact */
            .sp-mob-filter-btn {
                font-size: 0.78rem;
                padding: 7px 12px;
            }
        }

        /* ══ Shop page: Extra small (≤390px) ══ */
        @media (max-width: 390px) {
            .sp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .sp-grid .df-body {
                padding: 7px 8px 8px;
            }

            .sp-grid .df-name {
                font-size: 0.73rem;
            }

            .sp-grid .df-now {
                font-size: 0.82rem;
            }

            .sp-grid .df-cart-btn,
            .sp-grid .df-buynow-btn {
                font-size: 0.64rem;
                min-height: 28px;
                padding: 4px 5px;
            }
        }

        /* ══ Shop page: Very small (≤320px) ══ */
        @media (max-width: 320px) {
            .sp-grid {
                grid-template-columns: 1fr;
            }
        }


/* ══════════════════════════════════════════
   PAGE SHARED UTILITIES
   Common components reused across all pages
══════════════════════════════════════════ */

/* ── Dark hero base ── */
.pg-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.pg-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

/* ── Eyebrow badge ── */
.pg-eyebrow {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 20px;
}
.pg-eyebrow-dot {
    border-radius: 50%;
    flex-shrink: 0;
    animation: pgPulse 2s ease-in-out infinite;
}
@keyframes pgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(1.5); }
}

/* ── Gradient text accent ── */
.pg-text-accent {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section header ── */
.pg-sec-head  { text-align: center; margin-bottom: 28px; }
.pg-sec-title { font-size: 1.4rem; font-weight: 900; color: #111827; margin: 0 0 8px; }
.pg-sec-sub   { font-size: .82rem; color: #6b7280; margin: 0; line-height: 1.6; }

/* ── Breadcrumb ── */
.pg-breadcrumb {
    background: #fff;
    border-bottom: 1.5px solid #e8eaf0;
    padding: 10px 0;
}
.pg-bc-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: #9ca3af;
    flex-wrap: wrap;
}
.pg-bc-nav a             { color: #6b7280; }
.pg-bc-nav a:hover       { color: #e31e24; }
.pg-bc-nav > i           { font-size: .6rem; }
.pg-bc-nav > span        { color: #e31e24; font-weight: 700; }

/* ── Empty state ── */
.pg-empty       { text-align: center; padding: 56px 24px; }
.pg-empty-ic    { font-size: 2.8rem; opacity: .35; margin-bottom: 14px; color: #9ca3af; }
.pg-empty-title { font-size: .95rem; font-weight: 800; color: #6b7280; margin: 0 0 6px; }
.pg-empty-sub   { font-size: .78rem; color: #9ca3af; line-height: 1.65; }

/* ═══════════════════════════════════════
   Shared pagination (vendor.pagination.frontend) — used by Shop, New Arrivals, etc.
═══════════════════════════════════════ */
.pg-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.pg-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 7px;
    border-radius: 11px;
    border: 1.5px solid var(--line, #e5e7eb);
    background: #fff;
    color: #374151;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.pg-item a.pg-link:hover {
    border-color: #c9a24b;
    color: #92400e;
    background: #fef9ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(201,162,75,.18);
}
.pg-active .pg-link {
    background: linear-gradient(135deg, #d4af5a, #b8923f);
    border-color: #b8923f;
    color: #fff;
    box-shadow: 0 6px 16px rgba(201,162,75,.35);
    cursor: default;
}
.pg-disabled .pg-link {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #eef0f3;
    cursor: not-allowed;
    box-shadow: none;
}
.pg-dots .pg-link {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: #9ca3af;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: default;
}
.pg-link i { font-size: .8rem; }

@media (max-width: 479px) {
    .pg-list { gap: 5px; }
    .pg-link { min-width: 36px; height: 36px; border-radius: 10px; font-size: .82rem; }
}

/* ═══════════════════════════════════════════════
   Compact product cards on phones — reduce card height.
   Placed last so it wins over the earlier "PREMIUM UI OVERRIDES".
   Image keeps object-fit:contain, so a shorter box never crops it.
═══════════════════════════════════════════════ */
@media (max-width: 575px) {
    .df-img {
        aspect-ratio: 1.25;
        margin: 6px 6px 0;
    }
    .df-body {
        padding: 8px 11px 11px;
    }
    .df-name {
        font-size: 0.84rem;
        margin-bottom: 4px;
    }
    .df-rating {
        margin-bottom: 4px;
    }
    .df-prices {
        margin-bottom: 7px;
    }
    .df-now {
        font-size: 1.05rem;
    }
    .df-btn-group {
        gap: 5px;
    }
    .df-cart-btn,
    .df-buynow-btn {
        min-height: 34px;
        padding: 7px 10px;
    }
}

