/********** POSHAN+ Brand Styles **********/
:root {
    --poshan-cream: #F9F5F0;
    --poshan-cream-dark: #F0EBE3;
    --poshan-green: #1B3022;
    --poshan-green-light: #2A4A35;
    --poshan-gold: #B8963E;
    --poshan-gold-light: #D4B96A;
    --poshan-gold-subtle: rgba(184, 150, 62, 0.25);
    --poshan-text: #1B3022;
    --poshan-text-muted: rgba(27, 48, 34, 0.65);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--poshan-text);
    background-color: var(--poshan-cream);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--poshan-green);
}

/* Navbar */
.poshan-navbar {
    background: var(--poshan-cream);
    border-bottom: 1px solid var(--poshan-gold-subtle);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1030;
}

.poshan-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(27, 48, 34, 0.06);
}

.poshan-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.poshan-logo img {
    height: 76px;
    width: auto;
    display: block;
    object-fit: contain;
}

.poshan-nav .nav-link {
    font-family: var(--font-body);
    color: var(--poshan-green) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    opacity: 0.85;
}

.poshan-nav .nav-link:hover,
.poshan-nav .nav-link.active {
    color: var(--poshan-green) !important;
    opacity: 1;
}

.poshan-nav .nav-link.active {
    box-shadow: inset 0 -2px 0 var(--poshan-gold);
}

.btn-order {
    font-family: var(--font-body);
    background: var(--poshan-green);
    color: #fff !important;
    border: 1px solid var(--poshan-green);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-order:hover {
    background: transparent;
    color: var(--poshan-green) !important;
    border-color: var(--poshan-gold);
}

.poshan-navbar-actions {
    gap: 0.65rem;
}

@media (min-width: 992px) {
    .poshan-navbar-actions {
        padding-left: 1.25rem;
        margin-left: 0.5rem !important;
        border-left: 1px solid rgba(184, 150, 62, 0.35);
    }
}

.poshan-portal-tools {
    gap: 0.4rem;
}

.poshan-portal-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--poshan-green);
    border: 1px solid rgba(184, 150, 62, 0.35);
    background: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.92rem;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    line-height: 1;
    font-family: inherit;
}

.poshan-portal-icon:hover,
.poshan-portal-icon.active {
    background: var(--poshan-green);
    border-color: var(--poshan-green);
    color: #fff;
}

.portal-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--poshan-gold);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.poshan-mobile-portal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 150, 62, 0.14);
}

.poshan-mobile-portal-link {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--poshan-green);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.poshan-mobile-portal-link:hover {
    color: var(--poshan-gold);
}

.poshan-navbar .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(184, 150, 62, 0.35) !important;
    border-radius: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.poshan-navbar .navbar-toggler:hover {
    background: rgba(27, 48, 34, 0.04);
    border-color: var(--poshan-gold) !important;
}

.poshan-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--poshan-gold-subtle);
}

.poshan-navbar .navbar-toggler-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B3022' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .poshan-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1.25rem 1.35rem 1.35rem;
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(184, 150, 62, 0.22);
        box-shadow: 0 16px 40px rgba(27, 48, 34, 0.1);
    }

    .poshan-portal-tools {
        margin-right: 0.35rem;
    }
}

.btn-poshan {
    font-family: var(--font-body);
    background: var(--poshan-green);
    color: #fff;
    border: 2px solid var(--poshan-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-poshan:hover {
    background: transparent;
    color: var(--poshan-green);
    border-color: var(--poshan-gold);
}

.btn-poshan-outline {
    font-family: var(--font-body);
    background: transparent;
    color: var(--poshan-green);
    border: 2px solid var(--poshan-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-poshan-outline:hover {
    background: var(--poshan-green);
    color: #fff;
    border-color: var(--poshan-gold);
}

/* Mobile cart */
.btn-order-mobile {
    background: transparent;
    border: none;
    color: var(--poshan-green);
    font-size: 1.15rem;
    padding: 0.35rem 0.5rem;
}

/* Hero — split layout */
.hero-split {
    padding: 8.25rem 0 5rem;
    background: var(--poshan-cream);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--poshan-green);
    line-height: 1.15;
    margin-bottom: 1.75rem;
}

.hero-heading-line {
    display: block;
}

.hero-heading-line:first-child {
    font-family: var(--font-display);
    font-weight: 700;
    white-space: nowrap;
}

.hero-heading-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
    color: var(--poshan-green);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--poshan-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 2rem;
    max-width: 480px;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    background: var(--poshan-cream-dark);
    border: 1px solid var(--poshan-gold-subtle);
    border-left: 3px solid var(--poshan-gold);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-highlight-item:hover {
    border-left-color: var(--poshan-green);
    box-shadow: 0 4px 16px rgba(27, 48, 34, 0.06);
}

.hero-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--poshan-cream);
    border: 1px solid var(--poshan-gold-light);
    border-radius: 50%;
    color: var(--poshan-gold);
    font-size: 0.9rem;
}

.hero-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-highlight-text strong {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--poshan-green);
    letter-spacing: 0.3px;
}

.hero-highlight-text span {
    font-size: 0.8rem;
    color: var(--poshan-text-muted);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    padding: 0.9rem 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 0;
    transition: all 0.35s ease;
}

.btn-hero-primary {
    background: var(--poshan-green);
    color: #fff;
    border: 1px solid var(--poshan-green);
    box-shadow: 0 2px 0 var(--poshan-gold);
}

.btn-hero-primary i {
    font-size: 0.75rem;
    transition: transform 0.35s ease;
}

.btn-hero-primary:hover {
    background: var(--poshan-green-light);
    color: #fff;
    border-color: var(--poshan-green-light);
    box-shadow: 0 4px 0 var(--poshan-gold), 0 12px 28px rgba(27, 48, 34, 0.14);
    transform: translateY(-2px);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(249, 245, 240, 0.6);
    color: var(--poshan-green);
    border: 1px solid var(--poshan-gold-light);
}

.btn-hero-secondary:hover {
    background: var(--poshan-cream-dark);
    color: var(--poshan-green);
    border-color: var(--poshan-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 48, 34, 0.06);
}

.hero-product-showcase {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-main {
    width: 72%;
    max-width: 340px;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(27, 48, 34, 0.14);
    border: 1px solid var(--poshan-gold-subtle);
    position: relative;
    z-index: 2;
}

.hero-product-secondary {
    position: absolute;
    width: 38%;
    max-width: 180px;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(27, 48, 34, 0.1);
    border: 1px solid var(--poshan-gold-subtle);
    z-index: 1;
}

.hero-product-left {
    left: 0;
    bottom: 8%;
    transform: rotate(-4deg);
}

.hero-product-right {
    right: 0;
    top: 8%;
    transform: rotate(4deg);
}

/* Section lead text */
.section-lead {
    color: var(--poshan-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.05rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    font-style: italic;
    color: var(--poshan-green);
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 0;
    line-height: 1.25;
}

/* A Healthier Way to Sweets */
.snack-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
    position: relative;
    overflow: hidden;
}

.snack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(184, 150, 62, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 35% at 90% 80%, rgba(27, 48, 34, 0.04), transparent 50%);
    pointer-events: none;
}

