/* NAVBAR COMPONENTS */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}

.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    color: var(--gold-light);
}

.brand-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.62em;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.16rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.96rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 201, 122, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.cart-btn {
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--gold-light);
    padding: 0.5rem 1.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
}

.cart-btn:hover {
    background: var(--gold);
    color: var(--forest);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--forest);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sage-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 2px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* BUTTONS */
.btn-primary {
    background: var(--gold);
    color: var(--forest);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(232, 237, 229, 0.35);
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
}

/* SECTION TITLES & HEADERS */
.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--gold-muted);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title em {
    color: var(--sage);
    font-style: italic;
}

#testimonials .section-title em {
    color: var(--cream);
}

#testimonials .section-title {
    color: var(--gold-light);
}

#testimonials .section-eyebrow {
    color: rgba(212, 175, 55, 0.6);
}

/* CARDS */
@keyframes premiumTileFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.gen-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), inset 0 2px 3px rgba(255, 255, 255, 0.6);
}

.gen-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
}

.gen-card-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.product-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(28, 46, 26, 0.15), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.product-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--sage-light);
    border-radius: 50%;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.product-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--forest);
}

.weight-select {
    background: var(--mist);
    border: 1px solid rgba(107, 76, 42, 0.15);
    color: var(--forest);
    padding: 0.35rem 0.75rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    border-radius: 2px;
    cursor: pointer;
    outline: none;
}

.add-cart {
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 0.6rem 1.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

.add-cart:hover {
    background: var(--sage);
}

.stock-badge {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stock-low {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-muted);
}

.stock-good {
    background: rgba(61, 92, 53, 0.12);
    color: var(--sage);
}

.overlay-btn {
    background: var(--gold);
    color: var(--forest);
    border: none;
    padding: 0.7rem 1.8rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
}

.overlay-btn:hover {
    background: var(--gold-light);
}

.why-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background-color: rgba(255, 255, 255, 0.12);
    background-image:
        linear-gradient(180deg, rgba(4, 13, 5, 0.22), rgba(3, 10, 4, 0.66)),
        var(--why-card-image);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(14px) saturate(1.12);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 2px rgba(255, 255, 255, 0.26);
}

.why-card::before {
    content: '';
    position: absolute;
    inset: -18px;
    background-image: var(--why-card-image);
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(1.02) contrast(1.18) saturate(0.96);
    opacity: 0.44;
    transform: scale(1.025);
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 22, 9, 0.48), rgba(3, 9, 4, 0.82)),
        radial-gradient(circle at 50% 0%, rgba(232, 201, 122, 0.22), transparent 44%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 48%, rgba(0, 0, 0, 0.22));
    z-index: 0;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

#why-natural,
.why-card:nth-child(1) {
    --why-card-image: url("../images/100.jpg");
}

#why-single-origin,
.why-card:nth-child(2) {
    --why-card-image: url("../images/single.jpg");
}

#why-sustainable,
.why-card:nth-child(3) {
    --why-card-image: url("../images/sustainable.jpg");
}

#why-fair-wages,
.why-card:nth-child(4) {
    --why-card-image: url("../images/fair.jpg");
}

#why-farm-door,
.why-card:nth-child(5) {
    --why-card-image: url("../images/kitchen.jpg");
}

#why-bio-inputs,
.why-card:nth-child(6) {
    --why-card-image: url("../images/bio.jpg");
}

#why-lab-verified,
.why-card:nth-child(7) {
    --why-card-image: url("../images/lab.jpg");
}

#why-cow-dung-slurry,
.why-card:nth-child(8) {
    --why-card-image: url("../images/whyvrindhavanam.jpg");
}

#why-organic-waste-cycle,
.why-card:nth-child(9) {
    --why-card-image: url("../images/why1.jpg");
}

#why-living-soil,
.why-card:nth-child(10) {
    --why-card-image: url("../images/why4.jpg");
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(255, 255, 255, 0.6);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.6);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--forest);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--forest);
    font-weight: 500;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--forest);
}

