:root {
    --cream: #faf7ee;
    --cream-2: #f4ecdc;
    --saffron: #ed7410;
    --saffron-deep: #cf5b00;
    --gold: #c9973e;
    --earth: #241f1a;
    --earth-soft: #665c50;
    --border: #e9e1d4;
    --muted: #f1ece3;
    --white: #fff;
    --green: #15815c;
    --whatsapp: #25d366;
    --shadow: 0 18px 50px rgba(45, 32, 18, .09);
    --radius: 14px;
    --ease: cubic-bezier(.22, .8, .2, 1);
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--earth);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased
}

body.no-scroll {
    overflow: hidden
}

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

button {
    font: inherit
}

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

.page-shell {
    min-height: 100vh;
}

.container {
    width: min(1280px, calc(100% - 80px));
    margin-inline: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 238, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(237, 116, 16, .11);
    transition: box-shadow .35s ease, background .35s ease, transform .35s ease
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(32, 24, 16, .08);
    background: rgba(250, 247, 238, .96)
}

.header-inner {
    width: min(1280px, calc(100% - 80px));
    height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1
}

.brand img {
    height: 54px !important;
    width: auto
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.brand-copy strong {
    font-family: var(--font-serif);
    font-size: 18px
}

.brand-copy small {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 800
}

.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto
}

.desktop-nav a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    position: relative;
    padding: 9px 0
}

.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: var(--saffron);
    transition: width .35s var(--ease)
}

.desktop-nav a:hover:after {
    width: 100%
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 13px
}

.delivery-mini {
    text-align: right
}

.delivery-mini span {
    display: block;
    color: var(--saffron);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase
}

.delivery-mini b {
    font-size: 13px
}

.cart-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--earth);
    color: var(--cream);
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease
}

.cart-pill i {
    font-size: 14px;
}

.cart-pill:hover {
    transform: translateY(-2px);
    background: var(--saffron)
}

.cart-count {
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--saffron);
    border-radius: 50%;
    font-size: 11px;
    color: white
}

.delivery-bar {
    height: 32px;
    background: var(--earth);
    color: rgba(250, 247, 238, .78);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .19em;
    text-transform: uppercase;
    font-weight: 600
}

.pulse-dot {
    width: 5px;
    height: 5px;
    background: var(--saffron);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(237, 116, 16, .7);
    animation: pulseRing 2s infinite
}

.hero {
    position: relative;
    min-height: 520px;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg,
.hero-bg img,
.hero-wash,
.hero-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-bg img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 1.2s var(--ease)
}

.hero:hover .hero-bg img {
    transform: scale(1.055)
}

.hero-wash {
    background: linear-gradient(90deg, var(--cream) 0%, rgba(250, 247, 238, .84) 35%, rgba(250, 247, 238, .48) 52%, rgba(250, 247, 238, 0) 78%)
}

.hero-glow {
    background: radial-gradient(circle at 75% 44%, rgba(255, 189, 92, .14), transparent 25%), linear-gradient(0deg, rgba(35, 29, 22, .12), transparent 40%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 80px
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(237, 116, 16, .08);
    border: 1px solid rgba(237, 116, 16, .2);
    color: var(--saffron);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .23em;
    animation: softFloat 4s ease-in-out infinite
}

.sparkle {
    font-size: 12px
}

.hero-kicker {
    font: italic 500 21px 'Playfair Display', serif;
    color: var(--gold);
    letter-spacing: .04em;
    margin: 22px 0 15px
}

.hero h1 {
    font: 700 clamp(54px, 6.2vw, 102px)/.91 'Playfair Display', serif;
    letter-spacing: -.045em;
    margin: 0 0 28px
}

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

.hero-description {
    max-width: 610px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--earth-soft);
    margin: 0 0 30px
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 45px;
    padding: 0 25px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease
}

.btn-primary {
    background: var(--saffron);
    color: white;
    box-shadow: 0 8px 22px rgba(237, 116, 16, .2)
}

