@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --primary: #171a84;
    --primary-light: #2428a8;
    --primary-pale: #eeeffe;
    --accent: #e8a020;
    --accent-light: #fef3dc;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --text-light: #888;
    --surface: #fff;
    --surface-2: #f5f5fd;
    --surface-3: #ebebfa;
    --border: #ddddf0;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow: 0 2px 16px rgba(23, 26, 132, 0.07);
    --shadow-hover: 0 6px 28px rgba(23, 26, 132, 0.13);
}

a.product-name {
    text-decoration: none;
    display: block
}

.product-footer form {
    margin: 0
}

.product-subscribe form {
    margin: 0
}

.wishlist-btn {
    border: 0;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-weight: 600;
    padding: 0;
    cursor: pointer
}

/* Shop listing template */
.page-hero {
    background: var(--primary-pale);
    padding: 44px 24px;
    border-bottom: 1px solid var(--border)
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px
}

.breadcrumb,
.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px
}

.breadcrumb a,
.breadcrumb-inner a {
    color: var(--primary);
    text-decoration: none
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.04;
    color: var(--text)
}

.page-hero h1 em {
    color: var(--primary);
    font-style: italic
}

.page-hero-meta {
    margin-top: 10px;
    color: var(--text-muted)
}

.product-count-badge {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    box-shadow: var(--shadow)
}

.product-count-badge span {
    font-weight: 800;
    color: var(--primary)
}

.cat-circles-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 0
}

.cat-circles-inner {
    max-width: 1280px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 24px
}

.cat-circles-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap
}

.cat-circles-row {
    display: flex;
    gap: 18px;
    min-width: max-content
}

.cat-circle-item {
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 92px
}

.cat-circle-img-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative
}

.cat-circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cat-circle-item.active .cat-circle-img-wrap {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-pale)
}

.cat-circle-emoji {
    font-size: 13px;
    color: #fff;
    font-weight: 700
}

.cat-circle-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25
}

.shop-toolbar {
    position: sticky;
    top: 0;
    z-index: 12;
    background: #fff;
    border-bottom: 1px solid var(--border)
}

.shop-toolbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

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

.filter-btn,
.sort-select,
.shop-search {
    height: 40px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 0 14px;
    font: inherit;
    font-size: 13px;
    color: var(--text)
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600
}

.shop-search {
    min-width: 220px
}

.result-count {
    font-size: 13px;
    color: var(--text-muted)
}

.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .32);
    z-index: 30
}

.filter-overlay.active {
    display: block
}

.filter-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(390px, 92vw);
    height: 100vh;
    background: #fff;
    z-index: 31;
    transform: translateX(100%);
    transition: transform .24s ease;
    box-shadow: -18px 0 40px rgba(0, 0, 0, .18);
    overflow: auto
}

.filter-drawer.active {
    transform: translateX(0)
}

.filter-drawer-head,
.filter-drawer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border)
}

.filter-drawer-foot {
    border-top: 1px solid var(--border);
    border-bottom: 0;
    position: sticky;
    bottom: 0;
    background: #fff
}

.close-drawer {
    border: 0;
    background: var(--surface-2);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer
}

.filter-section {
    padding: 20px;
    border-bottom: 1px solid var(--border)
}

.filter-section h4 {
    font-size: 14px;
    margin-bottom: 12px
}

.filter-options {
    display: grid;
    gap: 10px
}

.filter-option {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: center
}

.drawer-search,
.drawer-sort {
    width: 100%
}

.shop-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px 56px
}

.deal-strip,
.bundle-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 18px
}

.deal-strip {
    background: var(--primary);
    color: #fff
}

.deal-strip-left,
.bundle-text {
    display: flex;
    align-items: center;
    gap: 14px
}

.deal-fire,
.bundle-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .16);
    font-weight: 800
}

.deal-text strong,
.bundle-text strong {
    display: block
}

.deal-text span,
.bundle-text p {
    display: block;
    font-size: 13px;
    opacity: .8;
    margin: 2px 0 0
}

.deal-cta,
.bundle-cta {
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    background: var(--accent);
    color: #fff
}

.bundle-callout {
    background: var(--accent-light);
    border: 1px solid #f5d99a
}

.bundle-icon {
    background: #fff;
    color: var(--accent)
}

.bundle-cta {
    background: var(--primary)
}

.cat-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 2px
}

.cat-section-label {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary)
}

.cat-section-line {
    height: 1px;
    background: var(--border);
    flex: 1
}

.product-card .wishlist-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--border);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow)
}

.product-card .product-img {
    position: relative
}

.quick-add {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    padding: 9px 12px;
    font-weight: 700;
    font-size: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: .2s;
    cursor: pointer
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: none
}

.product-body a {
    text-decoration: none;
    color: inherit
}

.product-category-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 4px
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
    margin: 8px 0
}

.stars-sm,
.stars-lg,
.stars-xl {
    color: var(--accent)
}

.load-more-wrap {
    text-align: center;
    margin-top: 34px
}

.load-more-count {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px
}

/* Product detail template */
.breadcrumb-bar {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px
}

.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto
}

.pdp-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 60px
}

.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 42px;
    align-items: start
}

.gallery-wrap {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    position: sticky;
    top: 76px
}

.gallery-thumbs {
    display: grid;
    gap: 10px;
    align-content: start
}

.thumb {
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    padding: 0
}

.thumb.active {
    border-color: var(--primary)
}

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

.gallery-main {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.gallery-main img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: contain;
    padding: 24px
}

.gallery-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #e8433d;
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    z-index: 2
}

.gallery-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 21px;
    cursor: pointer;
    z-index: 2;
    color: var(--primary);
}

.zoom-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    color: var(--text-muted)
}

.share-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted)
}

.share-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary);
    border-radius: 999px;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700
}

.pdp-info h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    margin: 8px 0 14px;
    color: var(--text)
}

.product-cat-tag {
    display: inline-flex;
    background: var(--primary-pale);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    padding: 6px 12px
}

.rating-row,
.highlight-pills,
.price-row,
.upi-row,
.eco-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.rating-row {
    margin-bottom: 16px
}

.rating-num {
    font-weight: 800
}

.verified-badge,
.h-pill,
.upi-badge,
.eco-badge {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700
}

.highlight-pills {
    margin: 16px 0
}

.h-pill {
    background: var(--surface-2)
}

.h-pill-icon,
.eco-badge-icon {
    color: var(--primary);
    margin-right: 6px
}

.price-block {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin: 18px 0
}

.price-now {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary)
}

.price-was {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px
}

.price-save {
    background: #e8433d;
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800
}

.price-inclusive {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted)
}

.pricing-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.pricing-opt {
    text-align: left;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 12px;
    cursor: pointer
}

.pricing-opt.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-pale)
}

.pricing-opt span {
    display: block
}

.pricing-opt-label {
    font-weight: 800;
    font-size: 13px
}

.pricing-opt-price {
    color: var(--primary);
    font-weight: 900;
    margin-top: 4px
}

.pricing-opt-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px
}

.offers-box {
    border: 1px dashed var(--accent);
    background: var(--accent-light);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 18px
}

.offers-box h4 {
    margin-bottom: 8px;
    color: var(--accent)
}

.offer-item {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0
}

.qty-atc-row {
    display: flex;
    gap: 12px;
    margin: 18px 0
}

.qty-selector {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    height: 50px;
    background: #fff
}

.qty-btn {
    width: 44px;
    border: 0;
    background: #fff;
    font-size: 18px;
    cursor: pointer
}

.qty-num {
    width: 54px;
    border: 0;
    text-align: center;
    font-weight: 800
}

.btn-atc,
.btn-buy,
.sticky-atc-btn {
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    padding: 0 24px;
    min-height: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-buy {
    width: 100%;
    background: var(--accent);
    margin-bottom: 14px
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0
}

.trust-cell {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px
}

.trust-icon {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary)
}

.trust-cell-text strong,
.trust-cell-text span {
    display: block
}

.trust-cell-text strong {
    font-size: 13px
}

.trust-cell-text span {
    font-size: 12px;
    color: var(--text-muted)
}

.tabs-section {
    margin-bottom: 25px;
    margin-top: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff
}

.tabs-nav {
    display: flex;
    overflow: auto;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2)
}

.tab-btn {
    border: 0;
    background: transparent;
    padding: 16px 20px;
    font-weight: 800;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap
}