.feature-cards-row {
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.72) 0%, var(--poshan-cream) 55%, rgba(240, 235, 227, 0.9) 100%);
    padding: 2.75rem 2rem 2.5rem;
    height: 100%;
    border: 1px solid rgba(184, 150, 62, 0.22);
    text-align: center;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

.feature-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--poshan-gold), var(--poshan-gold-light), var(--poshan-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card-index {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    color: rgba(184, 150, 62, 0.14);
    transition: color 0.45s ease, transform 0.45s ease;
    user-select: none;
}

.feature-card-icon-wrap {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(184, 150, 62, 0.32);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
    animation: featureIconFloat 5s ease-in-out infinite;
}

.feature-cards-row > .col-md-4:nth-child(2) .feature-card-icon-wrap {
    animation-delay: 0.6s;
}

.feature-cards-row > .col-md-4:nth-child(3) .feature-card-icon-wrap {
    animation-delay: 1.2s;
}

.feature-card-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(184, 150, 62, 0.28);
    animation: featureRingSpin 18s linear infinite;
    transition: border-color 0.45s ease;
}

.feature-card-icon-wrap i {
    font-size: 1.65rem;
    color: var(--poshan-gold);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
    text-transform: none;
    margin-bottom: 1rem;
    transition: color 0.35s ease;
}

.feature-card p {
    color: var(--poshan-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.35s ease;
}

.feature-card-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, 0.55) 50%, transparent 90%);
    transform: skewX(-18deg);
    pointer-events: none;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 150, 62, 0.48);
    box-shadow:
        0 22px 50px rgba(27, 48, 34, 0.1),
        0 0 0 1px rgba(184, 150, 62, 0.08);
}

.feature-card:hover .feature-card-accent {
    transform: scaleX(1);
}

.feature-card:hover .feature-card-index {
    color: rgba(184, 150, 62, 0.28);
    transform: scale(1.06);
}

.feature-card:hover .feature-card-icon-wrap {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--poshan-gold);
    box-shadow: 0 12px 28px rgba(184, 150, 62, 0.18);
    animation-play-state: paused;
}

.feature-card:hover .feature-card-icon-wrap::before {
    border-color: rgba(184, 150, 62, 0.5);
    animation-duration: 6s;
}

.feature-card:hover .feature-card-icon-wrap i {
    transform: scale(1.12) rotate(-8deg);
    color: var(--poshan-green);
}

.feature-card:hover h3 {
    color: var(--poshan-green-light);
}

.feature-card:hover .feature-card-shine {
    opacity: 1;
    animation: featureShineSweep 0.85s ease forwards;
}

.feature-card.is-animated .feature-card-icon-wrap i {
    animation: featureIconPop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-cards-row > .col-md-4:nth-child(2) .feature-card.is-animated .feature-card-icon-wrap i {
    animation-delay: 0.15s;
}

.feature-cards-row > .col-md-4:nth-child(3) .feature-card.is-animated .feature-card-icon-wrap i {
    animation-delay: 0.3s;
}

@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes featureRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes featureShineSweep {
    from { left: -120%; }
    to { left: 140%; }
}

@keyframes featureIconPop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .feature-card-icon-wrap,
    .feature-card-icon-wrap::before,
    .feature-card-shine,
    .feature-card.is-animated .feature-card-icon-wrap i {
        animation: none !important;
    }

    .feature-card:hover {
        transform: none;
    }
}

/* Shop product cards */
.shop-card {
    background: var(--poshan-cream-dark);
    border: 1px solid rgba(184, 150, 62, 0.28);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 48, 34, 0.08);
}

.shop-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.shop-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.shop-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shop-card-ingredients {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--poshan-gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.shop-card-desc {
    font-size: 0.9rem;
    color: var(--poshan-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.shop-card-meta {
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--poshan-gold-subtle);
}

.shop-card-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.shop-card-select-wrap {
    position: relative;
    flex: 1 1 0;
    min-width: 4.5rem;
    max-width: 5.75rem;
}

.shop-card-select-wrap::after {
    content: '';
    position: absolute;
    right: 0.55rem;
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 1.5px solid var(--poshan-gold);
    border-bottom: 1.5px solid var(--poshan-gold);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-card-select-wrap:focus-within::after {
    transform: translateY(-40%) rotate(225deg);
    border-color: var(--poshan-green);
}

.shop-card-variant,
.shop-card-variant-static {
    width: 100%;
}

.shop-card-variant {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 100%;
    padding: 0.42rem 1.65rem 0.42rem 0.55rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--poshan-green);
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 245, 240, 0.94) 100%);
    border: 1px solid rgba(184, 150, 62, 0.38);
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    cursor: pointer;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.shop-card-variant:hover {
    border-color: rgba(184, 150, 62, 0.58);
    background: #fff;
}

.shop-card-variant:focus {
    outline: none;
    border-color: var(--poshan-gold);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(184, 150, 62, 0.14);
}

.shop-card-variant option {
    font-weight: 500;
    color: var(--poshan-green);
    background: #fff;
}

.shop-card-variant-static {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 3.25rem;
    padding: 0.42rem 0.65rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--poshan-green);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 245, 240, 0.94) 100%);
    border: 1px solid rgba(184, 150, 62, 0.32);
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    white-space: nowrap;
}

.shop-card-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex: 0 0 auto;
    padding: 0.22rem 0.4rem;
    border: 1px solid rgba(184, 150, 62, 0.32);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 245, 240, 0.88) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.shop-card-qty-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--poshan-text-muted);
    margin-right: 0.05rem;
}

.shop-card-qty-btn {
    width: 1.45rem;
    height: 1.45rem;
    border: none;
    border-radius: 50%;
    background: var(--poshan-cream);
    color: var(--poshan-green);
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-card-qty-btn:hover {
    background: var(--poshan-green);
    color: #fff;
}

.shop-card-qty-value {
    min-width: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--poshan-text);
}

.shop-weight {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--poshan-text-muted);
    font-weight: 500;
}

.shop-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.2;
    color: var(--poshan-green);
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: 'tnum' 1, 'lnum' 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
    min-width: 3.25rem;
}

.shop-card-actions {
    display: flex;
    gap: 0.75rem;
}

.shop-card-actions .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    flex: 1;
}

/* Why Different */
.why-diff-section {
    padding: 5.5rem 0;
    background: var(--poshan-cream-dark);
    position: relative;
    overflow: hidden;
}

.why-diff-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 45% at 15% 10%, rgba(184, 150, 62, 0.09), transparent 55%),
        radial-gradient(ellipse 55% 40% at 90% 85%, rgba(27, 48, 34, 0.05), transparent 50%);
    pointer-events: none;
}

.why-diff-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 62, 0.35), transparent);
    pointer-events: none;
}

.why-diff-section .container {
    position: relative;
    z-index: 1;
}