.btn-primary:hover {
    background: var(--earth);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 31, 26, .2)
}

.btn-outline {
    border: 1.5px solid var(--earth);
    color: var(--earth)
}

.btn-outline:hover {
    background: var(--earth);
    color: var(--cream);
    transform: translateY(-2px)
}

.mobile-break {
    display: none
}

.brand-marquee {
    background: var(--earth);
    height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.marquee-track {
    width: max-content;
    animation: marquee 42s linear infinite
}

.marquee-set {
    display: flex;
    align-items: center;
    gap: 58px;
    padding: 0 30px;
    white-space: nowrap
}

.marquee-set span {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: rgba(250, 247, 238, .58);
    display: flex;
    align-items: center;
    gap: 58px
}

.marquee-set i {
    width: 4px;
    height: 4px;
    background: rgba(201, 151, 62, .6);
    border-radius: 50%;
    display: block
}

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .22)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 28px 0
}

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

.round-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 50%;
    background: rgba(237, 116, 16, .08);
    color: var(--saffron);
    font-size: 15px
}

.trust-item b {
    display: block;
    font-size: 13px
}

.trust-item small {
    display: block;
    margin-top: 3px;
    color: var(--earth-soft);
    font-size: 11px
}

.section {
    padding: 78px 0
}

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

.section-label {
    margin: 0 0 7px;
    color: var(--saffron);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase
}

.section h2,
.center-heading h2 {
    font: 700 34px/1.08 'Playfair Display', serif;
    margin: 0;
    letter-spacing: -.025em
}

.underlink {
    font-size: 10px;
    font-weight: 800;
    border-bottom: 2px solid var(--saffron);
    padding-bottom: 5px
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    background: var(--earth);
    isolation: isolate
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .63;
    transition: transform .7s var(--ease), opacity .5s ease
}

.category-card .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(36, 31, 26, .96), rgba(36, 31, 26, .28) 65%, transparent)
}

.category-card>div {
    position: absolute;
    left: 15px;
    right: 10px;
    bottom: 14px;
    color: var(--cream)
}

.category-card b {
    display: block;
    font: 700 16px/1.1 'Playfair Display', serif
}

.category-card small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 7px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: .83
}

.marketplace-section {
    padding: 68px 0;
    background: linear-gradient(180deg, transparent, rgba(237, 116, 16, .035))
}

.marketplace-heading {
    border-bottom: 1px solid var(--border);
    padding-bottom: 17px;
    margin-bottom: 30px
}

.section-subtitle {
    margin: 7px 0 0;
    color: var(--earth-soft);
    font-size: 13px
}

.dark-pill {
    background: var(--earth);
    color: var(--cream);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: background .25s ease, transform .25s ease
}

.dark-pill:hover {
    background: var(--saffron);
    transform: translateY(-2px)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 22px
}

.product-grid:has(.no-results),
.product-grid:has(.no-products-found) {
    grid-template-columns: repeat(1, 1fr);
}

.product-card {
    min-width: 0
}

.product-media {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--muted);
    margin-bottom: 10px
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease)
}

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

.quick-add {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 43px;
    border: 0;
    background: var(--saffron);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 800;
    transform: translateY(100%);
    transition: transform .35s var(--ease);
    cursor: pointer
}

.product-card:hover .quick-add {
    transform: translateY(0)
}

.premium-tag {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--earth);
    color: var(--cream);
    padding: 5px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 10px;
    font-weight: 800
}

.product-brand {
    margin: 0 0 3px;
    color: var(--saffron);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase
}

.product-card h3 {
    font: 700 16px/1.15 'Playfair Display', serif;
    margin: 0 0 4px
}

.product-card>p:not(.product-brand) {
    font-size: 13px;
    color: var(--earth-soft);
    margin: 0 0 6px
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 8px
}

.product-meta b {
    font-size: 14px
}

.product-meta span {
    margin-left: auto;
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.express-section {
    background: rgba(237, 116, 16, .055);
    padding: 70px 0
}

.express-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow)
}