.testi-loc {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

/* MISC COMPONENTS */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 1.25rem;
    border-radius: 40px;
    margin-bottom: 2rem;
    background: rgba(201, 168, 76, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-badge span:first-child {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.hero-badge span:last-child {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
}

.metric-item {
    text-align: center;
}

.pillar {
    background: var(--mist);
    padding: 1rem 1.5rem;
    border-radius: 2px;
    border-left: 2px solid var(--gold);
}

@keyframes aboutRowTopExchange {
    0%,
    40% {
        transform: translateY(0);
    }

    50%,
    90% {
        transform: translateY(var(--about-row-shift, 5rem));
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes aboutRowBottomExchange {
    0%,
    40% {
        transform: translateY(0);
    }

    50%,
    90% {
        transform: translateY(calc(var(--about-row-shift, 5rem) * -1));
    }

    100% {
        transform: translateY(0);
    }
}

#about .about-pillars-exchange {
    --about-row-gap: 1.5rem;
    --about-row-bleed: 0.75rem;
    --about-row-height: 86px;
    --about-row-shift: 5rem;
    position: relative;
    display: block;
    margin-top: calc(2rem - var(--about-row-gap) - var(--about-row-bleed));
    padding-top: calc(var(--about-row-gap) + var(--about-row-bleed));
    padding-bottom: calc(var(--about-row-gap) + var(--about-row-bleed));
    width: 100%;
    max-width: 100%;
    min-height: calc((var(--about-row-height) * 2) + var(--about-row-gap) + ((var(--about-row-gap) + var(--about-row-bleed)) * 2));
    overflow: visible;
}

#about .about-pillars-exchange .about-pillars {
    margin-top: 0;
    overflow: visible;
}

#about .about-pillars-row {
    position: absolute;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    justify-content: center;
    align-items: stretch;
    gap: var(--about-row-gap);
    width: 100%;
    max-width: 100%;
    overflow: visible;
    will-change: transform;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

#about .about-pillars-row .pillar {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: var(--about-tile-height, 86px);
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

#about .about-pillars-row-top {
    top: calc(var(--about-row-gap) + var(--about-row-bleed));
    z-index: 1;
    animation-name: aboutRowTopExchange;
}

#about .about-pillars-row-bottom {
    top: calc(var(--about-row-gap) + var(--about-row-bleed) + var(--about-row-height) + var(--about-row-gap));
    z-index: 3;
    animation-name: aboutRowBottomExchange;
}

#about .about-pillars-row-bottom .pillar {
    z-index: 4;
}

#why .why-grid {
    --tile-gap: 2rem;
    display: block;
    overflow: hidden;
}

#why .why-grid .tile-slider-track {
    display: flex;
    gap: var(--tile-gap);
    transition: transform 700ms ease;
    will-change: transform;
}

#why .why-grid .why-card {
    flex: 0 0 clamp(180px, 30vw, 240px) !important;
    min-width: 0;
    animation: none !important;
}

@media (min-width: 901px) {
    #why .why-grid .why-card {
        flex: 0 0 calc((100% - 3 * var(--tile-gap)) / 4) !important;
        width: calc((100% - 3 * var(--tile-gap)) / 4) !important;
        max-width: none !important;
    }
}

#why .why-grid .why-card:hover::before {
    transform: scale(1.025) !important;
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--forest);
    color: var(--cream);
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-size: 0.85rem;
    z-index: 2000;
    border-left: 3px solid var(--gold);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* TRACE SECTION STYLES */
.trace-btn {
    background: var(--gold);
    color: var(--forest);
    border: none;
    padding: 0 2rem;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

.trace-btn:hover {
    background: var(--gold-light);
}

.batch-card {
    background: rgba(247, 242, 234, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.25rem;
    border-radius: 2px;
    text-align: center;
}

.batch-card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.4rem;
}

.batch-card-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
}

/* LIMITED SECTION STYLES */
.limited-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
}

.limited-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.limited-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.limited-price small {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: rgba(232, 201, 122, 0.6);
}

.stock-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(232, 237, 229, 0.55);
    margin-bottom: 0.5rem;
}

/* SUBSCRIPTION SECTION STYLES */
.sub-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.sub-box p {
    font-size: 0.9rem;
    color: rgba(232, 237, 229, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sub-features {
    list-style: none;
    margin-bottom: 2rem;
}

.sub-features li {
    font-size: 0.85rem;
    color: rgba(232, 237, 229, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(232, 237, 229, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sub-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

.sub-discount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
}

.sub-discount small {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(232, 201, 122, 0.7);
}

/* Custom Styled Select for Subscription */
.sub-select-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 250px;
    margin-top: 0.5rem;
}

.sub-select-wrap::after {
    content: '▼';
    font-size: 0.8rem;
    color: var(--gold);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.sub-select-wrap:hover::after {
    transform: translateY(-50%) scale(1.1);
}

.sub-select {
    width: 100%;
    background: var(--forest); /* Premium dark green background */
    border: 1px solid var(--glass-border);
    color: var(--cream);
    padding: 12px 40px 12px 16px;
    font-size: 0.95rem;
    font-family: 'Jost', sans-serif;
    border-radius: 8px; /* Rounded corners */
    appearance: none; /* Hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-select:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.sub-select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 12px rgba(241, 229, 172, 0.25);
}

.sub-select option {
    background: var(--forest);
    color: var(--cream);
}

/* Custom Styled Quantity Stepper */
.sub-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: var(--forest);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    max-width: 160px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.sub-qty-stepper:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.sub-qty-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.1rem;
    width: 45px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
}

.sub-qty-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
}

.sub-qty-btn:active {
    background: rgba(212, 175, 55, 0.2);
}

.sub-qty-stepper input[type="number"] {
    width: 60px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--cream);
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.sub-qty-stepper input[type="number"]::-webkit-outer-spin-button,
.sub-qty-stepper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* WHATSAPP STYLES */
.whatsapp-fab:hover {
    transform: scale(1.1);
}

/* CART DRAWER STYLES */
.cart-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.cart-empty p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--forest);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--forest);
}