.tab-btn.active {
    background: #fff;
    color: var(--primary)
}

.tab-panel {
    display: none;
    padding: 24px
}

.tab-panel.active {
    display: block
}

.desc-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.spec-grid div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid var(--border)
}

.spec-grid span {
    color: var(--text-muted);
    font-size: 13px
}

.spec-grid strong {
    font-size: 13px
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden
}

.faq-q {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    font-weight: 800;
    cursor: pointer
}

.faq-a {
    display: none;
    padding: 0 14px 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px
}

.rev-big-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary)
}

.rev-stars-col span {
    display: block
}

.rev-total {
    font-size: 13px;
    color: var(--text-muted)
}

.write-review-btn {
    border: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800
}

.related-wrap {
    background: var(--surface-2);
    padding: 54px 24px
}

.related-inner {
    max-width: 1280px;
    margin: 0 auto
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px
}

.prod-card-mini {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative
}

.pcm-img {
    aspect-ratio: 1;
    background: var(--surface-2)
}

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

.pcm-body {
    padding: 14px
}

.pcm-cat {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800
}

.pcm-name {
    display: block;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.35;
    margin: 4px 0 8px
}

.pcm-stars {
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 10px
}

.pcm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.pcm-price {
    font-weight: 900;
    color: var(--primary)
}

.pcm-price del {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 4px
}

.pcm-atc {
    border: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    cursor: pointer
}

.sticky-atc {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 28;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    box-shadow: 0 -10px 24px rgba(0, 0, 0, .1);
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.sticky-atc-name {
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis
}

.sticky-atc-price {
    color: var(--primary);
    font-weight: 900
}

@media (max-width: 900px) {

    .page-hero-inner,
    .shop-toolbar-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .toolbar-right,
    .shop-search {
        width: 100%
    }

    .sort-select {
        flex: 1
    }

    .pdp-grid {
        grid-template-columns: 1fr
    }

    .gallery-wrap {
        position: static;
        grid-template-columns: 1fr
    }

    .gallery-thumbs {
        display: flex;
        overflow: auto;
        order: 2
    }

    .thumb {
        width: 72px;
        flex: 0 0 72px
    }

    .gallery-main {
        min-height: 360px
    }

    .trust-grid,
    .pricing-toggle {
        grid-template-columns: 1fr
    }

    .sticky-atc {
        display: flex
    }
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    font-size: 15px
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: var(--primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 16px;
    overflow: hidden;
    position: relative
}

.announcement-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 24s linear infinite
}

.announcement-track span {
    flex-shrink: 0
}

.announcement-track span::before {
    content: '✦ ';
    color: var(--accent)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* UTILITY BAR */
.utility-bar {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 6px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted)
}

.utility-bar a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s
}

.utility-bar a:hover {
    color: var(--primary)
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04)
}

/* .header-inner{max-width:1280px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:200px 1fr 200px;align-items:center;height:68px} */
.header-inner {
    width: min(1200px, 92%);
    margin: auto;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -.5px
}

.logo-text span {
    color: var(--accent);
    font-style: italic
}

nav {
    display: flex;
    justify-content: center;
    gap: 2px
}

nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 6px 13px;
    border-radius: var(--radius);
    transition: all .2s
}

nav a:hover {
    background: var(--primary-pale);
    color: var(--primary)
}

nav a.special {
    color: var(--primary);
    background: var(--primary-pale)
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px
}

.header-actions a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s
}

.header-actions a:hover {
    color: var(--primary)
}

.cart-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 12.5px
}

.cart-btn:hover {
    background: var(--primary-light) !important
}


/* HERO */
.hero {
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eeeffe 0%, #fef3dc 60%, #fafafa 100%);
    opacity: .55
}

.hero-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background: url('https://develop.webonictech.com/premier-tissues/wp-content/uploads/2026/03/test-scaled.webp') center/cover;
    opacity: .88
}

.hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f5f5fd 4%, transparent 58%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 24px;
    width: 100%
}

.hero-inner {
    max-width: 560px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-pale);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 22px
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 18px
}

.hero h1 em {
    color: var(--primary);
    font-style: italic
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 430px;
    line-height: 1.75;
    margin-bottom: 30px
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 13px 26px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s;
    border: none;
    cursor: pointer;
    display: inline-block
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    transition: all .25s;
    display: inline-block
}

.btn-outline:hover {
    background: var(--primary-pale)
}

.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted)
}

.trust-pill::before {
    content: '✓';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0
}

/* STATS BAR */
.stats-bar {
    background: var(--primary);
    color: #fff;
    padding: 22px 24px
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    position: relative
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: 1px;
    background: rgba(255, 255, 255, .2)
}

.stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1
}

.stat-num span {
    color: var(--accent)
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin-top: 3px
}

/* CATEGORY SCROLL */
.cat-scroll-wrap {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 0
}

.cat-scroll {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none
}

.cat-scroll::-webkit-scrollbar {
    display: none
}

.cat-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .2s;
    background: var(--surface);
    white-space: nowrap
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

/* SECTION COMMONS */
.section-wrap {
    padding: 72px 0
}

.section-wrap.alt {
    background: var(--surface-2)
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap
}

.view-all {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1.5px solid var(--primary);
    padding-bottom: 1px;
    transition: opacity .2s;
    white-space: nowrap
}

.view-all:hover {
    opacity: .65
}

/* PRODUCT GRID */
.product-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 .28s;
    cursor: pointer;
    position: relative
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: transparent
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 40px
}

.badge-bestseller {
    background: var(--primary);
    color: #fff
}

.badge-new {
    background: var(--accent);
    color: #fff
}

.badge-sale {
    background: #e8433d;
    color: #fff
}

.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.product-card:hover .product-img img {
    transform: scale(1.05)
}

.product-body {
    padding: 14px 16px 16px
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.35
}

.product-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary)
}

.product-price del {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 4px
}

.add-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.add-btn:hover {
    background: var(--primary-light)
}

.product-subscribe {
    font-size: 11px;
    color: var(--primary);
    margin-top: 8px;
    font-weight: 500;
    opacity: .8
}

/* COLLECTION CARDS */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.collection-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* aspect-ratio:4/3; */
    display: flex;
    align-items: flex-end
}

.collection-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s
}

.collection-card:hover .collection-card-bg {
    transform: scale(1.04)
}

.collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23, 26, 132, .82) 0%, transparent 55%)
}

.collection-card-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
    position: relative;
    z-index: 3
}

.collection-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.collection-body {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%
}

.collection-icon {
    font-size: 22px;
    margin-bottom: 6px;
    display: block
}

.collection-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
    text-decoration: none;
}

.collection-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 12px;
    line-height: 1.5
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none
}

.collection-card:hover .collection-link::after {
    transform: translateX(3px)
}

.collection-link::after {
    content: '→';
    transition: transform .2s
}

.collection-body a {
    text-decoration: none;
}

a.collection-link {
    text-decoration: none;
    color: #fff !important;
    background: #e8a020 !important;
    border-radius: 7px !important;
    padding: 10px 20px !important;
}

/* TRUST STRIP */
.trust-strip {
    background: var(--primary-pale);
    border-top: 1px solid #d0d2f0;
    border-bottom: 1px solid #d0d2f0
}

.trust-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(23, 26, 132, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.trust-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary)
}

.trust-text span {
    font-size: 12px;
    color: var(--text-muted)
}

/* ─── NEW: FEATURE TICKER (like BECO's icon scroll) ─── */
.feature-ticker {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden
}

.feature-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 28s linear infinite
}

.feature-track span {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted)
}

.feature-track span b {
    color: var(--primary)
}

.feature-track span::before {
    content: '✦';
    color: var(--accent);
    font-size: 10px
}

/* ─── NEW: PROMO BANNER ─── */
.promo-banner {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, var(--primary) 0%, #2e32c0 60%, #3d42d4 100%)
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px
}

.promo-content {
    position: relative;
    z-index: 2;
    padding: 48px 52px;
    flex: 1
}

.promo-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 40px;
    margin-bottom: 16px
}

.promo-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 42px);
    color: #fff;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 14px
}

.promo-banner h2 em {
    color: var(--accent);
    font-style: italic
}

.promo-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 28px
}

.promo-badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.promo-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 40px
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all .25s;
    border: none;
    cursor: pointer
}

.btn-accent:hover {
    background: #d4911a;
    transform: translateY(-1px)
}

