*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --accent: #e85d26;
    --accent-light: #fef3ed;
    --accent-dark: #c44d1c;
    --gold: #f59e0b;
    --surface: #ffffff;
    --surface2: #f8f7f4;
    --surface3: #f1ede8;
    --text: #0f172a;
    --text2: #475569;
    --text3: #94a3b8;
    --border: #e2e8f0;
    --border2: #cbd5e1;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--surface2);
    font-size: 15px;
    line-height: 1.6
}

/*  UTILITY  */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap
}

.btn-primary {
    background: var(--accent);
    color: #fff
}

.btn-primary:hover {
    background: var(--accent-dark)
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border2)
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.btn-ghost {
    background: transparent;
    color: var(--text2);
    border: none;
    padding: 8px 14px
}

.btn-ghost:hover {
    background: var(--surface3);
    color: var(--text)
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: var(--accent-light);
    color: var(--accent)
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.section-sub {
    color: var(--text2);
    font-size: 15px;
    margin-bottom: 32px
}

.star {
    color: var(--gold);
    font-size: 13px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

/* NAVBAR */
.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    min-height: 70px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

.desktop-nav {
    flex: 1;
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }
}

.nav-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 16px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    border: none;
    background: transparent;
    font-family: inherit;
    height: 100%;
}

.nav-link:hover, .nav-item.hover-active>.nav-link, .nav-item.touch-active>.nav-link {
    color: var(--accent);
    background: var(--surface2);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.2s;
}

.nav-item.hover-active>.nav-link svg, .nav-item.touch-active>.nav-link svg {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    min-width: 680px;
    z-index: 999;
    padding: 28px 32px;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.nav-item.hover-active .mega-menu, .nav-item.touch-active .mega-menu {
    display: grid;
}

.mega-col {
    min-width: 0;
}

.mega-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text3);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.mega-banner {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 2px;
}

.mega-link {
    display: block;
    padding: 8px 10px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text2);
    font-size: 14px;
    transition: all 0.2s;
}

.mega-link:hover {
    background: var(--surface2);
    color: var(--accent);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    min-width: 220px;
    z-index: 999;
    padding: 8px 0;
}

.nav-item.hover-active .dropdown, .nav-item.touch-active .dropdown {
    display: block;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text2);
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-link:hover {
    background: var(--surface2);
    color: var(--accent);
    padding-left: 26px;
}

.dropdown-link svg {
    width: 10px;
    height: 10px;
    transform: rotate(-90deg);
}

.nested-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--surface2);
    border-radius: var(--radius);
}

.has-nested:hover .nested-dropdown, .has-nested.touch-active .nested-dropdown {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px 0;
}

.has-nested>.dropdown-link svg {
    transform: rotate(-90deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s;
    text-decoration: none;
    color: var(--text);
    border: none;
    background: transparent;
    font-family: inherit;
    position: relative;
}

.icon-btn:hover {
    background: var(--surface2);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.7;
}

.icon-btn span {
    font-size: 10px;
    color: var(--text2);
    white-space: nowrap;
}

.badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--navy);
    border-radius: var(--radius);
    transition: background 0.2s;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: var(--surface2);
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--surface);
    z-index: 2000;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    padding: 0;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-drawer-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}

.mobile-drawer-brand img {
    height: 32px;
    width: auto;
}

.mobile-drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text2);
    border-radius: var(--radius);
    transition: background 0.2s;
}

.mobile-drawer-close:hover {
    background: var(--surface2);
}

.mobile-drawer-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.mobile-drawer-body {
    padding: 12px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link, .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    text-align: left;
}

.mobile-nav-link:hover, .mobile-nav-toggle:hover {
    background: var(--surface2);
    color: var(--accent);
}

.mobile-nav-toggle svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: transform 0.2s;
}

.mobile-nav-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-sub-nav {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--surface2);
}

.mobile-sub-nav.open {
    display: block;
}

.mobile-sub-nav .mobile-nav-link, .mobile-sub-nav .mobile-nav-toggle {
    padding-left: 36px;
    font-weight: 400;
    font-size: 14px;
}

.mobile-sub-nav .mobile-sub-nav .mobile-nav-link, .mobile-sub-nav .mobile-sub-nav .mobile-nav-toggle {
    padding-left: 52px;
    font-size: 13px;
}