.diff-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(184, 150, 62, 0.22);
    padding: 2.5rem 2rem 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(27, 48, 34, 0.05);
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

.diff-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--poshan-green), var(--poshan-gold), var(--poshan-green));
    opacity: 0.85;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.diff-icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    margin-bottom: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--poshan-green);
    border: 2px solid var(--poshan-gold-light);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.9),
        0 4px 0 var(--poshan-gold),
        0 14px 32px rgba(27, 48, 34, 0.14);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background 0.45s ease;
}

.diff-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px dashed rgba(184, 150, 62, 0.3);
    transition: border-color 0.45s ease, transform 0.45s ease;
}

.diff-icon-wrap i {
    font-size: 1.35rem;
    color: #fff;
    transition: transform 0.45s ease;
}

.diff-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diff-card h4 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--poshan-green);
    margin: 0;
    line-height: 1.3;
    transition: color 0.35s ease;
}

.diff-card p {
    font-size: 0.94rem;
    font-weight: 400;
    color: var(--poshan-text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 28ch;
}

.diff-card-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, 0.65) 50%, transparent 90%);
    transform: skewX(-18deg);
    pointer-events: none;
    opacity: 0;
}

.diff-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 150, 62, 0.45);
    box-shadow:
        0 28px 56px rgba(27, 48, 34, 0.12),
        0 0 0 1px rgba(184, 150, 62, 0.12);
}

.diff-card:hover .diff-card-accent {
    height: 5px;
    opacity: 1;
}

.diff-card:hover .diff-icon-wrap {
    transform: translateY(-4px) scale(1.04);
    background: var(--poshan-green-light);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.95),
        0 6px 0 var(--poshan-gold),
        0 18px 40px rgba(27, 48, 34, 0.18);
}

.diff-card:hover .diff-icon-wrap::after {
    border-color: rgba(184, 150, 62, 0.55);
    transform: rotate(12deg);
}

.diff-card:hover .diff-icon-wrap i {
    transform: scale(1.12);
}

.diff-card:hover h4 {
    color: var(--poshan-green-light);
}

.diff-card:hover .diff-card-shine {
    opacity: 1;
    animation: diffShineSweep 0.85s ease forwards;
}

/* Wide bottom row — horizontal editorial layout */
.diff-card--wide {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.75rem;
    padding: 2rem 2.25rem;
}

.diff-card--wide .diff-icon-wrap {
    margin-bottom: 0;
    margin-top: 0.25rem;
}

.diff-card--wide .diff-card-content {
    gap: 0.65rem;
}

.diff-card--wide p {
    max-width: none;
}

.diff-card.is-animated .diff-icon-wrap {
    animation: diffIconPop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.diff-cards-row > .col-md-6:nth-child(2) .diff-card.is-animated .diff-icon-wrap {
    animation-delay: 0.1s;
}

.diff-cards-row > .col-md-6:nth-child(3) .diff-card.is-animated .diff-icon-wrap {
    animation-delay: 0.2s;
}

.diff-cards-row > .col-md-6:nth-child(4) .diff-card.is-animated .diff-icon-wrap {
    animation-delay: 0.25s;
}

.diff-cards-row > .col-md-6:nth-child(5) .diff-card.is-animated .diff-icon-wrap {
    animation-delay: 0.3s;
}

@keyframes diffShineSweep {
    from { left: -120%; }
    to { left: 140%; }
}

@keyframes diffIconPop {
    0% { transform: scale(0.65); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 767.98px) {
    .diff-card--wide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .diff-card--wide .diff-icon-wrap {
        margin-top: 0;
    }

    .diff-card--wide p {
        max-width: 28ch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .diff-card.is-animated .diff-icon-wrap,
    .diff-card:hover .diff-card-shine {
        animation: none !important;
    }

    .diff-card:hover {
        transform: none;
    }

    .diff-card:hover .diff-icon-wrap::after {
        transform: none;
    }
}

/* Ingredient story */
.ingredient-story-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.ingredient-tile {
    aspect-ratio: 1;
    background: var(--poshan-cream);
    border: 1px solid var(--poshan-gold-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    transition: border-color 0.3s;
}

.ingredient-tile:hover {
    border-color: var(--poshan-gold);
}

.ingredient-tile span {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--poshan-green);
}

.ingredient-story-text {
    max-width: 520px;
    margin: 2.5rem auto 0;
    color: var(--poshan-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Kitchen / process */
.kitchen-section {
    padding: 5rem 0;
    background: var(--poshan-cream);
}

.kitchen-text {
    color: var(--poshan-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--poshan-cream-dark);
    border: 1px solid var(--poshan-gold-subtle);
}

.process-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--poshan-gold);
    margin-bottom: 0.35rem;
}

.process-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--poshan-green);
}

.process-arrow {
    color: var(--poshan-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* When to enjoy */
.enjoy-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
}

.audience-section {
    padding: 5.5rem 0;
    background: var(--poshan-cream);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 150, 62, 0.18);
    border-bottom: 1px solid rgba(184, 150, 62, 0.18);
}

.audience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 12% 20%, rgba(27, 48, 34, 0.05), transparent 55%),
        radial-gradient(ellipse 45% 35% at 88% 75%, rgba(184, 150, 62, 0.07), transparent 50%);
    pointer-events: none;
}

.audience-section .container {
    position: relative;
    z-index: 1;
}

.audience-section .enjoy-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(184, 150, 62, 0.24);
    box-shadow: 0 6px 24px rgba(27, 48, 34, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.audience-section .enjoy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 150, 62, 0.4);
    box-shadow: 0 16px 40px rgba(27, 48, 34, 0.09);
}

.enjoy-card {
    background: var(--poshan-cream);
    border: 1px solid var(--poshan-gold-subtle);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}

.enjoy-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--poshan-gold);
    line-height: 1;
}

.enjoy-icon i {
    font-size: 1.65rem;
    color: var(--poshan-green);
}

.audience-card .enjoy-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    text-align: center;
    background: linear-gradient(145deg, #2f5240 0%, var(--poshan-green) 42%, #142218 100%);
    border: 2px solid var(--poshan-gold-light);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -3px 0 rgba(0, 0, 0, 0.18),
        0 4px 0 var(--poshan-gold),
        0 7px 0 rgba(184, 150, 62, 0.35),
        0 12px 22px rgba(27, 48, 34, 0.22);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.audience-card .enjoy-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.audience-card .enjoy-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35),
        0 2px 0 rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.28);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.audience-section .enjoy-card:hover .enjoy-icon {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15),
        0 6px 0 var(--poshan-gold),
        0 10px 0 rgba(184, 150, 62, 0.4),
        0 18px 32px rgba(27, 48, 34, 0.24);
}

.audience-section .enjoy-card:hover .enjoy-icon i {
    transform: scale(1.08);
}

.enjoy-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.enjoy-card p {
    font-size: 0.9rem;
    color: var(--poshan-text-muted);
    line-height: 1.6;
    margin: 0;
}

.audience-section .section-lead {
    margin-bottom: 0;
}

.audience-card {
    text-align: left;
}