.promo-img-side {
    position: relative;
    width: 500px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 32px 0
}

.promo-img-side img {
    max-height: 260px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .3))
}

.promo-circle {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06)
}

/* ─── NEW: BESTSELLERS / NEW ARRIVALS shared layout ─── */
/* already using .product-grid above */

/* ─── SHOPPABLE VIDEO SECTION ─── */
.sv-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory
}

.sv-row::-webkit-scrollbar {
    display: none
}

.sv-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #0d0f3a;
    transition: transform .28s
}

.sv-card:hover {
    transform: translateY(-4px)
}

/* video thumbnail — 9:16 portrait */
.sv-thumb {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
    display: block
}

.sv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block
}

.sv-card:hover .sv-thumb img {
    transform: scale(1.04)
}

/* gradient overlay */
.sv-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 60, .95) 0%, rgba(10, 12, 60, .3) 45%, transparent 75%)
}

/* play button */
.sv-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all .2s
}

.sv-play::after {
    content: '';
    border-left: 18px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 3px
}

.sv-card:hover .sv-play {
    background: #fff;
    transform: translate(-50%, -60%) scale(1.1)
}

/* duration badge */
.sv-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: .02em
}

/* social source badge */
.sv-source {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800
}

.sv-source.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.sv-source.yt {
    background: #ff0000
}

.sv-source.tt {
    background: #010101;
    border: 1px solid rgba(255, 255, 255, .2)
}

/* bottom content overlaid on video */
.sv-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px;
    z-index: 3
}

.sv-stars {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 5px
}

.sv-reviewer {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    margin-bottom: 6px
}

.sv-reviewer span {
    color: rgba(255, 255, 255, .5)
}

.sv-quote {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

/* product chip */
.sv-product-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg);
    padding: 7px 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(4px)
}

.sv-chip-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface-3)
}

.sv-chip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sv-chip-info {
    flex: 1;
    min-width: 0
}

.sv-chip-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sv-chip-price {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600
}

/* add to cart inline */
.sv-atc {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 9px 0;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font-body);
    letter-spacing: .01em
}

.sv-atc:hover {
    background: #d4911a
}

/* active playing state */
.sv-card.playing .sv-play {
    opacity: 0
}

.sv-card.playing .sv-thumb img {
    transform: scale(1.02)
}

/* scroll nav arrows */
.sv-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px
}

.sv-dots {
    display: flex;
    gap: 6px
}

.sv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: all .2s;
    cursor: pointer
}

.sv-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 3px
}

.sv-arrows {
    display: flex;
    gap: 8px
}

.sv-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 16px;
    color: var(--text-muted)
}

.sv-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale)
}

/* ─── NEW: SUSTAINABILITY ─── */
.sustain-wrap {
    background: var(--primary);
    padding: 72px 0;
    overflow: hidden;
    position: relative
}

.sustain-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='35' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px
}

.sustain-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2
}

.sustain-header {
    text-align: center;
    margin-bottom: 52px
}

.sustain-header .section-eyebrow {
    color: var(--accent)
}

.sustain-header .section-title {
    color: #fff
}

.sustain-header .section-sub {
    color: rgba(255, 255, 255, .65);
    margin: 0 auto
}

.sustain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px
}

.sustain-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all .28s
}

.sustain-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px)
}

.sustain-icon {
    font-size: 36px;
    margin-bottom: 14px
}

.sustain-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    line-height: 1.05
}

.sustain-num span {
    color: var(--accent)
}

.sustain-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-top: 6px;
    line-height: 1.45
}

.sustain-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.sustain-pillar {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.sp-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: rgba(232, 160, 32, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.sp-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px
}

.sp-text span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.55
}

/* B2B */
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.b2b-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all .28s
}

.b2b-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pale);
    transform: translateY(-2px)
}

.b2b-icon {
    font-size: 28px;
    margin-bottom: 14px
}

.b2b-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

.b2b-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.b2b-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none
}

.b2b-link:hover {
    text-decoration: underline
}

/* SUBSCRIPTION */
.sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.sub-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all .28s;
    position: relative
}

.sub-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow)
}

.sub-card.featured {
    border-color: var(--primary);
    background: var(--primary-pale)
}

.sub-card.featured::before {
    content: 'Most popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 40px;
    white-space: nowrap
}

.sub-icon {
    font-size: 32px;
    margin-bottom: 12px
}

.sub-freq {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px
}

.sub-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px
}

.sub-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px
}

.sub-example {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 18px
}

.sub-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 40px
}

/* ABOUT */
.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center
}

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

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px
}

.pillar {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.pillar-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text)
}

.pillar-text span {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5
}

/* NEWSLETTER */
.newsletter-wrap {
    background: var(--primary-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.newsletter-inner {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 24px
}

.newsletter-inner .section-title {
    color: var(--primary)
}

.newsletter-inner p {
    color: var(--text-muted);
    margin-bottom: 28px
}

.email-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto
}

.email-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 40px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font-body)
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary)
}

.email-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s;
    white-space: nowrap
}

.email-form button:hover {
    background: var(--primary-light)
}

/* CONTACT FORM */
.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px
}

.contact-form .form-row input,
.contact-form .form-row textarea {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-size: 14px;
    font-family: var(--font-body)
}

.contact-form .form-row textarea {
    min-height: 140px;
    resize: vertical
}

.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(23, 26, 132, 0.06)
}

.contact-form .form-row input::placeholder,
.contact-form .form-row textarea::placeholder {
    color: var(--text-light)
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 8px
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow)
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr !important
    }

    .contact-form .form-row {
        flex-direction: column
    }

    .collection-name {
        font-size: 16px
    }

    a.collection-link {
        padding: 8px 12px !important;
    }
}

/* Stronger overrides for contact page to avoid cascade issues or caching */
.section-inner .contact-form-card .contact-form .form-row input,
.section-inner .contact-form-card .contact-form .form-row textarea {
    flex: 1 !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    border: 1.5px solid var(--border) !important;
    background: var(--surface) !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
}

.section-inner .contact-form-card .contact-form .form-row textarea {
    min-height: 140px !important
}

.section-inner .contact-form-card .contact-form .form-row input:focus,
.section-inner .contact-form-card .contact-form .form-row textarea:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 6px 20px rgba(23, 26, 132, 0.06) !important
}

.map-wrap iframe {
    width: 100% !important;
    height: 450px !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow) !important
}

/* FOOTER — bg #171a84 */
footer {
    background: #171a84;
    color: rgba(255, 255, 255, .75)
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 200px;
    gap: 40px
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 20px;
    display: block;
    margin-bottom: 12px
}

.footer-brand .logo-text span {
    color: var(--accent)
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 700;
    transition: all .2s
}

.social-btn:hover {
    background: var(--accent);
    color: #fff
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .45)
}

.footer-links {
    display: flex;
    gap: 16px
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .2s
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .8)
}

.pay-badge {
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5)
}

/* MOBILE NAV */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 10px 0 4px
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    min-width: 56px;
    transition: color .2s
}

.mob-nav-item.active {
    color: var(--primary)
}

.mob-nav-icon {
    font-size: 20px;
    line-height: 1
}

/* ── RESPONSIVE ── */

@media (min-width: 800px) and (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:1024px) {
    .sustain-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sustain-pillars {
        grid-template-columns: 1fr 1fr
    }

    .promo-img-side {
        width: 260px
    }
}