.cart-item-meta {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: var(--mist);
    border: 1px solid rgba(107, 76, 42, 0.15);
    width: 24px;
    height: 24px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-price {
    font-family: 'Playfair Display', serif;
    color: var(--forest);
}

.cart-remove {
    background: none;
    border: none;
    color: rgba(107, 76, 42, 0.4);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.cart-remove:hover {
    color: #c0392b;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-total-label {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.cart-total-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--forest);
}

.checkout-btn {
    width: 100%;
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: var(--sage);
}

/* FOOTER BRAND STYLES */
.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand .brand-subtitle {
    color: var(--gold);
}

.footer-copy .brand-lockup {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 0.12rem;
}

.footer-copy .brand-title {
    color: rgba(232, 237, 229, 0.82);
}

.footer-copy .brand-subtitle {
    color: var(--gold);
}

.footer-brand small {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 237, 229, 0.55);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(232, 237, 229, 0.55);
    line-height: 1.7;
    margin-top: 1rem;
}

/* NEWSLETTER STYLES */
.newsletter-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 160px;
    background: rgba(247, 242, 234, 0.12);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    border: 1px solid rgba(201, 168, 76, 0.34);
    border-radius: 2px;
    color: var(--cream);
    padding: 0.7rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16), 0 8px 24px rgba(0, 0, 0, 0.16);
}

.newsletter-input::placeholder {
    color: rgba(232, 237, 229, 0.3);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--forest);
    border: none;
    padding: 0.7rem 1.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
}

/* Handpicked Spices Section */
#products {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.76), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(247, 242, 234, 0.54));
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -24px 70px rgba(45, 76, 45, 0.08);
}

#products::before {
  content: none;
}

#products::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(232, 201, 122, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.1) 48%, rgba(45, 76, 45, 0.08) 100%);
  backdrop-filter: blur(12px) saturate(1.08);
}

#products .section-eyebrow,
#products .section-title,
#products .handpicked-grid,
#products .handpicked-detail {
  position: relative;
  z-index: 2;
}

#products .section-title {
  color: var(--forest);
}

.handpicked-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
  max-width: 1120px;
  margin: 1rem auto 0;
}

.handpicked-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 0;
  padding-bottom: 82%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(2px) saturate(1.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.handpicked-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0.6px) brightness(1.14) contrast(1.22) saturate(1.1);
  transform: scale(1.01);
  transition: filter 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.handpicked-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(10,31,10,0.34));
  transition: background 0.4s ease;
  pointer-events: none;
}

.handpicked-tile:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.handpicked-tile:hover::after {
  filter: blur(0.4px) brightness(1.18) contrast(1.25) saturate(1.12);
  transform: scale(1.035);
}

.handpicked-tile:hover::before,
.handpicked-tile.is-linked::before {
  background: linear-gradient(180deg, rgba(10,31,10,0.02), rgba(10,31,10,0.38));
}

.tile-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  max-width: calc(100% - 1.5rem);
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 999px;
  background: rgba(10, 31, 10, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.handpicked-tile .tile-badge,
.handpicked-tile .tile-name,
.handpicked-tile .tile-value {
  z-index: 2;
}

.handpicked-tile .tile-name {
  position: absolute;
  right: 0.75rem;
  bottom: 2.75rem;
  left: 0.75rem;
  z-index: 1;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.15;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  text-align: left;
  pointer-events: none;
}

.tile-value {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  min-height: 1.9rem;
  color: rgba(232, 237, 229, 0.82);
  font-size: 0.72rem;
  line-height: 1.35;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(0.25rem);
  opacity: 0.88;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.handpicked-tile:hover .tile-value,
.handpicked-tile.is-linked .tile-value {
  transform: translateY(0);
  opacity: 1;
}

.handpicked-tile.is-active {
  border-color: rgba(201, 168, 76, 0.68);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), inset 0 1px 1px rgba(255, 255, 255, 0.22);
  transform: translateY(-6px) scale(1.02);
}

.handpicked-detail {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.75rem);
  transition: max-height 0.55s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.35s ease, transform 0.45s ease, margin-top 0.35s ease;
}