.audience-hook {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--poshan-gold);
    margin-bottom: 0.5rem !important;
    line-height: 1.5;
}

.enjoy-card p.audience-hook,
.audience-card .audience-hook {
    color: var(--poshan-gold);
    font-weight: 600;
}

.audience-link {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--poshan-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.audience-link:hover {
    color: var(--poshan-green);
}

/* Customer testimonials */
.reviews-section {
    padding: 5.5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--poshan-gold);
    box-shadow: inset 0 8px 24px rgba(27, 48, 34, 0.04);
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 40% at 20% 0%, rgba(184, 150, 62, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 35% at 85% 100%, rgba(27, 48, 34, 0.04), transparent 50%);
    pointer-events: none;
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-row {
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.85rem 1.75rem;
    background: var(--poshan-cream-dark);
    border: 1px solid rgba(184, 150, 62, 0.28);
    box-shadow: 0 10px 32px rgba(27, 48, 34, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.65rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: rgba(184, 150, 62, 0.14);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 150, 62, 0.42);
    box-shadow: 0 22px 48px rgba(27, 48, 34, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.15rem;
    color: var(--poshan-gold);
    font-size: 0.85rem;
}

.testimonial-stars i {
    filter: drop-shadow(0 1px 1px rgba(184, 150, 62, 0.35));
}

.testimonial-quote {
    flex: 1;
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--poshan-text-muted);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 150, 62, 0.18);
}

.testimonial-avatar {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, var(--poshan-green-light) 0%, var(--poshan-green) 100%);
    border: 2px solid var(--poshan-gold-light);
    box-shadow:
        0 3px 0 var(--poshan-gold),
        0 8px 18px rgba(27, 48, 34, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-initials {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    color: var(--poshan-green);
    line-height: 1.2;
}

.testimonial-detail {
    font-size: 0.8rem;
    color: var(--poshan-text-muted);
    line-height: 1.4;
}

.reviews-invite {
    font-size: 0.9rem;
    color: var(--poshan-text-muted);
    margin: 0;
}

.reviews-invite a {
    color: var(--poshan-gold);
    font-weight: 600;
    text-decoration: none;
}

.reviews-invite a:hover {
    color: var(--poshan-green);
    text-decoration: underline;
}

/* Corporate */
.corporate-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
}

.corporate-box {
    background: var(--poshan-green);
    color: var(--poshan-cream);
    padding: 3rem;
    border-top: 3px solid var(--poshan-gold);
}

.corporate-box .section-title {
    color: var(--poshan-cream);
}

.corporate-text {
    color: rgba(249, 245, 240, 0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.corporate-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.corporate-list li {
    font-size: 0.9rem;
    font-weight: 500;
}

.corporate-list li i {
    color: var(--poshan-gold-light);
    margin-right: 0.5rem;
}

.corporate-box .btn-poshan {
    background: var(--poshan-cream);
    color: var(--poshan-green);
    border-color: var(--poshan-gold);
}

.corporate-box .btn-poshan:hover {
    background: transparent;
    color: var(--poshan-cream);
    border-color: var(--poshan-cream);
}

/* Story teaser */
.story-teaser-section {
    padding: 5rem 0;
    background: var(--poshan-cream);
}

.story-teaser-text {
    max-width: 620px;
    margin: 0 auto 1rem;
    color: var(--poshan-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Social / Instagram */
.social-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-tile {
    aspect-ratio: 1;
    background: var(--poshan-cream);
    border: 1px solid var(--poshan-gold-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--poshan-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.social-tile i {
    font-size: 1.5rem;
    color: var(--poshan-gold);
}

/* Final CTA */
.final-cta-section {
    padding: 5rem 0;
    background: var(--poshan-cream);
    border-top: 1px solid var(--poshan-gold-subtle);
}

.final-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    font-style: italic;
    color: var(--poshan-green);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.final-cta-text {
    color: var(--poshan-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(27, 48, 34, 0.1);
    border: 1px solid var(--poshan-gold-subtle);
}

/* Full footer */
.poshan-footer-full {
    background: var(--poshan-green);
    color: rgba(249, 245, 240, 0.75);
    padding: 4rem 0 0;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 88px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-tagline-main {
    font-size: 0.85rem;
    color: rgba(249, 245, 240, 0.65);
    line-height: 1.6;
    margin: 0;
}

.poshan-footer-full h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--poshan-gold-light);
    margin-bottom: 1.25rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.6rem;
}

.footer-links-list a {
    color: rgba(249, 245, 240, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: var(--poshan-gold-light);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(249, 245, 240, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(249, 245, 240, 0.5);
}

/* Section Styles (legacy block — merged above) */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--poshan-gold);
    margin: -2rem auto 0;
}

/* Why Poshan+ */
.why-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--poshan-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    background: var(--poshan-cream);
}

.why-card h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--poshan-green);
}

/* Product Cards */
.products-section {
    padding: 5rem 0;
    background: var(--poshan-cream);
    position: relative;
    border-top: 1px solid rgba(184, 150, 62, 0.15);
    border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(27, 48, 34, 0.04), transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(184, 150, 62, 0.05), transparent 50%);
    pointer-events: none;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.product-card {
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    color: inherit;
}

.product-card-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 48, 34, 0.08);
    border: 1px solid var(--poshan-gold-subtle);
    margin-bottom: 1.25rem;
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
}

.product-card h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin-bottom: 0.25rem;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--poshan-text-muted);
    letter-spacing: 0.5px;
}

.product-label {
    display: inline-block;
    font-family: var(--font-body);
    background: var(--poshan-green);
    color: var(--poshan-cream);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--poshan-gold);
}

/* Ingredients Bar */
.ingredients-section {
    padding: 4rem 0;
    background: var(--poshan-green);
    color: var(--poshan-cream);
    text-align: center;
    border-top: 3px solid var(--poshan-gold);
    border-bottom: 3px solid var(--poshan-gold);
}

.ingredients-section h2 {
    color: var(--poshan-cream);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.ingredients-list {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--poshan-cream);
}

.ingredients-list span {
    color: var(--poshan-gold-light);
    margin: 0 0.5rem;
}

/* Fresh Section */
.fresh-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--poshan-cream);
}

.fresh-section h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.fresh-item {
    padding: 1.5rem;
}

.fresh-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--poshan-green);
    margin-top: 1rem;
}

.fresh-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--poshan-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--poshan-green);
    font-size: 1.25rem;
    background: var(--poshan-cream-dark);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--poshan-cream-dark);
}

.stars {
    color: var(--poshan-gold);
    font-size: 1.25rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--poshan-cream);
    padding: 2rem;
    border-left: 3px solid var(--poshan-gold);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(27, 48, 34, 0.05);
}

.testimonial-card p {
    font-style: italic;
    color: var(--poshan-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--poshan-green);
}

/* Story CTA */
.story-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--poshan-cream);
}