@media(max-width:768px) {
    .utility-bar {
        display: none
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        height: 60px
    }

    nav {
        display: none
    }

    .header-actions a:not(.cart-btn) {
        display: none
    }

    .hero {
        min-height: 480px
    }

    .hero-pattern {
        width: 100%;
        opacity: .2
    }

    .hero-pattern::before {
        background: linear-gradient(to right, #f5f5fd 0%, rgba(245, 245, 253, .5) 100%)
    }

    .hero h1 {
        font-size: 34px
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .stat-item+.stat-item::before {
        display: none
    }

    .stat-num {
        font-size: 22px
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr
    }

    /* .collections-grid .collection-card{grid-column:1/-1} */
    .collections-grid .collection-card {
        grid-column: auto
    }

    .sustain-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sustain-pillars {
        grid-template-columns: 1fr
    }

    .b2b-grid {
        grid-template-columns: 1fr
    }

    .sub-grid {
        grid-template-columns: 1fr
    }

    .ugc-layout {
        grid-template-columns: 1fr
    }

    .ugc-left {
        min-height: 260px
    }

    .review-thumbs {
        flex-wrap: wrap
    }

    .sv-card {
        flex: 0 0 100%
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 16px
    }

    .about-img {
        display: none
    }

    .about-pillars {
        grid-template-columns: 1fr
    }

    .email-form {
        flex-direction: column
    }

    .email-form button {
        margin-top: 10px;
        /*width: 100%*/
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .mobile-bottom-nav {
        display: block
    }

    body {
        padding-bottom: 70px
    }

    .section-wrap {
        padding: 48px 0
    }

    .promo-banner {
        flex-direction: column
    }

    .promo-content {
        padding: 36px 24px
    }

    .promo-img-side {
        display: none
    }

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

    .sustain-inner {
        padding: 0px;
    }

    .sustain-num {
        font-size: 26px;
    }

}


/* home page css ends */

/* products page css */

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

:root {
    --primary: #171a84;
    --primary-light: #2428a8;
    --primary-pale: #eeeffe;
    --accent: #e8a020;
    --accent-light: #fef3dc;
    --green: #16a34a;
    --green-pale: #f0fdf4;
    --red: #e8433d;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --text-light: #888;
    --surface: #fff;
    --surface-2: #f5f5fd;
    --surface-3: #ebebfa;
    --border: #ddddf0;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow: 0 2px 16px rgba(23, 26, 132, 0.07);
    --shadow-hover: 0 8px 32px rgba(23, 26, 132, 0.14);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    font-size: 15px
}

/* ── ANNOUNCEMENT ── */
.announcement-bar {
    background: var(--primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 16px;
    overflow: hidden
}

.announcement-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 24s linear infinite
}

.announcement-track span {
    flex-shrink: 0
}

.announcement-track span::before {
    content: '✦ ';
    color: var(--accent)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}


/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .04)
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -.5px
}

.logo-text span {
    color: var(--accent);
    font-style: italic
}

nav {
    display: flex;
    justify-content: center;
    gap: 2px
}

nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 6px 13px;
    border-radius: var(--radius);
    transition: all .2s
}

nav a:hover {
    background: var(--primary-pale);
    color: var(--primary)
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px
}

.header-actions a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px
}

.cart-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 12.5px
}

.cart-btn:hover {
    background: var(--primary-light) !important
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px
}

.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--text-light)
}

.breadcrumb-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s
}

.breadcrumb-inner a:hover {
    color: var(--primary)
}

.breadcrumb-inner span {
    color: var(--border)
}

.breadcrumb-inner strong {
    color: var(--text);
    font-weight: 500
}

/* ── PDP BODY ── */
.pdp-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px 0
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 52px;
    align-items: start
}

/* ── GALLERY ── */
.gallery-wrap {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    position: sticky;
    top: 84px
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 540px;
    overflow-y: auto;
    scrollbar-width: none
}

.gallery-thumbs::-webkit-scrollbar {
    display: none
}

.thumb {
    width: 68px;
    height: 68px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all .2s;
    flex-shrink: 0
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.thumb:hover {
    border-color: var(--primary)
}

.thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(23, 26, 132, .2)
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface-2);
    aspect-ratio: 1
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
    letter-spacing: .04em
}

.gallery-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow);
    transition: all .2s
}

.gallery-wishlist:hover {
    transform: scale(1.1)
}

.gallery-wishlist.active {
    color: var(--red)
}

/* zoom cue */
.zoom-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .85);
    font-size: 11px;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 4px
}

/* share row */
.share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-muted)
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    color: var(--text-muted)
}

.share-btn:hover {
    background: var(--primary-pale);
    border-color: var(--primary);
    color: var(--primary)
}

/* ── PRODUCT INFO ── */
.pdp-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.product-cat-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: .7;
    margin-bottom: 8px
}

.pdp-info h1 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px
}

/* rating row */
.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.stars-lg {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 1.5px
}

.rating-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--text)
}

.rating-count {
    font-size: 13px;
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer
}

.rating-count:hover {
    opacity: .7
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 40px;
    border: 1px solid #bbf7d0
}

/* ── HIGHLIGHT PILLS (reusable / absorbent / eco) ── */
.highlight-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.h-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-pale);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary)
}

.h-pill-icon {
    font-size: 14px
}

/* ── PRICING ── */
.price-block {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 18px;
    border: 1px solid var(--border)
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px
}

.price-now {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display)
}

.price-was {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through
}

.price-save {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    background: var(--green-pale);
    padding: 2px 9px;
    border-radius: 40px
}

.price-inclusive {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px
}

/* subscribe toggle */
.pricing-toggle {
    display: flex;
    gap: 0;
    margin-top: 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.pricing-opt {
    flex: 1;
    padding: 10px 12px;
    cursor: pointer;
    transition: all .22s;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    text-align: left
}

.pricing-opt.active {
    background: var(--primary);
    color: #fff
}

.pricing-opt-label {
    font-size: 12px;
    font-weight: 600;
    display: block
}

.pricing-opt-price {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-top: 2px
}

.pricing-opt-sub {
    font-size: 10.5px;
    opacity: .75;
    display: block
}

.pricing-opt:not(.active) .pricing-opt-label {
    color: var(--text)
}

.pricing-opt:not(.active) .pricing-opt-price {
    color: var(--primary)
}

.pricing-opt:not(.active) .pricing-opt-sub {
    color: var(--text-light)
}

/* ── ACTIVE OFFERS ── */
.offers-box {
    background: var(--accent-light);
    border: 1.5px solid #f5d99a;
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 18px
}

.offers-box h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 7px;
    line-height: 1.45
}

.offer-item:last-child {
    margin-bottom: 0
}

.offer-item::before {
    content: '✦';
    color: var(--accent);
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0
}

/* ── QTY + ATC ── */
.qty-atc-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface)
}

.qty-btn {
    width: 38px;
    height: 48px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary);
    transition: background .2s;
    font-weight: 500
}

.qty-btn:hover {
    background: var(--primary-pale)
}

.qty-num {
    width: 42px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    border: none;
    background: transparent;
    outline: none
}

.btn-atc {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0 24px;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-atc:hover {
    background: var(--primary-light);
    transform: translateY(-1px)
}

.btn-atc.added {
    background: var(--green)
}

.btn-buy {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0 24px;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .25s;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-buy:hover {
    background: #d4911a
}

/* UPI row */
.upi-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap
}

.upi-badge {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted)
}

/* ── TRUST GRID ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px
}

.trust-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--surface-2);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.trust-icon {
    font-size: 18px;
    flex-shrink: 0
}

.trust-cell-text strong {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text)
}

.trust-cell-text span {
    font-size: 11.5px;
    color: var(--text-muted)
}

/* ── PRODUCT BADGES ROW (Eco / Bamboo) ── */
.eco-badges {
    display: flex;
    gap: 14px;
    margin-bottom: 20px
}

.eco-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted)
}

.eco-badge-icon {
    font-size: 22px
}

/* ── TABS ── */
.tabs-section {
    margin-top: 52px;
    border-top: 2px solid var(--border)
}

.tabs-nav {
    display: flex;
    border-bottom: 1.5px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0
}

.tabs-nav::-webkit-scrollbar {
    display: none
}

.tab-btn {
    padding: 14px 22px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    transition: all .2s
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600
}

.tab-btn:hover {
    color: var(--primary)
}

.tab-panel {
    display: none;
    padding: 32px 0
}

.tab-panel.active {
    display: block
}

/* ── DESCRIPTION ── */
.desc-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px
}

.desc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px
}

.desc-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

.df-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.df-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px
}

.df-text span {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5
}

/* ── COMPARISON TABLE ── */
.comparison {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.comparison-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--border)
}

.comp-col {
    padding: 28px 24px
}

.comp-col.premier {
    background: var(--primary-pale);
    border-right: 1px solid var(--border)
}

.comp-col.others {
    background: #fff8f8
}

.comp-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px
}

.comp-col-head .comp-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary)
}

.comp-col-head .comp-logo span {
    color: var(--accent);
    font-style: italic
}

.comp-col-head .comp-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    padding: 3px 8px;
    border-radius: 40px
}

.comp-tag.bad {
    color: var(--red);
    background: #fff0f0
}

.comp-items {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.45
}

.comp-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.comp-check.yes {
    background: var(--green);
    color: #fff
}