.handpicked-detail.is-open {
  margin-top: 1.75rem;
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
}

.handpicked-detail-shell {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(10, 31, 10, 0.5);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
}

.handpicked-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.handpicked-detail-kicker {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.handpicked-detail-title {
  margin-top: 0.25rem;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.handpicked-detail-close {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.handpicked-detail-close:hover,
.handpicked-detail-close:focus-visible {
  background: rgba(201, 168, 76, 0.22);
  border-color: rgba(201, 168, 76, 0.58);
  transform: scale(1.04);
}

.handpicked-variety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.handpicked-variety-tile,
.handpicked-main-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 10px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(5, 15, 5, 0.72)),
    var(--detail-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.42rem;
}

.handpicked-variety-tile::before,
.handpicked-main-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 42%);
  pointer-events: none;
}

.handpicked-variety-label,
.handpicked-main-label {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  font-size: 0.62rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.handpicked-variety-label {
  order: 3;
  margin-top: 0.1rem;
}

.handpicked-variety-title,
.handpicked-main-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  line-height: 1.28;
  overflow-wrap: break-word;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.handpicked-variety-title {
  order: 1;
}

.handpicked-variety-copy {
  position: relative;
  z-index: 1;
  order: 2;
  margin: 0;
  color: rgba(232, 237, 229, 0.86);
  font-size: 0.82rem;
  line-height: 1.5;
  overflow-wrap: break-word;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.handpicked-variety-tile {
  min-height: 0;
  background-color: rgba(10, 31, 10, 0.94);
  background-image: none;
  justify-content: flex-start;
  padding: 0 1rem 1rem;
}

.handpicked-variety-tile::before {
  content: none;
}

.handpicked-variety-image {
  order: 0;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: clamp(150px, 18vw, 200px);
  margin: 0 0 0.85rem;
  object-fit: cover;
  object-position: center;
}

.handpicked-main-tile {
  min-height: 250px;
  margin-top: 1rem;
  border-color: rgba(201, 168, 76, 0.36);
}

.handpicked-main-title {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.handpicked-main-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-top: 0.5rem;
  color: rgba(232, 237, 229, 0.84);
  font-size: 0.9rem;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .handpicked-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .handpicked-tile {
    padding-bottom: 64%;
  }

  .handpicked-tile .tile-name {
    bottom: 2.6rem;
  }

  .tile-value {
    min-height: 1.75rem;
  }

  .handpicked-detail.is-open {
    max-height: 1200px;
  }

  .handpicked-detail-shell {
    padding: 1rem;
  }

  .handpicked-detail-head {
    align-items: center;
  }

  .handpicked-variety-grid {
    grid-template-columns: 1fr;
  }

  .handpicked-variety-tile {
    min-height: 0;
    padding-top: 0;
  }

  .handpicked-variety-image {
    height: clamp(150px, 42vw, 220px);
  }

  .handpicked-main-tile {
    min-height: 220px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .handpicked-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .handpicked-tile {
    padding-bottom: 76%;
  }

  .handpicked-variety-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(10, 31, 10, 0.96);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    transition: max-height 0.35s ease;
  }

  .nav-links.open {
    max-height: 420px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    min-height: 44px;
  }

  .btn-primary,
  .btn-secondary,
  .trace-btn,
  .newsletter-btn,
  .checkout-btn {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .nav-logo {
    min-width: 0;
    flex: 1;
    font-size: 1rem;
    line-height: 1.2;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-logo .brand-subtitle {
    font-size: 0.55rem;
  }

  .nav-right {
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .cart-btn {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    font-size: 0.68rem;
  }

  .section-eyebrow {
    gap: 0.65rem;
    letter-spacing: 0.14em;
  }

  .section-eyebrow::before {
    width: 28px;
  }

  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .hero-badge {
    max-width: 100%;
    padding: 0.45rem 0.9rem;
  }

  .hero-badge span:last-child {
    white-space: normal;
    line-height: 1.35;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding-inline: 1.25rem;
  }

  .toast {
    width: calc(100% - 2rem);
    max-width: 360px;
    white-space: normal;
    text-align: center;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .cart-btn {
    padding-inline: 0.6rem;
    font-size: 0;
  }

  .cart-btn::before {
    content: "Cart";
    font-size: 0.68rem;
  }
}

.status{
    display:inline-block;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    text-transform:capitalize;
}

.status.active{
    background:#28a745;
    color:#fff;
}

.status.paused{
    background:#ffc107;
    color:#000;
}

.status.cancelled{
    background:#dc3545;
    color:#fff;
}