.story-section p {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: var(--poshan-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Order CTA */
.order-cta {
    padding: 5rem 0;
    background: var(--poshan-green);
    color: var(--poshan-cream);
    text-align: center;
    border-top: 3px solid var(--poshan-gold);
}

.order-cta h2 {
    color: var(--poshan-cream);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.order-cta p {
    color: rgba(249, 245, 240, 0.8);
    margin-bottom: 2rem;
}

.order-cta .btn-poshan {
    background: var(--poshan-cream);
    color: var(--poshan-green);
    border-color: var(--poshan-gold);
}

.order-cta .btn-poshan:hover {
    background: transparent;
    color: var(--poshan-cream);
    border-color: var(--poshan-cream);
}

/* Footer */
.poshan-footer {
    background: var(--poshan-green);
    color: rgba(249, 245, 240, 0.75);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid var(--poshan-gold-subtle);
}

.poshan-footer a {
    color: rgba(249, 245, 240, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.poshan-footer a:hover {
    color: var(--poshan-gold-light);
}

.poshan-footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.poshan-footer .footer-tagline {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--poshan-gold-light);
    opacity: 0.8;
    margin-top: 1rem;
}

.poshan-footer .social-icons a {
    font-size: 1.25rem;
    margin: 0 0.75rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--poshan-cream-dark);
    border-bottom: 1px solid var(--poshan-gold-subtle);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: 2px;
}

.page-header p {
    color: var(--poshan-text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--poshan-gold-subtle);
    padding: 1.5rem 0;
}

.faq-item h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--poshan-green);
    cursor: pointer;
}

.faq-item p {
    color: var(--poshan-text-muted);
    line-height: 1.7;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Login */
.login-card {
    padding: 2.25rem 2rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(184, 150, 62, 0.22);
    box-shadow: 0 12px 32px rgba(27, 48, 34, 0.06);
}

.login-note {
    font-size: 0.88rem;
    color: var(--poshan-text-muted);
}

.login-note a {
    color: var(--poshan-green);
    font-weight: 600;
    text-decoration: none;
}

.login-note a:hover {
    color: var(--poshan-gold);
}

/* B2B Order Form */
.order-form-section {
    padding: 3rem 0 5rem;
    background: var(--poshan-cream);
}

.order-form .form-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--poshan-green);
}

.order-form .form-control,
.order-form .form-select {
    background: var(--poshan-cream);
    border: 1px solid var(--poshan-gold-subtle);
    border-radius: 0;
    padding: 0.75rem 1rem;
    color: var(--poshan-green);
}

.order-form .form-control:focus,
.order-form .form-select:focus {
    border-color: var(--poshan-gold);
    box-shadow: 0 0 0 0.2rem var(--poshan-gold-subtle);
}

.product-row {
    background: var(--poshan-cream-dark);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--poshan-gold);
}

/* Bites Detail Page */
.bites-page-header {
    padding-bottom: 2.5rem;
}

.bites-header-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.65rem;
}

.bites-jump-nav {
    position: sticky;
    top: 78px;
    z-index: 1025;
    background: rgba(249, 245, 240, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 62, 0.22);
    box-shadow: 0 4px 20px rgba(27, 48, 34, 0.05);
}

.bites-jump-inner {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.bites-jump-inner::-webkit-scrollbar {
    display: none;
}

.bites-jump-link {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--poshan-green);
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(184, 150, 62, 0.28);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.bites-jump-link:hover,
.bites-jump-link.active {
    background: var(--poshan-green);
    border-color: var(--poshan-green);
    color: #fff;
    box-shadow: 0 3px 0 var(--poshan-gold);
}

.bite-detail {
    padding: 4rem 0;
    scroll-margin-top: 5.5rem;
}

.bite-detail--light {
    background: var(--poshan-cream);
}

.bite-detail--warm {
    background: var(--poshan-cream-dark);
}

.bite-image-frame {
    position: relative;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(184, 150, 62, 0.24);
    box-shadow: 0 20px 50px rgba(27, 48, 34, 0.1);
}

.bite-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--poshan-green), var(--poshan-gold), var(--poshan-green));
}

.bite-image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.bite-content-card {
    padding: 0.25rem 0;
}

.bite-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.5rem;
}

.bite-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--poshan-green) !important;
    margin-bottom: 1rem;
}

.bite-ingredient-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.bite-ingredient-chips span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--poshan-green);
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(184, 150, 62, 0.28);
}

.bite-detail--warm .bite-ingredient-chips span {
    background: rgba(255, 255, 255, 0.55);
}

.bite-desc {
    color: var(--poshan-text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.bite-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.bite-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(184, 150, 62, 0.2);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--poshan-green);
}

.bite-detail--warm .bite-benefit-item {
    background: rgba(255, 255, 255, 0.5);
}

.bite-benefit-item i {
    color: var(--poshan-gold);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.bite-special {
    margin-bottom: 1.5rem;
}

.bite-special-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin-bottom: 1rem;
}

.bite-special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.bite-special-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(184, 150, 62, 0.2);
}

.bite-detail--warm .bite-special-item {
    background: rgba(255, 255, 255, 0.5);
}

.bite-special-icon {
    font-size: 1.25rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.bite-special-item strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin-bottom: 0.25rem;
}

.bite-special-item p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--poshan-text-muted);
}

.bite-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(184, 150, 62, 0.2);
    border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.bite-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--poshan-green);
}

.bite-weight {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--poshan-text-muted);
}

.bite-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bite-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    justify-content: center;
}

.bite-benefits {
    list-style: none;
    padding: 0;
}

.bite-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--poshan-green);
}

.bite-benefits li i {
    color: var(--poshan-gold);
    width: 20px;
}

.badge-poshan {
    background: var(--poshan-green);
    color: var(--poshan-cream);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 0;
    border-bottom: 2px solid var(--poshan-gold);
}

@media (max-width: 991.98px) {
    .bite-detail {
        scroll-margin-top: 4.5rem;
    }

    .bite-benefits-grid {
        grid-template-columns: 1fr;
    }

    .bite-special-grid {
        grid-template-columns: 1fr;
    }

    .bite-actions .btn {
        flex: 1 1 100%;
    }
}

/* Contact */
.contact-info-card {
    background: var(--poshan-cream-dark);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(27, 48, 34, 0.05);
    border: 1px solid var(--poshan-gold-subtle);
    height: 100%;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--poshan-gold);
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--poshan-green);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    left: auto;
    z-index: 99;
    display: none;
    background: var(--poshan-green) !important;
    border: 1px solid var(--poshan-gold) !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-split {
        padding: 7rem 0 4rem;
    }

    .hero-product-showcase {
        min-height: 320px;
        margin-top: 1rem;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        width: 100%;
    }

    .process-arrow {
        transform: rotate(0deg);
    }

    .corporate-box {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-heading-line:first-child {
        white-space: normal;
    }

    .poshan-logo img {
        height: 58px;
    }

    .footer-logo img {
        height: 68px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .shop-card-actions {
        flex-direction: column;
    }

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

    .corporate-list {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Cart & Checkout */
.order-page-header {
    padding-bottom: 2.5rem;
}

.order-header-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.75rem;
}

.cart-alert {
    border: 1px solid rgba(184, 150, 62, 0.35);
    background: rgba(255, 255, 255, 0.85);
    color: var(--poshan-green);
    margin-bottom: 2rem;
}

.cart-panel-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    color: var(--poshan-green);
    margin-bottom: 0.35rem;
}

.cart-panel-title--with-count {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.cart-panel-count {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--poshan-text-muted);
}

.cart-panel-lead {
    font-size: 0.9rem;
    color: var(--poshan-text-muted);
    margin-bottom: 0;
}

.cart-order-panel,
.cart-catalog-panel,
.checkout-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(184, 150, 62, 0.24);
    padding: 1.5rem;
}