.comp-check.no {
    background: var(--red);
    color: #fff
}

/* ── SUSTAINABILITY ── */
.sustain-wrap {
    background: var(--primary);
    padding: 44px 40px;
}

/*.sustain-wrap{background:var(--primary);border-radius:var(--radius-xl);padding:44px 40px;margin:0 24px}*/
.sustain-header {
    text-align: center;
    margin-bottom: 40px
}

.sustain-header .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px
}

.sustain-header h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px
}

.sustain-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    margin: 0 auto
}

.sustain-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.s-stat {
    text-align: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-xl);
    padding: 28px 16px
}

.s-stat-icon {
    font-size: 32px;
    margin-bottom: 10px
}

.s-stat-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    line-height: 1
}

.s-stat-num span {
    color: var(--accent)
}

.s-stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px;
    line-height: 1.4
}

/* ── FAQ ACCORDION ── */
.faq-list {
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    gap: 16px;
    user-select: none
}

.faq-q:hover {
    color: var(--primary)
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    flex-shrink: 0;
    transition: all .25s
}

.faq-item.open .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px
}

.faq-item.open .faq-a {
    display: block
}

/* ── REVIEWS ── */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.rev-big-num {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1
}

.rev-stars-col .stars-xl {
    color: var(--accent);
    font-size: 22px;
    letter-spacing: 2px;
    display: block
}

.rev-stars-col .rev-total {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px
}

.rev-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px
}

.rev-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted)
}

.rev-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden
}

.rev-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.review-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .25s
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pale)
}

.review-card.featured {
    border-color: var(--primary);
    background: var(--primary-pale)
}

.rc-stars {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 6px
}

.rc-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px
}

.rc-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 12px
}

.rc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.rc-author {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary)
}

.rc-city {
    font-size: 11.5px;
    color: var(--text-light)
}

.rc-verified {
    font-size: 11px;
    background: var(--green-pale);
    color: var(--green);
    padding: 2px 7px;
    border-radius: 40px;
    font-weight: 500;
    border: 1px solid #bbf7d0
}

.rc-helpful {
    font-size: 11.5px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px
}

.rc-helpful button {
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 11px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all .2s
}

.rc-helpful button:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.write-review-btn {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 40px;
    padding: 9px 22px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .2s
}

.write-review-btn:hover {
    background: var(--primary-pale)
}

/* ── RELATED PRODUCTS ── */
.related-wrap {
    background: var(--surface-2);
    padding: 56px 0;
    margin-top: 56px
}

.related-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px
}

.prod-card-mini {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .28s;
    cursor: pointer;
    position: relative
}

.prod-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: transparent
}

.pcm-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 40px;
    letter-spacing: .04em
}

.pcm-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-2)
}

.pcm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.prod-card-mini:hover .pcm-img img {
    transform: scale(1.05)
}

.pcm-body {
    padding: 12px 14px 14px
}

.pcm-cat {
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--primary);
    opacity: .65;
    margin-bottom: 3px
}

.pcm-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.3
}

.pcm-stars {
    color: var(--accent);
    font-size: 11px;
    margin-bottom: 8px
}

.pcm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.pcm-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary)
}

.pcm-price del {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    line-height: 1.2
}

.pcm-atc {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: var(--font-body);
    white-space: nowrap
}

.pcm-atc:hover {
    background: var(--primary-light)
}

/* ── STICKY MOBILE ATC ── */
.sticky-atc {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    gap: 10px
}

.sticky-atc-info {
    flex: 1;
    min-width: 0
}

.sticky-atc-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text)
}

.sticky-atc-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary)
}

.sticky-atc-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background .2s
}

.sticky-atc-btn:hover {
    background: var(--primary-light)
}

/* ── FOOTER ── */
footer {
    background: #171a84;
    color: rgba(255, 255, 255, .75);
    margin-top: 0
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 36px;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 200px;
    gap: 40px
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 20px;
    display: block;
    margin-bottom: 12px
}

.footer-brand .logo-text span {
    color: var(--accent)
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 700;
    transition: all .2s
}

.social-btn:hover {
    background: var(--accent);
    color: #fff
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4)
}

.pay-badge {
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5)
}

/* ── SECTION LABELS ── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .pdp-grid {
        grid-template-columns: 1fr 420px;
        gap: 36px
    }

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

    .review-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {

    nav {
        display: none
    }

    .header-actions a:not(.cart-btn) {
        display: none
    }

    .pdp-wrap {
        padding: 20px 16px 0
    }

    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .gallery-wrap {
        grid-template-columns: 1fr;
        position: static
    }

    .gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
        max-height: none;
        margin-bottom: 10px;
        order: -1
    }

    .thumb {
        width: 56px;
        height: 56px;
        flex-shrink: 0
    }

    .gallery-main {
        border-radius: var(--radius-lg)
    }

    .desc-features {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .review-cards {
        grid-template-columns: 1fr
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .comparison-wrap {
        grid-template-columns: 1fr
    }

    .sustain-stats {
        grid-template-columns: 1fr
    }

    .sustain-wrap {
        margin: 0 16px;
        padding: 32px 24px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 28px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .sticky-atc {
        display: flex
    }

    body {
        padding-bottom: 74px
    }

    .comparison {
        padding: 0 16px
    }

    .related-inner {
        padding: 0 16px
    }
}

@media(max-width:480px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .highlight-pills {
        gap: 6px
    }

    .h-pill {
        font-size: 11px;
        padding: 4px 10px
    }
}


/* shop page css */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary: #171a84;
    --primary-light: #2428a8;
    --primary-pale: #eeeffe;
    --accent: #e8a020;
    --accent-light: #fef3dc;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --text-light: #888;
    --surface: #fff;
    --surface-2: #f5f5fd;
    --surface-3: #ebebfa;
    --border: #ddddf0;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --shadow: 0 2px 16px rgba(23, 26, 132, 0.07);
    --shadow-hover: 0 8px 32px rgba(23, 26, 132, 0.14);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
    font-size: 15px
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    background: var(--primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 16px;
    overflow: hidden
}

.announcement-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 24s linear infinite
}

.announcement-track span {
    flex-shrink: 0
}

.announcement-track span::before {
    content: '✦ ';
    color: var(--accent)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}


/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .04)
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -.5px
}

.logo-text span {
    color: var(--accent);
    font-style: italic
}

nav {
    display: flex;
    justify-content: center;
    gap: 2px
}

nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 6px 13px;
    border-radius: var(--radius);
    transition: all .2s
}

nav a:hover {
    background: var(--primary-pale);
    color: var(--primary)
}

nav a.active-nav {
    color: var(--primary);
    font-weight: 600
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px
}

.header-actions a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s
}

.header-actions a:hover {
    color: var(--primary)
}

.cart-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 12.5px
}

.cart-btn:hover {
    background: var(--primary-light) !important
}

/* ── PAGE BREADCRUMB HERO ── */
.page-hero {
    background: var(--primary);
    padding: 36px 24px
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55)
}

.breadcrumb a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb span {
    color: rgba(255, 255, 255, .3)
}

.breadcrumb strong {
    color: #fff;
    font-weight: 500
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    color: #fff;
    font-weight: 400;
    margin-top: 8px
}

.page-hero h1 em {
    color: var(--accent);
    font-style: italic
}

.page-hero-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px
}

.page-hero-right {
    text-align: right
}

.product-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 40px
}

.product-count-badge span {
    color: var(--accent);
    font-weight: 700;
    font-size: 15px
}

/* ── CATEGORY CIRCLES (BECO style from image) ── */
.cat-circles-wrap {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 24px 0
}

.cat-circles-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.cat-circles-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap
}

.cat-circles-row::-webkit-scrollbar {
    display: none
}

.cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform .22s
}

.cat-circle-item:hover {
    transform: translateY(-3px)
}

.cat-circle-item.active .cat-circle-img-wrap {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 26, 132, .15)
}

.cat-circle-img-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2.5px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .22s;
    position: relative
}

.cat-circle-item:hover .cat-circle-img-wrap,
.cat-circle-item.active .cat-circle-img-wrap {
    border-color: var(--primary)
}

.cat-circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cat-circle-emoji {
    font-size: 30px;
    line-height: 1
}

.cat-circle-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    max-width: 72px;
    line-height: 1.3;
    transition: color .22s
}