.mobile-nav-link.mobile-child {
    padding-left: 36px;
    font-weight: 400;
    font-size: 14px;
}

.mobile-nav-toggle.nested svg {
    transform: rotate(-90deg);
}

.mobile-nav-toggle.nested.active svg {
    transform: rotate(0deg);
}

.mobile-col-title {
    padding: 10px 20px 6px 36px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text3);
    border-bottom: 1px solid var(--border);
    margin-top: 8px;
}

.mobile-banner {
    width: 100%;
    height: auto;
    padding: 8px 20px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1023px) {
    .header-inner {
        gap: 12px;
    }

    .logo img {
        height: 32px;
    }

    .icon-btn span {
        display: none;
    }

    .icon-btn {
        padding: 6px 10px;
    }

    .icon-btn svg {
        width: 24px;
        height: 24px;
    }

    .badge {
        top: 0;
        right: 4px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .topbar-items {
        font-size: 11px;
        gap: 8px;
    }

    .header .container {
        padding: 0 12px;
    }

    .header-inner {
        min-height: 60px;
        gap: 8px;
    }

    .logo img {
        height: 28px;
    }

    .mobile-drawer {
        width: 280px;
        max-width: 80vw;
    }
}

/* NAVBAR SEARCH */
.navbar-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 10px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s all ease;
    transform: translate(0px, -80px);
    align-items: start;
}

.navbar-search.open {
    visibility: visible;
    opacity: 1;
    transform: translate(0px, 0px);
    pointer-events: all;
    height: 100%;
}

.navbar-search-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.navbar-search-overlay {
    position: fixed;
    background-color: #00000059;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: 0.1s all ease;
}

.navbar-search-container {
    max-width: 1280px;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 0px 11px 2px #00000021;
    border-radius: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.search-starter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 0px;
    text-align: center;
}

.navbar-search-input {
    display: flex;
    position: relative;
    min-height: 60px;
}

.navbar-search-input>span {
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 10px;
    color: var(--text2);
}

.navbar-search-input>input {
    width: 100%;
    padding-left: 50px;
    border-radius: 10px 10px 0px 0px;
    border-bottom: 1px solid var(--text2);
    padding-right: 50px;
    outline: none;
    font-size: 20px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.navbar-search-input>button {
    position: absolute;
    right: 0px;
    height: 100%;
    background-color: transparent;
    width: 50px;
    border: none;
    color: var(--text2);
}

.navbar-search-results>a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px;
    text-decoration: none;
    color: inherit;
}

.navbar-search-results {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 75dvh;
}

.navbar-search-results>a>div>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navbar-search-results>a>div:first-child {
    width: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    flex-shrink: 0;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.navbar-search-results>a>div:last-child {
    display: flex;
    flex-direction: column;
}

.navbar-search-results>a>div:last-child>span {
    font-size: 10px;
}

.navbar-search-results>a>div:last-child>strong {
    font-size: 14px;
}

.navbar-search-results>a>div:last-child>p {
    margin: 0px;
    font-size: 12px;
}

/*  SPLIT BANNERS  */
.split-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.split-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 32px
}

.split-banner-1 {
    background: linear-gradient(135deg, #1a1a2e, #16213e)
}

.split-banner-2 {
    background: linear-gradient(135deg, #2d1b00, #4a2c00)
}

.split-banner-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px
}

.split-banner-1 .split-banner-tag {
    color: #818cf8
}

.split-banner-2 .split-banner-tag {
    color: var(--gold)
}

.split-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25
}

.split-banner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px
}

.split-banner-deco {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 72px;
    opacity: .15
}

/* CATEGORY PILLS*/
.cats {
    display: flex;
    gap: 10px;
    padding: 20px 0px;
    justify-content: center;
    flex-wrap: wrap;
}

.cats::-webkit-scrollbar {
    display: none
}

.cat-pill {
    flex-direction: column;
    gap: 0px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    min-width: 120px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

.cat-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.2s;
    padding: 15px;
}

.cat-pill>span {
    font-weight: bold;
}

.cat-icon>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cat-pill:hover .cat-icon, .cat-pill.active .cat-icon {
    border-color: var(--accent);
    background: var(--accent-light)
}

.cat-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text2)
}