.express-image {
    min-height: 270px;
    overflow: hidden
}

.express-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease)
}

.express-card:hover .express-image img {
    transform: scale(1.035)
}

.express-copy {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.express-copy h2 {
    font: 700 28px/1.12 'Playfair Display', serif;
    margin: 0 0 8px
}

.express-copy h2 em {
    color: var(--saffron);
    font-style: italic
}

.express-copy>p:not(.section-label) {
    font-size: 14px;
    line-height: 1.65;
    color: var(--earth-soft);
    max-width: 480px
}

.express-stats {
    display: flex;
    gap: 35px;
    margin: 17px 0
}

.express-stats strong {
    font: 700 30px 'Playfair Display', serif
}

.express-stats strong span {
    font: 600 12px Inter, sans-serif;
    margin-left: 2px
}

.express-stats small {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--earth-soft);
    letter-spacing: .1em
}

.express-actions {
    display: flex;
    gap: 8px
}

.btn-dark,
.btn-light {
    min-height: 34px;
    padding: 0 16px;
    font-size: 11px
}

.btn-dark {
    background: var(--earth);
    color: var(--cream)
}

.btn-light {
    border: 1px solid var(--border);
    background: #fff
}

.brands-section {
    padding-bottom: 75px
}

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px
}

.center-heading h2 {
    font-size: 31px
}

.center-heading>p:last-child {
    font-size: 14px;
    line-height: 1.6;
    color: var(--earth-soft);
    max-width: 480px;
    margin: 6px auto 0
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px
}

.brands-grid a {
    aspect-ratio: 1.25;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font: italic 12px 'Playfair Display', serif;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease
}

.brands-grid a:hover {
    border-color: var(--saffron);
    background: rgba(237, 116, 16, .045);
    color: var(--saffron);
    transform: translateY(-3px)
}

.site-footer {
    background: var(--earth);
    color: var(--cream);
    padding: 65px 0 22px;
    margin-top: 10px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 60px
}

.footer-logo {
    display: inline-block;
    background: rgba(250, 247, 238, .95);
    padding: 9px;
    border-radius: 5px;
    margin-bottom: 13px
}

.footer-logo img {
    height: 54px !important;
    width: auto;
}

.footer-about .footer-tagline {
    font: italic 16px 'Playfair Display', serif;
    color: var(--gold);
    margin: 0 0 14px
}

.footer-about>p:not(.footer-tagline) {
    max-width: 420px;
    color: rgba(250, 247, 238, .66);
    font-size: 13px;
    line-height: 1.75;
    margin: 0 0 20px
}

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

.socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: background .25s ease, border-color .25s ease, transform .25s ease
}

.socials a:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: translateY(-2px)
}

.site-footer h4 {
    margin: 4px 0 17px;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em
}

.site-footer>.footer-grid>div:not(.footer-about)>a {
    display: block;
    color: rgba(250, 247, 238, .67);
    font-size: 13px;
    margin: 0 0 11px;
    transition: color .2s
}

.site-footer a:hover {
    color: var(--saffron)
}

.site-footer p {
    color: rgba(250, 247, 238, .67);
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 10px;
    display: flex;
    align-content: center;
    gap: 13px;
    align-items: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 48px;
    padding-top: 17px;
    color: rgba(250, 247, 238, .42);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    transition: transform .25s ease
}

.whatsapp-float:hover {
    transform: scale(1.05)
}

.whatsapp-float i {
    font-size: 18px
}

.mobile-bottom-nav {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.product-card.reveal:nth-child(2) {
    transition-delay: .05s
}

.product-card.reveal:nth-child(3) {
    transition-delay: .1s
}

.product-card.reveal:nth-child(4) {
    transition-delay: .15s
}

.product-card.reveal:nth-child(5) {
    transition-delay: .2s
}

.product-card.reveal:nth-child(6) {
    transition-delay: .25s
}

.product-card.reveal:nth-child(7) {
    transition-delay: .3s
}

.product-card.reveal:nth-child(8) {
    transition-delay: .35s
}

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

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

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 116, 16, .6)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(237, 116, 16, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(237, 116, 16, 0)
    }
}