.cat-circle-item:hover .cat-circle-label,
.cat-circle-item.active .cat-circle-label {
    color: var(--primary)
}

/* Special: Shop All has filled bg */
.cat-circle-item.shopall .cat-circle-img-wrap {
    background: var(--primary);
    border-color: var(--primary)
}

.cat-circle-item.shopall .cat-circle-emoji {
    filter: none
}

.cat-circle-item.shopall .cat-circle-label {
    color: var(--primary)
}

/* Deal pill badge */
.cat-circle-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e8433d;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 40px;
    letter-spacing: .03em;
    border: 1.5px solid #fff
}

/* ── TOOLBAR ── */
.shop-toolbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 68px;
    z-index: 100
}

.shop-toolbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font-body)
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale)
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 40px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 500
}

.filter-chip button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0 0 0 2px
}

.result-count {
    font-size: 13px;
    color: var(--text-muted)
}

.result-count strong {
    color: var(--text)
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.sort-select {
    padding: 7px 12px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-size: 13px;
    color: var(--text);
    font-family: var(--font-body);
    background: var(--surface);
    cursor: pointer;
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary)
}

.view-toggle {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden
}

.view-toggle button {
    width: 34px;
    height: 34px;
    border: none;
    background: var(--surface);
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s
}

.view-toggle button.active {
    background: var(--primary);
    color: #fff
}

/* ── FILTER DRAWER ── */
.filter-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: var(--surface);
    z-index: 400;
    box-shadow: 4px 0 30px rgba(0, 0, 0, .12);
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto
}

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

.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 399;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

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

.filter-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 2
}

.filter-drawer-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text)
}

.close-drawer {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1
}

.filter-section {
    padding: 20px;
    border-bottom: 1px solid var(--border)
}

.filter-section h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted)
}

.filter-option input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
    border-radius: 3px
}

.filter-option:hover {
    color: var(--text)
}

.price-range-wrap {
    padding-top: 4px
}

.price-range-wrap input[type=range] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer
}

.price-vals {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px
}

.filter-drawer-foot {
    padding: 16px 20px;
    position: sticky;
    bottom: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 11px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-body)
}

.btn-primary:hover {
    background: var(--primary-light)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    border: 1.5px solid var(--primary);
    transition: all .25s;
    cursor: pointer;
    font-family: var(--font-body)
}

.btn-outline:hover {
    background: var(--primary-pale)
}

/* ── MAIN SHOP LAYOUT ── */
.shop-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 64px
}

/* ── DEAL BANNER STRIP ── */
.deal-strip {
    background: linear-gradient(120deg, var(--primary) 0%, #2e32c0 100%);
    border-radius: var(--radius-xl);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap
}

.deal-strip-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.deal-fire {
    font-size: 28px
}

.deal-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

.deal-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, .7)
}

.deal-countdown {
    display: flex;
    gap: 8px;
    align-items: center
}

.countdown-unit {
    background: rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 8px 12px;
    text-align: center;
    min-width: 50px
}

.countdown-num {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
    line-height: 1
}

.countdown-label {
    display: block;
    font-size: 9.5px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px
}

.countdown-sep {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px
}

.deal-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background .2s
}

.deal-cta:hover {
    background: #d4911a
}

/* ── CATEGORY SECTION HEADER ── */
.cat-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 36px
}

.cat-section-head:first-child {
    margin-top: 0
}

.cat-section-line {
    flex: 1;
    height: 1px;
    background: var(--border)
}

.cat-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap
}

.cat-section-label span {
    font-size: 18px
}

/* ── PRODUCT GRID ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 20px
}

.product-grid.list-view {
    grid-template-columns: 1fr
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .28s;
    position: relative;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: transparent
}

/* list view card */
.list-view .product-card {
    flex-direction: row;
    border-radius: var(--radius-lg)
}

.list-view .product-img {
    width: 160px;
    flex-shrink: 0;
    aspect-ratio: 1
}

.list-view .product-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px
}

.list-view .product-body-main {
    flex: 1
}

.list-view .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.list-view .product-price {
    font-size: 18px
}

/* badge */
.product-badge {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 40px;
    line-height: 1.4
}

.badge-bestseller {
    background: var(--primary);
    color: #fff
}

.badge-new {
    background: var(--accent);
    color: #fff
}

.badge-sale {
    background: #e8433d;
    color: #fff
}

.badge-deal {
    background: #7c3aed;
    color: #fff
}

.badge-eco {
    background: #16a34a;
    color: #fff
}

/* wishlist */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1)
}

.wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1)
}

.wishlist-btn.active {
    color: #e8433d
}

/* image */
.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.product-card:hover .product-img img {
    transform: scale(1.05)
}

/* quick add on hover */
.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 9px;
    font-size: 12.5px;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform .25s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body)
}

.product-card:hover .quick-add {
    transform: translateY(0)
}

/* body */
.product-body {
    padding: 14px 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-category-tag {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: .7;
    margin-bottom: 4px
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.35
}

.product-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1
}

/* rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px
}

.stars-sm {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .5px
}

.rating-count {
    font-size: 11px;
    color: var(--text-light)
}

/* footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1
}

.product-price del {
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 3px;
    display: block;
    line-height: 1.2
}

.product-price .save {
    font-size: 10.5px;
    color: #16a34a;
    font-weight: 600
}

.add-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    font-family: var(--font-body)
}

.add-btn:hover {
    background: var(--primary-light)
}

.add-btn.added {
    background: #16a34a
}

/* subscribe tag */
.product-subscribe {
    font-size: 11px;
    color: var(--primary);
    margin-top: 8px;
    font-weight: 500;
    opacity: .75
}

/* ── LOAD MORE ── */
.load-more-wrap {
    text-align: center;
    margin-top: 48px
}

.load-more-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 40px;
    padding: 13px 36px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    font-family: var(--font-body)
}

.load-more-btn:hover {
    background: var(--primary);
    color: #fff
}

.load-more-count {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px
}

/* ── BUNDLE CALLOUT ── */
.bundle-callout {
    background: var(--accent-light);
    border: 1.5px solid #f5d99a;
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap
}

.bundle-icon {
    font-size: 44px;
    flex-shrink: 0
}

.bundle-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px
}

.bundle-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6
}

.bundle-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 11px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background .2s;
    margin-left: auto
}

.bundle-cta:hover {
    background: #d4911a
}

/* ── FOOTER ── */
footer {
    background: #171a84;
    color: rgba(255, 255, 255, .75)
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 36px;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 200px;
    gap: 40px
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 20px;
    display: block;
    margin-bottom: 12px
}

.footer-brand .logo-text span {
    color: var(--accent)
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 700;
    transition: all .2s
}

.social-btn:hover {
    background: var(--accent);
    color: #fff
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px
}

.footer-col ul {
    list-style: none;
    padding: 0px;
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4)
}

.pay-badge {
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5)
}

/* ── MOBILE BOTTOM NAV ── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 10px 0 4px
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    min-width: 56px;
    transition: color .2s
}

.mob-nav-item.active {
    color: var(--primary)
}

.mob-nav-icon {
    font-size: 20px;
    line-height: 1
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    nav {
        display: none
    }

    .mobile-bottom-nav {
        display: block
    }

    .footer-bottom {
        text-align: center;
    }
}

@media(max-width:768px) {



    nav {
        display: none
    }

    .header-actions a:not(.cart-btn) {
        display: none
    }

    .shop-toolbar {
        top: 58px
    }

    .cat-circles-row {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 4px
    }

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

    .list-view .product-card {
        flex-direction: column
    }

    .list-view .product-img {
        width: 100%;
        aspect-ratio: 1
    }

    .list-view .product-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 14px 16px
    }

    .deal-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 28px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .mobile-bottom-nav {
        display: block
    }

    body {
        padding-bottom: 70px
    }

    .bundle-callout {
        flex-direction: column;
        gap: 12px
    }

    .bundle-cta {
        margin-left: 0;
        width: 100%;
        text-align: center
    }

    .filter-drawer {
        width: 90vw
    }

    .page-hero-right {
        display: none
    }
}

@media(max-width:480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .cat-circle-img-wrap {
        width: 62px;
        height: 62px
    }

    .cat-circle-label {
        font-size: 11px
    }
}


.cart-sidebar {
    position: fixed;
    top: 0;
    right: -620px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .3s;
    overflow: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);
}

.cart-sidebar.active {
    right: 0;
}

#cartOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
}

#cartOverlay.active {
    display: block;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.cart-close-btn {
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.qty-value {
    min-width: 20px;
    text-align: center;
}

.product-qty-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-qty-selector input {
    width: 55px;
    text-align: center;
    height: 34px;
}

.product-qty-selector button {
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.cart-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cart-table-head,
.cart-row {
    display: grid;
    grid-template-columns:
        3fr 1fr 1fr 1fr 80px;

    gap: 20px;
    align-items: center;

    padding: 20px;
}

.cart-table-head {
    background: #f7f7f7;
    font-weight: 600;
}

.cart-row {
    border-top: 1px solid #eee;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-product-name {
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.cart-category {
    color: #777;
    font-size: 13px;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty button {
    width: 35px;
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.cart-qty-input {
    width: 60px;
    text-align: center;
}

.remove-item {
    border: none;
    background: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 18px;
}

.cart-summary {
    margin-top: 25px;
    text-align: right;
    font-size: 22px;
    font-weight: 700;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

/* 
.empty-cart i{
    font-size:60px;
    margin-bottom:20px;
    color:#999;
} */