@media (max-width: 600px) {
    .cats {
        gap: 2%;
        justify-content: start;
    }

    .cat-pill {
        width: 23%;
        margin-bottom: 0px;
        min-width: auto;
    }

    .cat-icon {
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }
}

/*  STORE CARDS  */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px
}

.store-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: transparent
}

.store-banner {
    position: relative;
    min-height: 155px;
}

.store-logo {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 3px solid var(--surface);
    background: var(--surface);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    z-index: 999;
}

.store-body {
    padding: 32px 20px 20px
}

.store-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--navy)
}

.store-meta {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 4px
}

.store-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.store-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--surface2);
    color: var(--text2)
}

.store-products-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 14px
}

.store-prod-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface2)
}

.store-prod-thumb img, .store-prod-thumb .thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px
}

.store-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.store-footer-stat {
    font-size: 12px;
    color: var(--text3)
}

.store-footer-stat strong {
    color: var(--text);
    font-size: 13px
}

.store-banner-image {
    width: 100%;
    display: flex;
}

.store-banner-image>img {
    max-width: 100%;
}

/*  PRODUCT CARDS  */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: transparent
}

.product-img {
    position: relative;
    height: 200px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    overflow: hidden;
    object-fit: contain;
}

.product-img>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px
}

.product-badge.new {
    background: #10b981
}

.product-badge.hot {
    background: #f59e0b
}

.product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px
}

.product-wishlist:hover {
    background: var(--accent);
    border-color: var(--accent)
}

.product-body {
    padding: 14px
}

.product-store {
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 4px
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.4
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px
}

.product-rating span {
    font-size: 12px;
    color: var(--text2)
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.product-price .current {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy)
}

.product-price .old {
    font-size: 13px;
    color: var(--text3);
    text-decoration: line-through
}

.product-price .disc {
    font-size: 12px;
    color: #10b981;
    font-weight: 600
}

.add-to-cart {
    width: 100%;
    padding: 9px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s
}

.add-to-cart:hover {
    background: var(--accent)
}

/*  FULL PROMO BANNER  */
.promo-banner-full {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 8px 0 40px;
    position: relative;
    min-height: 220px;
    background: linear-gradient(120deg, #0f172a 55%, #1e3a5f)
}

.promo-banner-full-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
    min-height: 220px;
    position: relative;
    z-index: 1
}

.promo-banner-full-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2
}

.promo-banner-full-text p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 22px
}

.promo-deco {
    font-size: 120px;
    line-height: 1;
    opacity: .08;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%)
}

/*  TRIPLE BANNERS  */
.triple-banners {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px
}

.triple-banner {
    border-radius: var(--radius-lg);
    padding: 0px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.triple-banner .deco {
    width: 100%;
}

.tb-1 {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6)
}

/*  NEWSLETTER  */
.newsletter {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    margin: 40px 0
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px
}

.newsletter p {
    color: #64748b;
    margin-bottom: 28px;
    font-size: 15px
}

.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.1)
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: inherit
}

.newsletter-form input::placeholder {
    color: #475569
}

.newsletter-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.2s
}

.newsletter-form button:hover {
    background: var(--accent-dark)
}

/*  FOOTER  */
footer {
    background: var(--navy);
    color: #64748b;
    padding: 56px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand .logo {
    margin-bottom: 14px;
    display: block
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent)
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 16px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px
}

.payment-badges {
    display: flex;
    gap: 8px
}

.pay-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em
}

/*  MOBILE MENU  */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2
}

.mobile-nav {
    display: none;
    background: var(--navy);
    padding: 16px
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--radius);
    transition: all 0.2s
}

.mobile-nav-link:hover {
    background: var(--navy-light);
    color: #fff
}

/*  TABS  */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
    overflow-y: auto;
}

.tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent)
}

.tab:hover {
    color: var(--navy)
}