.cart-order-panel {
    margin-bottom: 1.5rem;
}

.cart-order-panel-head,
.cart-catalog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.cart-count-pill {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--poshan-green);
    background: rgba(184, 150, 62, 0.16);
    border: 1px solid rgba(184, 150, 62, 0.35);
    padding: 0.4rem 0.75rem;
}

.cart-order-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cart-empty {
    text-align: center;
    padding: 2.5rem 1.25rem;
    background: rgba(249, 245, 240, 0.75);
    border: 1px dashed rgba(184, 150, 62, 0.35);
}

.cart-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 150, 62, 0.12);
    color: var(--poshan-gold);
    font-size: 1.5rem;
}

.cart-empty h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--poshan-green);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--poshan-text-muted);
    margin-bottom: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.cart-order-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(249, 245, 240, 0.85);
    border: 1px solid rgba(184, 150, 62, 0.22);
}

.cart-order-item-image img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(184, 150, 62, 0.2);
}

.cart-order-item-details h3 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin-bottom: 0.25rem;
}

.cart-order-item-meta {
    font-size: 0.82rem;
    color: var(--poshan-text-muted);
    margin-bottom: 0.65rem;
}

.cart-order-item-side {
    text-align: right;
    min-width: 92px;
}

.cart-order-item-total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--poshan-green);
    margin-bottom: 0.5rem;
}

.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(184, 150, 62, 0.28);
    background: #fff;
    padding: 0.2rem 0.45rem;
}

.cart-qty-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--poshan-text-muted);
    margin-right: 0.15rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: var(--poshan-green);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

.cart-qty-value {
    min-width: 1.25rem;
    text-align: center;
    font-weight: 600;
    color: var(--poshan-green);
}

.cart-remove-btn {
    border: 0;
    background: transparent;
    color: var(--poshan-text-muted);
    font-size: 0.78rem;
    padding: 0;
}

.cart-remove-btn:hover {
    color: var(--poshan-green);
}

.cart-catalog-panel {
    margin-bottom: 1rem;
}

.cart-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(249, 245, 240, 0.9);
    border: 1px solid rgba(184, 150, 62, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(27, 48, 34, 0.08);
}

.cart-product-card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.cart-product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--poshan-green);
    padding: 0.35rem 0.55rem;
}

.cart-product-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cart-product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin-bottom: 0.35rem;
}

.cart-product-ingredients {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--poshan-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cart-product-from {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin-bottom: 0.85rem;
}

.cart-product-field-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--poshan-text-muted);
    margin-bottom: 0.35rem;
}

.cart-product-card .form-select {
    margin-bottom: 0.75rem;
}

.cart-product-details-link {
    display: block;
    text-align: center;
    margin-top: 0.65rem;
    font-size: 0.82rem;
    color: var(--poshan-text-muted);
    text-decoration: none;
}

.cart-product-details-link:hover {
    color: var(--poshan-green);
}

.checkout-sidebar {
    position: sticky;
    top: 6.5rem;
}

.checkout-panel + .checkout-panel {
    margin-top: 1rem;
}

.checkout-panel--form {
    padding-bottom: 1.25rem;
}

.checkout-next-steps {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.82rem;
    color: var(--poshan-text-muted);
    line-height: 1.55;
}

.checkout-next-steps li + li {
    margin-top: 0.2rem;
}

.checkout-next-steps li::marker {
    color: var(--poshan-gold);
    font-weight: 700;
}

.order-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.order-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--poshan-green);
}

.order-summary-line-info {
    flex: 1;
    min-width: 0;
}

.order-summary-line strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.15rem;
}

.order-summary-line-info span {
    color: var(--poshan-text-muted);
    font-size: 0.78rem;
}

.order-summary-line-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.order-summary-line-price {
    color: var(--poshan-green);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.order-summary-remove-btn {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(184, 150, 62, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: var(--poshan-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.order-summary-remove-btn:hover {
    color: #842029;
    border-color: rgba(220, 53, 69, 0.35);
    background: rgba(220, 53, 69, 0.06);
}

.order-summary-empty {
    padding: 0.75rem 0 1rem;
    border-bottom: 1px solid rgba(184, 150, 62, 0.2);
    margin-bottom: 1rem;
}

.order-summary-empty p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--poshan-text-muted);
}

.order-summary-total {
    padding-top: 0.25rem;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--poshan-green);
}

.order-summary-row + .order-summary-row {
    margin-top: 0.5rem;
}

.order-summary-row small {
    color: var(--poshan-text-muted);
    font-weight: 400;
}

.order-summary-note span:last-child {
    color: var(--poshan-text-muted);
    font-size: 0.82rem;
}

.checkout-message {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    border: 1px solid rgba(184, 150, 62, 0.35);
}

.checkout-message--error {
    background: rgba(220, 53, 69, 0.08);
    color: #842029;
}

.checkout-alt {
    font-size: 0.85rem;
    color: var(--poshan-text-muted);
}

.checkout-result-section {
    padding: 8rem 0 5rem;
    min-height: 70vh;
}

.checkout-result-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(184, 150, 62, 0.24);
    padding: 2.5rem 2rem;
}

.checkout-result-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}

.checkout-result-icon.success {
    background: rgba(27, 48, 34, 0.12);
    color: var(--poshan-green);
}

.checkout-result-icon.warning,
.checkout-result-icon.failed {
    background: rgba(184, 150, 62, 0.15);
    color: var(--poshan-gold);
}

.checkout-order-id,
.checkout-order-amount {
    color: var(--poshan-text-muted);
}

.checkout-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
    .cart-order-item {
        grid-template-columns: 72px 1fr;
    }

    .cart-order-item-side {
        grid-column: 2;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cart-order-item-image img {
        width: 72px;
        height: 72px;
    }

    .checkout-sidebar {
        position: static;
    }
}

/* Portal: cart drawer, auth modal, toasts */
.cart-offcanvas {
    width: min(440px, 100vw);
    background: linear-gradient(180deg, #fffdf9 0%, var(--poshan-cream) 100%);
    border-left: 1px solid rgba(184, 150, 62, 0.28);
    box-shadow: -24px 0 60px rgba(27, 48, 34, 0.12);
    z-index: 1080;
}

.offcanvas-backdrop {
    z-index: 1075;
}

.cart-offcanvas-header {
    position: relative;
    padding: 1.5rem 1.35rem 1.25rem;
    border-bottom: 1px solid rgba(184, 150, 62, 0.2);
    background: rgba(255, 255, 255, 0.72);
}

.cart-offcanvas-header::after {
    content: '';
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--poshan-green), var(--poshan-gold), var(--poshan-green));
    opacity: 0.65;
}