/*checkout css

.checkout-wrap{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    margin:50px auto;
}

.checkout-card,
.checkout-summary{
    background:#fff;
    border-radius:16px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.checkout-card h3,
.checkout-summary h3{
    margin-bottom:20px;
}

.payment-option{
    display:flex;
    gap:10px;
    margin-bottom:12px;
}

.summary-product{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.summary-product img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.summary-row.total{
    font-size:22px;
    font-weight:700;
}

.place-order-btn{
    width:100%;
    background:#2428a8;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:18px;
    cursor:pointer;
}
*/


/*new checkout*/



.checkout-wrap {

    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 32px;
    margin: 50px 40px;
    align-items: start;
}

.checkout-card,
.checkout-summary {
    background: #fff;
    border: 1px solid #e9ecf5;
    border-radius: 20px;
    padding: 28px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .04),
        0 2px 10px rgba(0, 0, 0, .03);
    transition: .3s ease;
}

.checkout-card:hover {
    box-shadow:
        0 15px 40px rgba(23, 26, 132, .08),
        0 5px 15px rgba(0, 0, 0, .04);
}

.checkout-card:not(:last-child) {
    margin-bottom: 24px;
}

/* Headings */

.checkout-card h3,
.checkout-summary h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #171a84;
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf0f7;
}

.checkout-card h3 i {
    color: #e8a020;
}

/* Customer Info */

.customer-info {
    background: #f8f9ff;
    border: 1px solid #e6e8ff;
    padding: 18px;
    border-radius: 14px;
}

.customer-info p {
    margin: 6px 0;
    color: #555;
}

/* Address Cards */

.checkout-addresses {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.address-card {
    position: relative;
    border: 2px solid #eceef7;
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: .25s ease;
    background: #fff;
}

.address-card:hover {
    border-color: #2428a8;
    transform: translateY(-2px);
}

.address-radio {
    position: absolute;
    top: 20px;
    right: 20px;
}

.address-card:has(.address-radio:checked) {
    border-color: #2428a8;
    background: #f8f9ff;
}

.address-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.address-top h4 {
    margin: 0;
    color: #171a84;
    font-size: 17px;
}

.default-badge {
    background: #e8a020;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 600;
}

.address-phone {
    color: #666;
    margin-bottom: 10px;
}

.address-text {
    color: #555;
    line-height: 1.7;
}

.address-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.address-edit,
.address-delete {
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #171a84;
}

.address-delete {
    color: #dc2626;
}

/* Forms */

.form-control {
    width: 100%;
    border: 1px solid #d9deeb;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    transition: .2s ease;
    margin-bottom: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #2428a8;
    box-shadow: 0 0 0 4px rgba(36, 40, 168, .08);
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Buttons */

.btn-primary {
    background: #171a84;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 14px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.btn-primary:hover {
    background: #2428a8;
    transform: translateY(-2px);
}

/* Coupon */

.coupon-row {
    display: flex;
    gap: 12px;
}

.coupon-row .form-control {
    margin: 0;
}

/* Payment Methods */

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e7e9f5;
    border-radius: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: .2s ease;
}

.payment-option:hover {
    border-color: #2428a8;
    background: #f8f9ff;
}

.payment-option input {
    accent-color: #171a84;
}

/* Order Summary */

.checkout-summary {
    position: sticky;
    top: 100px;
}

.summary-product {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f7;
}

.summary-product:last-child {
    border-bottom: none;
}

.summary-product img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #eee;
}

.summary-product h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #171a84;
}

.summary-product p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    /* padding:10px 0; */
    color: #555;
}

.summary-row.total {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px dashed #d9deeb;
    font-size: 24px;
    font-weight: 700;
    color: #171a84;
}

.summary-row.total span:last-child {
    color: #e8a020;
}

/* Place Order Button */

.place-order-btn {
    width: 100%;
    border: none;
    margin-top: 20px;
    background: linear-gradient(135deg,
            #171a84,
            #2428a8);
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 26, 132, .25);
}

/* Mobile */