/*  RESPONSIVE  */
@media(max-width: 1024px) {
    .hero h1 {
        font-size: 36px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .triple-banners {
        grid-template-columns: 1fr 1fr
    }

    .triple-banner:last-child {
        grid-column: span 2
    }
}

@media(max-width: 768px) {
    .topbar .topbar-right {
        display: none
    }

    .search-bar {
        max-width: 100%;
        order: 3;
        width: 100%
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 12px
    }

    .mobile-menu-btn {
        display: block
    }

    nav {
        display: none
    }

    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .hero-content {
        padding: 40px 0
    }

    .hero h1 {
        font-size: 32px
    }

    .split-banners {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .triple-banners {
        grid-template-columns: 1fr
    }

    .triple-banner:last-child {
        grid-column: auto
    }

    .promo-banner-full-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px
    }

    .promo-banner-full-text h2 {
        font-size: 26px
    }

    .newsletter {
        padding: 32px 20px
    }

    .section-title {
        font-size: 24px
    }
}

@media(max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .products-grid {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .products-grid>.product-card {
        min-width: 190px;
    }

    .stores-grid {
        grid-template-columns: 1fr
    }
}

/* UNIVERSAL CART SECTION */
/* QUANTITY BUTTON  */
.bc-cart-input {
    display: flex;
    gap: 15px;
    border: 1px solid #ddd;
    background-color: black;
    color: #fff;
    flex: 1;
}

.bc-cart-input>button {
    padding: 10px 25px;
    background: transparent;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease 0.5s;
    fill: #fff;
    border: none;
}

.bc-cart-input>input {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    width: 100%;
    flex: 1;
}

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

/* Drawer Header */
.cart-drawer-header {
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    color: #6b7280;
    border-radius: 50%;
}

.cart-close-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

/* Drawer Body (Empty State) */
.cart-drawer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cart-empty-icon {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.cart-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-empty-text {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cart-shop-btn {
    background: #000000;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: transform 0.1s;
}

.cart-shop-btn:active {
    transform: scale(0.98);
}

/* Drawer Footer */
.cart-drawer-footer {
    border-top: 1px solid #e5e7eb;
    background: #fafafa;
}

/* CART CSS */
.cart-item-list {
    overflow-y: auto;
    flex: 1;
}

.cart-item {
    display: flex;
    flex-direction: column;
    padding: 12px 12px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-top {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.cart-item-img {
    width: 54px;
    height: 54px;
    background: #f4f4f4;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
    width: 100%;
}

/* Tax and Discount Breakdown */
.cart-item-tax-breakdown {
    background: #fafafa;
    border-radius: 6px;
    padding: 6px 8px;
    margin-top: 4px;
    font-size: 0.65rem;
    line-height: 1.4;
    color: #666;
}

.cart-tax-row {
    display: flex;
    justify-content: space-between;
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    color: #27ae60;
    font-weight: 600;
    margin-top: 2px;
    border-top: 1px dashed #ddd;
    padding-top: 2px;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-price-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #7f44db;
    font-weight: 800;
}

.cart-item-old-price {
    font-size: 0.7rem;
    text-decoration: line-through;
    color: #aaa;
}

/* Quantity Controls */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 2px;
    border-radius: 6px;
}

.cart-qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f44db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cart-qty-btn svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

.cart-qty-input {
    width: 28px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    outline: none;
}

.cart-remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff4d4d;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

/* Coupon Section */
.cart-coupon-section {
    padding: 12px;
    background: #f9f7ff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-coupon-apply {
    display: flex;
    gap: 5px;
}

.cart-coupon-input {
    flex-grow: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.75rem;
    outline: none;
}

.cart-coupon-btn {
    background: #7f44db;
    color: white;
    border: none;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

/* Applied Coupon (Detailed) */
.cart-coupon-applied {
    background: rgba(127, 68, 219, 0.08);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(127, 68, 219, 0.2);
    position: relative;
}

.cart-coupon-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cart-coupon-info {
    flex-grow: 1;
}

.cart-coupon-tag {
    background: #7f44db;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 4px;
}

.cart-coupon-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7f44db;
}

.cart-coupon-desc {
    display: block;
    font-size: 0.65rem;
    color: #6a538d;
    margin-top: 2px;
}

.cart-coupon-remove {
    color: #ff4d4d;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.cart-coupon-pill {
    display: inline-block;
    background: #fff;
    border: 1px solid #7f44db;
    color: #7f44db;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 0.65rem;
}

/* Summary */
.cart-summary {
    padding: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #666;
}

.cart-summary-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #7f44db, #a26df0);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    cursor: pointer;
}

.cart-item-list::-webkit-scrollbar {
    width: 4px;
}

.cart-item-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-item-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.cart-start-shopping-btn {
    background: linear-gradient(135deg, #7f44db, #a26df0);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    cursor: pointer;
}