.cart-offcanvas-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.35rem;
}

.cart-offcanvas-header .offcanvas-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    font-style: italic;
    color: var(--poshan-green);
    margin-bottom: 0.2rem;
}

.cart-offcanvas-meta {
    font-size: 0.8rem;
    color: var(--poshan-text-muted);
    margin: 0;
}

.cart-offcanvas-close {
    opacity: 0.55;
}

.cart-offcanvas-body {
    padding: 1rem 1.1rem 1.25rem;
}

.cart-drawer-items {
    overflow-y: auto;
    padding-right: 0.15rem;
    margin-bottom: 0.5rem;
}

.cart-drawer-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: var(--poshan-gold);
    font-size: 1.25rem;
}

.cart-drawer-empty {
    text-align: center;
    padding: 2.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px dashed rgba(184, 150, 62, 0.35);
}

.cart-drawer-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 150, 62, 0.12);
    color: var(--poshan-gold);
    font-size: 1.25rem;
}

.cart-drawer-empty h6 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--poshan-green);
    margin-bottom: 0.35rem;
}

.cart-drawer-empty p {
    font-size: 0.84rem;
    color: var(--poshan-text-muted);
    margin-bottom: 1rem;
}

.cart-drawer-card {
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(184, 150, 62, 0.22);
    box-shadow: 0 8px 24px rgba(27, 48, 34, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-drawer-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(27, 48, 34, 0.08);
}

.cart-drawer-card-image {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    padding: 0.2rem;
    background: rgba(249, 245, 240, 0.9);
    border: 1px solid rgba(184, 150, 62, 0.2);
}

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

.cart-drawer-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-drawer-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.cart-drawer-card-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin: 0 0 0.2rem;
    line-height: 1.35;
}

.cart-drawer-card-meta {
    font-size: 0.74rem;
    color: var(--poshan-text-muted);
    margin: 0;
}

.cart-drawer-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.65rem;
}

.cart-drawer-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(184, 150, 62, 0.28);
    background: var(--poshan-cream);
}

.cart-drawer-qty-btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: var(--poshan-green);
    font-size: 1rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

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

.cart-drawer-qty-value {
    min-width: 1.75rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--poshan-green);
}

.cart-drawer-line-total {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--poshan-green);
    white-space: nowrap;
}

.cart-drawer-remove {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(184, 150, 62, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: var(--poshan-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cart-drawer-remove:hover {
    color: #842029;
    border-color: rgba(220, 53, 69, 0.3);
    background: rgba(220, 53, 69, 0.06);
}

.cart-drawer-footer {
    border-top: 1px solid rgba(184, 150, 62, 0.24);
    padding-top: 1rem;
    background: rgba(255, 255, 255, 0.55);
    margin: 0 -0.15rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
}

.cart-drawer-summary {
    margin-bottom: 1rem;
    padding: 0.85rem 0.9rem;
    background: rgba(249, 245, 240, 0.95);
    border: 1px solid rgba(184, 150, 62, 0.22);
}

.cart-drawer-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--poshan-green);
}

.cart-drawer-summary-row strong {
    font-size: 1.05rem;
}

.cart-drawer-summary-note {
    margin: 0.45rem 0 0;
    font-size: 0.72rem;
    color: var(--poshan-text-muted);
}

.auth-modal-dialog {
    max-width: 480px;
}

.auth-modal-content {
    border: 1px solid rgba(184, 150, 62, 0.32);
    border-radius: 2px;
    background: linear-gradient(165deg, #fffef9 0%, #f9f5f0 48%, #f3ebe0 100%);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 28px 70px rgba(27, 48, 34, 0.18),
        0 8px 24px rgba(184, 150, 62, 0.12);
}

.auth-modal-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--poshan-green) 0%, var(--poshan-gold) 50%, var(--poshan-green) 100%);
    z-index: 3;
}

.auth-modal-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 150, 62, 0.18) 0%, rgba(184, 150, 62, 0) 70%);
    pointer-events: none;
}

.auth-modal-body {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem 1.65rem;
}

.auth-modal-brand {
    text-align: center;
    margin-bottom: 0.85rem;
}

.auth-modal-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.15rem;
}

.auth-modal-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(184, 150, 62, 0.22);
    border-radius: 999px;
}

.auth-modal-logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 0.85rem;
    object-fit: contain;
}

.auth-modal-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin: 0;
    font-weight: 600;
}

.auth-modal-tab {
    border: 0;
    background: transparent;
    color: var(--poshan-text-muted);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    transition: all 0.22s ease;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
}

.auth-modal-tab:hover {
    color: var(--poshan-green);
}

.auth-modal-tab.is-active {
    background: var(--poshan-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27, 48, 34, 0.16);
}

.auth-modal-intro {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 150, 62, 0.18);
}

.auth-modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    font-style: italic;
    color: var(--poshan-green);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.auth-modal-lead {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--poshan-text-muted);
    margin-bottom: 0;
}

.auth-field {
    margin-bottom: 1rem;
}

.auth-field-error {
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    color: #842029;
    line-height: 1.4;
}

.auth-input.is-invalid {
    border-color: rgba(220, 53, 69, 0.55);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.auth-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--poshan-green);
    margin-bottom: 0.45rem;
}

.auth-label-note {
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--poshan-text-muted);
    font-size: 0.62rem;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(184, 150, 62, 0.85);
    font-size: 0.82rem;
    pointer-events: none;
    z-index: 1;
}

.auth-input {
    border: 1px solid rgba(184, 150, 62, 0.28);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
    padding: 0.78rem 0.95rem 0.78rem 2.65rem;
    font-size: 0.9rem;
    color: var(--poshan-green);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-input::placeholder {
    color: rgba(27, 48, 34, 0.38);
}

.auth-input:focus {
    border-color: var(--poshan-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.14);
    color: var(--poshan-green);
}

.auth-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    margin-top: 0.35rem;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 28px rgba(27, 48, 34, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(27, 48, 34, 0.2);
}

#authModal {
    z-index: 1060;
}

#authModal.show {
    display: block;
}

.modal-backdrop,
#poshanAuthBackdrop {
    z-index: 1055;
}

body.modal-open .poshan-portal-icon,
body.modal-open .poshan-navbar {
    pointer-events: auto;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.auth-modal-close:hover {
    opacity: 1;
}

.auth-db-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.8rem;
    color: #842029;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.auth-form-message {
    margin-bottom: 1rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
    border: 1px solid rgba(184, 150, 62, 0.28);
    border-radius: 0;
}

.auth-form-message--error {
    color: #842029;
    background: rgba(220, 53, 69, 0.08);
}

.auth-form-message--success {
    color: var(--poshan-green);
    background: rgba(27, 48, 34, 0.08);
}