@media(max-width:991px) {

    .checkout-wrap {
        grid-template-columns: 1fr;
        margin: 50px 10px;
    }

    .checkout-summary {
        position: static;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .coupon-row {
        flex-direction: column;
    }
}

.address-form {
    margin-top: 20px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #111827;
    transition: all .25s ease;
    outline: none;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:hover {
    border-color: #c7d2fe;
}

.form-control:focus {
    border-color: #2f2fb2;
    box-shadow: 0 0 0 4px rgba(47, 47, 178, .12);
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

@media (max-width:768px) {
    .address-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}


.offcanvas-cart-inner {
    /* padding:24px;  */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offcanvas-cart-inner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.cart-mini-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cart-mini-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.cart-mini-item>div {
    flex: 1;
}

.cart-mini-item h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    color: #111827;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: .2s;
}

.qty-btn:hover {
    background: #2f2fb2;
    color: #fff;
}

.cart-qty-input {
    width: 55px;
    height: 32px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
}

.cart-qty-input:focus {
    border-color: #2f2fb2;
    box-shadow: 0 0 0 3px rgba(47, 47, 178, .12);
}

.remove-item {
    border: none;
    background: none;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
}

.remove-item:hover {
    text-decoration: underline;
}

.cart-mini-item .price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.offcanvas-cart-inner hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

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

.cart-actions .btn {
    width: 100%;
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    background: #2f2fb2;
    border: none;
}

.cart-actions .btn:hover {
    background: #25258d;
}

.offcanvas-cart-inner::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-cart-inner::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.offcanvas-cart-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-footer {
    flex-shrink: 0;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-footer .btn {
    width: 100%;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -620px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .3s;
    overflow: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);
}

.cart-sidebar.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, .1);
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.cart-close-btn {
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.cart-sidebar-content {
    flex: 1;
    overflow: hidden;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-mini-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-mini-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.cart-mini-item h5 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    cursor: pointer;
}

.qty-btn:hover {
    background: #2f2fb2;
    color: #fff;
}

.cart-qty-input {
    width: 55px;
    height: 32px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.price {
    font-weight: 700;
    margin-bottom: 8px;
}

.remove-item {
    border: none;
    background: none;
    color: #dc2626;
    cursor: pointer;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
}

.cart-footer {
    flex-shrink: 0;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, .04);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-footer .btn {
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

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

.cart-items::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 20px;
}

@media(max-width:576px) {

    .cart-sidebar {
        width: 100%;
    }

}

.checkout-addresses {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.address-card {
    display: flex;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
    background: #fff;
}

.address-card:hover {
    border-color: #1e40af;
}

.address-radio {
    margin-top: 6px;
}

.address-content {
    flex: 1;
}

.address-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.address-top h4 {
    margin: 0;
    font-size: 18px;
}

.default-badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.address-phone {
    margin-bottom: 8px;
    color: #374151;
}

.address-phone i {
    margin-right: 6px;
}

.address-text {
    color: #6b7280;
    line-height: 1.7;
}

.address-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.address-edit,
.address-delete {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.address-edit {
    color: #2563eb;
}

.address-delete {
    color: #dc2626;
}

.checkout-success-wrap {
    padding: 80px 20px;
}

.checkout-success-card {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
}

.success-icon {
    font-size: 70px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-order-box {
    margin-top: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.success-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.success-row:last-child {
    border-bottom: none;
}

.success-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/*.btn-primary-address{*/
/*    background:#0d6efd;*/
/*    color:#fff;*/
/*    padding:12px 24px;*/
/*    border-radius:8px;*/
/*    text-decoration:none;*/
/*}*/

/*.btn-secondary{*/
/*    background:#f5f5f5;*/
/*    color:#333;*/
/*    padding:12px 24px;*/
/*    border-radius:8px;*/
/*    text-decoration:none;*/
/*}*/

.status-pending {
    color: #ff9800;
}

.status-processing {
    color: #2196f3;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.order-card-body {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-info span {
    color: #888;
    font-size: 13px;
}

.order-card-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.order-status {
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.status-processing {
    background: #d1ecf1;
    color: #0c5460;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.status-shipped {
    background: #cce5ff;
    color: #004085;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.empty-orders {
    text-align: center;
    padding: 80px 20px;
}

.empty-orders i {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

@media(max-width:768px) {

    .order-card-body {

        grid-template-columns: 1fr;

    }

}

.order-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.order-box {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.order-product {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-product:last-child {
    border-bottom: none;
}

.order-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.order-product-info {
    flex: 1;
}

.order-product-info h5 {
    margin-bottom: 5px;
}

.order-product-price {
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.total-row {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 18px;
}

@media(max-width:768px) {

    .order-details-grid {

        grid-template-columns: 1fr;

    }

}


/*terms condition*/




.terms-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(23, 26, 132, .05), transparent 30%),
        linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

/*
.terms-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light),
        var(--accent)
    );
}
*/
.terms-container {
    max-width: 1000px;
    margin: auto;
}

/* Card */

.terms-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(23, 26, 132, .06),
        0 20px 60px rgba(23, 26, 132, .08);
}

/* Intro */

.terms-intro {
    padding: 35px 40px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    color: #fff;
}

.terms-intro p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    opacity: .95;
}

/* Terms Body */

.terms-body {
    padding: 20px;
}

/* Individual Term */

.term-block {
    position: relative;
    padding: 28px 30px 28px 85px;
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: .3s ease;
}

.term-block:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(23, 26, 132, .08);
}

/* Number Circle */

.term-number {
    position: absolute;
    top: 26px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    background: var(--primary-pale);
    color: var(--primary);
}

/* Heading */

.term-block h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
}

.term-block p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 15px;
}

/* Section Header 

.section-header{
    display:flex;
    justify-content:center;
    text-align:center;
    margin-bottom:50px;
}

.section-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--accent-light);
    color:var(--accent);
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:15px;
    line-height:1.1;
}

.section-sub{
    max-width:700px;
    color:var(--text-muted);
    line-height:1.8;
    font-size:17px;
}
*/
/* Last Updated Box */

.last-updated {
    margin-bottom: 30px;
    padding: 18px 24px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
}

/* Contact Box */

.contact-box {
    margin-top: 30px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--primary-pale);
    border: 1px solid rgba(23, 26, 132, .1);
}

.contact-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-box p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px) {

    .terms-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .terms-intro {
        padding: 25px;
    }

    .terms-body {
        padding: 15px;
    }

    .term-block {
        padding: 24px;
    }

    .term-number {
        position: static;
        margin-bottom: 15px;
    }

    .term-block h3 {
        font-size: 20px;
    }
}


.load-more-wrap svg {
    height: 20px;
    width: 20px;
}

/*new changes*/
ol,
ul {
    padding-left: 0px !important;
}


a.footer-anchor {
    color: rgba(255, 255, 255, .4) !important;
    text-decoration: none !important;
}

a.collection-link {
    color: #fff !important;
    background: #e8a020 !important;
    border-radius: 7px !important;
    padding: 8px 12px !important;
}

a.collection-link:hover {
    background: #d4911a !important;
}

/*header strip*/
.announcement-slider {
    background: var(--primary);
    padding: 10px 0 !important;
}

.announcement-slider .swiper-slide {
    width: 100% !important;
    text-align: center;
}

.announcement-slider a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .announcement-slider a {
        font-size: 10px !important;
    }

    .announcement-slider {
        padding: 5px 0 10px !important;
    }
}


.whatsapp-float {
    position: fixed;
    right: 1.875rem;
    bottom: 2rem;
    height: 3.125rem;
    width: 3.125rem;
    text-decoration: none !important;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    font-size: 30px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all .3s linear;
}

a.whatsapp-float:focus,
a.whatsapp-float:hover {
    color: #fff !important;
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .whatsapp-float {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* .whatsapp-float{
    bottom: 4rem !important;
    right: 1rem !important;
} */

    .sustain-num {
        font-size: 25px !important;
    }
}


/* ==========================
   Mobile Navigation 3
========================== */
/* Hide on Desktop */

.mobile-menu-btn {
    display: none;
}

@media(max-width:1024px) {

    .mobile-menu-btn {
        display: block !important;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #171A84;
        text-decoration: none;
    }

}

/* Offcanvas */

.mobile-offcanvas {

    width: 330px !important;

    border: none;

    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);

}

/* Header */

.mobile-offcanvas .offcanvas-header {

    border-bottom: 1px solid #eee;

    padding: 20px;

}

.mobile-logo {

    height: 45px;

}

/* Menu */

.mobile-menu-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.mobile-menu-list>li {

    border-bottom: 1px solid #f2f2f2;

}

.mobile-menu-list>li>a,

.mobile-submenu-btn {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    padding: 18px 5px;

    background: none;

    border: none;

    text-decoration: none;

    color: #222;

    font-weight: 600;

    font-size: 16px;

    transition: .3s;

}

.mobile-menu-list>li>a:hover,

.mobile-submenu-btn:hover {

    color: #171A84;

    padding-left: 12px;

}

/* Submenu */

.mobile-submenu {

    list-style: none;

    padding: 0;

    margin: 0 0 15px;

}

.mobile-submenu li a {

    display: block;

    padding: 12px 25px;

    color: #666;

    text-decoration: none;

    transition: .3s;

}

.mobile-submenu li a:hover {

    color: #171A84;

    padding-left: 35px;

}

/* Arrow Animation */

.mobile-submenu-btn i {

    transition: .3s;

}

.mobile-submenu-btn[aria-expanded="true"] i {

    transform: rotate(180deg);

}

.offcanvas .collapse {
    visibility: visible !important;
}

a {
    text-decoration: none !important;
    /* color: inherit !important; */
}

.cart-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-table::-webkit-scrollbar {
    height: 6px;
}

.cart-table::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 20px;
}

.cart-table-head,
.cart-row {
    min-width: 900px;
    /* adjust as needed */
}


/* Toast Design */
#toast-container>.toast {
    width: auto;
    min-width: 380px;
    max-width: 550px;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    background-image: none !important;
}

/* Success */
.toast-success {
    background: #16a34a !important;
    color: #fff !important;
}

/* Error */
.toast-error {
    background: #dc2626 !important;
    color: #fff !important;
}

/* Warning */
.toast-warning {
    background: #f59e0b !important;
    color: #fff !important;
}

/* Info */
.toast-info {
    background: #2563eb !important;
    color: #fff !important;
}

/* Close button */
.toast-close-button {
    color: #fff !important;
    opacity: 1;
}


.dropdown-menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    min-width: 220px !important;
    background: #fff;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 8px !important;
    display: none;
    z-index: 300;
}

/*Dropdown*/
.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropbtn i {
    font-size: 11px;
    transition: transform .2s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 8px;
    display: none;
    z-index: 300;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 13.5px;
}

.dropdown-menu a:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.spec-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px;
}

.spec-card small {
    display: block;
    color: #777;
    margin-bottom: 6px;
    font-size: 13px;
}

.spec-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.product-short-description {
    margin-bottom: 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.product-short-description p {
    margin: 0 0 12px;
}

.product-short-description p:last-child {
    margin-bottom: 0;
}

.product-short-description ul,
.product-short-description ol {
    margin: 12px 0;
    padding-left: 20px;
}

.product-short-description li {
    margin-bottom: 8px;
}

.product-short-description strong {
    color: #222;
    font-weight: 600;
}

.product-short-description b {
    color: #222;
    font-weight: 600;
}

.product-short-description em {
    font-style: italic;
}

.product-short-description a {
    color: #1e3a8a;
    text-decoration: none;
    transition: .3s;
}

.product-short-description a:hover {
    text-decoration: underline;
}

.product-short-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}