@keyframes softFloat {

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

    50% {
        transform: translateY(-3px)
    }
}

@media(max-width:1100px) {

    .container,
    .header-inner {
        width: min(100% - 48px, 960px)
    }

    .desktop-nav {
        gap: 18px
    }

    .delivery-mini {
        display: none
    }

    .hero {
        height: 500px
    }

    .hero-content {
        padding-top: 60px
    }

    .hero h1 {
        font-size: clamp(50px, 8vw, 76px)
    }

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

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

    .brands-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 120;
        height: 64px;
        padding: 7px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 20px;
        background: rgba(36, 31, 26, .94);
        backdrop-filter: blur(18px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, .24)
    }

    .mobile-nav-item {
        position: relative;
        flex: 1;
        color: rgba(250, 247, 238, .56);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 15px;
        font-size: 18px;
        transition: color .25s ease, background .25s ease, transform .25s ease
    }

    .mobile-nav-item small {
        font-size: 8px;
        letter-spacing: .08em;
        text-transform: uppercase
    }

    .mobile-nav-item.active {
        color: var(--cream);
        background: rgba(237, 116, 16, .16)
    }

    .mobile-nav-item.active:after {
        content: "";
        position: absolute;
        bottom: 4px;
        width: 14px;
        height: 2px;
        background: var(--saffron);
        border-radius: 99px
    }

    .mobile-nav-item .badge {
        position: absolute;
        right: 22%;
        top: 7px;
        min-width: 15px;
        height: 15px;
        border-radius: 50%;
        background: var(--saffron);
        color: white;
        font-size: 8px;
        font-style: normal;
        display: grid;
        place-items: center
    }

    .site-footer {
        padding-bottom: 95px
    }

    .whatsapp-float {
        bottom: 84px
    }
}