.auth-password-wrap .auth-input {
    padding-right: 2.75rem;
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--poshan-text-muted);
    padding: 0.15rem 0.35rem;
    line-height: 1;
    z-index: 2;
}

.auth-password-toggle:hover {
    color: var(--poshan-green);
}

@media (max-width: 575.98px) {
    .auth-modal-body {
        padding: 1.65rem 1.35rem 1.35rem;
    }

    .auth-modal-title {
        font-size: 1.5rem;
    }
}

.profile-details {
    margin: 0;
}

.profile-details dt {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--poshan-text-muted);
    margin-top: 0.85rem;
}

.profile-details dt:first-child {
    margin-top: 0;
}

.profile-details dd {
    margin: 0.15rem 0 0;
    font-size: 0.95rem;
    color: var(--poshan-green);
    font-weight: 500;
}

.poshan-account-menu {
    border: 1px solid rgba(184, 150, 62, 0.24);
    border-radius: 0;
    min-width: 180px;
}

.poshan-account-menu .dropdown-item-text {
    font-size: 0.82rem;
    color: var(--poshan-text-muted);
}

.poshan-toast {
    position: fixed;
    top: 5.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    z-index: 2000;
    padding: 0.75rem 1.1rem;
    background: var(--poshan-green);
    color: #fff;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: min(92vw, 420px);
    text-align: center;
}

.poshan-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.poshan-toast--error {
    background: #842029;
}

.poshan-toast--success {
    background: var(--poshan-green);
}

.checkout-item-row,
.checkout-payment-note {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(184, 150, 62, 0.18);
    font-size: 0.9rem;
}

.checkout-payment-note {
    display: block;
    background: rgba(184, 150, 62, 0.1);
    border: 1px solid rgba(184, 150, 62, 0.24);
    padding: 0.85rem;
    font-size: 0.82rem;
    color: var(--poshan-text-muted);
}

.order-confirmation-items {
    text-align: left;
    margin: 1.25rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 150, 62, 0.2);
}

.orders-status-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    background: rgba(184, 150, 62, 0.15);
    color: var(--poshan-green);
}

.orders-status-pending_payment {
    background: rgba(184, 150, 62, 0.18);
}

.orders-status-paid {
    background: rgba(27, 48, 34, 0.12);
}

.orders-status-payment_failed {
    background: rgba(220, 53, 69, 0.12);
    color: #842029;
}

.orders-status-cancelled {
    background: rgba(108, 117, 125, 0.15);
    color: #495057;
}

/* My Orders page */
.orders-page-header {
    position: relative;
}

.orders-header-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.45rem;
}

.orders-section {
    position: relative;
}

.orders-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 0%, rgba(184, 150, 62, 0.07), transparent 55%),
        radial-gradient(ellipse 50% 35% at 95% 100%, rgba(27, 48, 34, 0.05), transparent 50%);
    pointer-events: none;
}

.orders-section > .container {
    position: relative;
    z-index: 1;
}

.orders-empty-panel {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 245, 240, 0.95) 100%);
    border: 1px solid rgba(184, 150, 62, 0.28);
    box-shadow: 0 16px 40px rgba(27, 48, 34, 0.06);
}

.orders-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 150, 62, 0.12);
    color: var(--poshan-gold);
    font-size: 1.4rem;
}

.orders-empty-panel h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--poshan-green);
    margin-bottom: 0.5rem;
}

.orders-empty-panel p {
    color: var(--poshan-text-muted);
    max-width: 28rem;
    margin: 0 auto 1.25rem;
}

.orders-toolbar {
    margin-bottom: 1.25rem;
}

.orders-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.orders-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(184, 150, 62, 0.32);
    background: rgba(255, 255, 255, 0.82);
    color: var(--poshan-green);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.orders-filter-btn:hover,
.orders-filter-btn.is-active {
    background: var(--poshan-green);
    border-color: var(--poshan-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(27, 48, 34, 0.12);
}

.orders-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(184, 150, 62, 0.18);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.orders-filter-btn.is-active .orders-filter-count {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.orders-filter-empty {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    color: var(--poshan-text-muted);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.orders-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 245, 240, 0.94) 100%);
    border: 1px solid rgba(184, 150, 62, 0.28);
    box-shadow: 0 10px 28px rgba(27, 48, 34, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.orders-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(27, 48, 34, 0.09);
}

.orders-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--poshan-green), var(--poshan-gold), var(--poshan-green));
    opacity: 0.75;
}

.orders-card-main {
    padding: 1.15rem 1.25rem 1.1rem;
}

.orders-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.orders-card-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.2rem;
}

.orders-card-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--poshan-green);
    margin: 0 0 0.45rem;
    word-break: break-word;
}

.orders-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin: 0;
    font-size: 0.8rem;
    color: var(--poshan-text-muted);
}

.orders-card-meta i {
    color: var(--poshan-gold);
    margin-right: 0.25rem;
}

.orders-card-summary {
    text-align: right;
}

.orders-card-total {
    margin: 0.45rem 0 0;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--poshan-green);
}

.orders-detail-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--poshan-green);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.2s ease;
}

.orders-detail-toggle:hover {
    color: var(--poshan-gold);
}

.orders-detail-toggle-icon {
    font-size: 0.72rem;
    transition: transform 0.22s ease;
}

.orders-detail-toggle.is-open .orders-detail-toggle-icon {
    transform: rotate(180deg);
}

.orders-card-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 150, 62, 0.22);
}

.orders-details-block + .orders-details-block {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(184, 150, 62, 0.2);
}

.orders-details-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--poshan-gold);
    margin-bottom: 0.65rem;
}

.orders-details-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.orders-details-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 150, 62, 0.16);
}

.orders-details-item-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--poshan-green);
    margin-bottom: 0.15rem;
}

.orders-details-item-info span {
    font-size: 0.78rem;
    color: var(--poshan-text-muted);
}

.orders-details-item-price {
    font-size: 0.88rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--poshan-green);
    white-space: nowrap;
}

.orders-details-address,
.orders-details-notes {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--poshan-text-muted);
}

.orders-details-totals {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.orders-details-total-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.84rem;
    color: var(--poshan-text-muted);
}

.orders-details-total-row strong {
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--poshan-green);
}

.orders-details-total-row--grand {
    margin-top: 0.25rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(184, 150, 62, 0.2);
    font-size: 0.92rem;
    color: var(--poshan-green);
}

.orders-details-actions {
    margin-top: 1rem;
}

.orders-details-footer {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 150, 62, 0.2);
    display: flex;
    justify-content: center;
}

.orders-detail-toggle--bottom {
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(184, 150, 62, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
}

.orders-detail-toggle--bottom:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(184, 150, 62, 0.45);
}

@media (max-width: 575.98px) {
    .orders-card-summary {
        width: 100%;
        text-align: left;
    }

    .orders-filter-btn {
        font-size: 0.72rem;
        padding: 0.45rem 0.7rem;
    }
}

.checkout-user-greeting {
    font-size: 0.9rem;
    color: var(--poshan-text-muted);
}