@media(max-width:700px) {

    .container,
    .header-inner {
        width: calc(100% - 28px)
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 100
    }

    .header-inner {
        height: 64px;
        gap: 8px
    }

    .brand img {
        height: 42px !important;
    }

    .brand-copy {
        display: none
    }

    .desktop-nav {
        display: none
    }

    .cart-pill {
        padding: 9px 11px
    }

    .cart-text {
        display: none
    }

    .cart-count {
        min-width: 18px;
        height: 18px
    }

    .delivery-bar {
        height: 42px;
        font-size: 11px;
        letter-spacing: .08em;
        padding: 0 12px;
        text-align: center
    }

    .hero {
        height: auto;
        min-height: 480px;
        padding-block: 40px;
        align-items: flex-end
    }

    .hero-bg img {
        object-position: 64% center
    }

    .hero-wash {
        background: linear-gradient(180deg, rgba(250, 247, 238, .05) 0%, rgba(250, 247, 238, .15) 35%, rgba(250, 247, 238, .88) 65%, var(--cream) 100%)
    }

    .hero-content {
        padding: 0 0 58px
    }

    .eyebrow-pill {
        font-size: 11px;
        padding: 6px 12px;
        letter-spacing: .12em
    }

    .hero-kicker {
        font-size: 16px;
        margin: 13px 0 10px
    }

    .hero h1 {
        font-size: 48px;
        line-height: .91;
        margin-bottom: 18px;
        letter-spacing: -.05em
    }

    .mobile-break {
        display: block
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 19px;
        max-width: 360px
    }

    .hero-buttons {
        gap: 7px
    }

    .btn {
        min-height: 44px;
        padding: 0 18px;
        font-size: 12px;
        letter-spacing: .08em
    }

    .btn-primary span {
        font-size: 15px
    }

    .brand-marquee {
        height: 51px
    }

    .marquee-set {
        gap: 35px;
        padding: 0 16px
    }

    .marquee-set span {
        font-size: 14px;
        gap: 35px
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 9px;
        padding: 17px 0
    }

    .trust-item {
        gap: 8px
    }

    .round-icon {
        width: 28px;
        height: 28px;
        font-size: 12px
    }

    .trust-item b {
        font-size: 13px
    }

    .trust-item small {
        font-size: 11px
    }

    .section {
        padding: 45px 0
    }

    .section-heading {
        align-items: flex-end;
        margin-bottom: 18px
    }

    .section h2 {
        font-size: 27px
    }

    .section-label {
        font-size: 12px;
        letter-spacing: .15em
    }

    .underlink {
        font-size: 12px;
        white-space: nowrap
    }

    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 9px;
        padding: 1px 1px 8px;
        scrollbar-width: none
    }

    .category-grid::-webkit-scrollbar {
        display: none
    }

    .category-card {
        min-width: 31%;
        scroll-snap-align: start;
        border-radius: 7px
    }

    .category-card>div {
        left: 10px;
        bottom: 10px
    }

    .category-card b {
        font-size: 13px
    }

    .category-card small {
        font-size: 11px
    }

    .marketplace-section {
        padding: 45px 0
    }

    .marketplace-heading {
        align-items: flex-end;
        margin-bottom: 20px
    }

    .dark-pill {
        font-size: 12px;
        padding: 8px 14px
    }

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

    .product-media {
        border-radius: 7px;
        margin-bottom: 8px
    }

    .quick-add {
        height: 38px;
        font-size: 12px
    }

    .product-brand {
        font-size: 11px
    }

    .product-card h3 {
        font-size: 15px
    }

    .product-card>p:not(.product-brand) {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .product-meta b {
        font-size: 13px
    }

    .product-meta span {
        font-size: 11px
    }

    .premium-tag {
        font-size: 10px;
        padding: 4px 8px
    }

    .express-section {
        padding: 34px 0
    }

    .express-card {
        grid-template-columns: 1fr;
        border-radius: 10px
    }

    .express-image {
        height: 200px;
        min-height: 0
    }

    .express-copy {
        padding: 25px 20px
    }

    .express-copy h2 {
        font-size: 25px
    }

    .express-copy>p:not(.section-label) {
        font-size: 14px
    }

    .express-stats {
        gap: 25px;
        margin: 13px 0
    }

    .express-stats strong {
        font-size: 25px
    }

    .express-actions {
        gap: 6px
    }

    .btn-dark,
    .btn-light {
        min-height: 38px;
        padding: 0 16px;
        font-size: 12px
    }

    .brands-section {
        padding-bottom: 50px
    }

    .center-heading {
        margin-bottom: 18px
    }

    .center-heading h2 {
        font-size: 25px
    }

    .center-heading>p:last-child {
        font-size: 14px
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px
    }

    .brands-grid a {
        aspect-ratio: 1.08;
        font-size: 11px;
        border-radius: 6px
    }

    .site-footer {
        padding-top: 45px
    }

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

    .footer-about .footer-tagline {
        font-size: 14px
    }

    .footer-about>p:not(.footer-tagline) {
        font-size: 13px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 32px;
        font-size: 12px
    }

    .whatsapp-float {
        right: 12px;
        bottom: 82px;
        padding: 9px 12px
    }

    .whatsapp-float b {
        font-size: 12px
    }

    .site-footer {
        padding-bottom: 96px
    }
}

@media(min-width:701px) and (max-width:1100px) {
    .mobile-bottom-nav {
        height: 68px
    }

    .category-card {
        border-radius: 10px
    }

    .hero-description {
        max-width: 520px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Premium Pagination Styling */
#filteredProductPagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.kd-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.kd-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--earth);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.kd-pagination .page-link:hover:not(.disabled):not(.active) {
    background: var(--cream);
    border-color: var(--earth-soft);
    color: var(--saffron);
}

.kd-pagination .page-link.active {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--white);
    cursor: default;
}

.kd-pagination .page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--cream);
}



