/* ============================================================
   MUD N GREEN PAGE-SPECIFIC STYLES
   Shared across: shop.php, product.php, cart.php, about.php
   ============================================================ */

/* ── Card image link (used on index product cards) ── */
.card-img-link {
    display: block;
    text-decoration: none;
}

/* ── Section-level helpers ── */
.section-label {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-sub {
    color: #888;
    margin-bottom: 40px;
    font-size: 15px;
}

/* ── Active nav link ── */
.nav-link.active {
    color: var(--green);
    background: rgba(124, 179, 66, 0.08);
    border-radius: 8px;
}

/* ── Toast Notifications ── */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--deep-purple);
    color: #fff;
    border-left: 4px solid var(--green);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.error {
    border-color: #e74c3c;
}

.toast.info {
    border-color: var(--olive);
}

.toast.fade-out {
    animation: toastOut 0.4s ease forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(60px);
    }
}

/* ── Home product card info layout fix ── */
.card-info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 20px !important;
}

.card-mini-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
    color: var(--text-dark);
}

.card-mini-size {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* ── Card Price Row ── */
.card-price-row {
    margin: 4px 0 0;
    width: 100%;
}

.card-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
}

.btn-mini-buy {
    margin-top: 12px !important;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700 !important;
}

/* ── Hero CTA Buttons ── */
.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-hero-cta {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
}

/* ── Offers section ── */
.offers-section {
    padding: 80px 20px;
    background: #ACC069;
}

.offers-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.offers-intro {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.offers-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    color: #1B2E1B;
    line-height: 1.50;
    margin-bottom: 18px;
}

.offers-copy {
    color: #606443;
    font-size: 16px;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 32px;
    background: rgba(8, 12, 16, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 147, 32, 0.14), transparent 35%);
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-12px) rotate(-1.5deg);
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.40);
}

.offer-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.offer-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(124, 179, 66, 0.12);
    border: 1px solid rgba(124, 179, 66, 0.24);
}

.offer-card-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.offer-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.offer-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

@media (max-width: 980px) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .offers-section {
        padding: 60px 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 26px;
    }
}

.btn-hero-cta:hover {
    background: var(--orange-matte);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.5);
}

.btn-hero-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
}

/* ── Card product slug-based bg ── */
.card-img-container.product-regular {
    background: linear-gradient(135deg, #2C4A1E, #4A7A2E);
}

.card-img-container.product-premium {
    background: linear-gradient(135deg, #3D2B1A, #6B4423);
}

.card-img-container.product-royal {
    background: linear-gradient(135deg, #1A2B3D, #2E4A6B);
}

/* ── Card product slug-based image bg - match home page exactly ── */
.card-img-container.product-regular {
    background: #701338;
}

.card-img-container.product-premium {
    background: #fe7926;
}

.card-img-container.product-royal {
    background: #275099;
}

/* ================================================================
   SHOP PAGE
   ================================================================ */
.shop-main {
    background: var(--bg);
}

.shop-hero {
    background: var(--deep-purple);
    padding: 80px 50px 0;
    text-align: center;
    overflow: hidden;
}

.shop-hero-tag {
    display: inline-block;
    background: rgba(124, 179, 66, 0.15);
    border: 1px solid rgba(124, 179, 66, 0.3);
    color: var(--green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.shop-hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
}

.shop-hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.category-ticker {
    background: var(--orange);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: ticker 20s linear infinite;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.ticker-inner span {
    padding-right: 60px;
}

.shop-grid-section {
    padding: 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

/* ── Shop card - matches makhana-card-mini style from home ── */
.shop-card {
    background: var(--card-body-bg, #fff);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--text-dark);
    box-shadow: 10px 10px 0px var(--card-shadow, var(--text-dark));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: none;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 16px 16px 0px var(--card-shadow, var(--text-dark));
}

.shop-card-img-wrap {
    display: block;
    position: relative;
    height: 240px;
    background: var(--card-img-bg, #1B2E1B);
    overflow: hidden;
}

.shop-card-img-main {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: absolute;
    top: 10%;
    left: 10%;
    transition: all 0.5s ease;
    z-index: 2;
}

.shop-card-img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
    z-index: 3;
    padding: 0;
}

.shop-card-img-wrap:hover .shop-card-img-hover {
    opacity: 1;
    transform: scale(1);
}

.shop-card-img-wrap:hover .shop-card-img-main {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
}

.shop-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--card-accent, #7CB342);
    color: var(--deep-purple);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.shop-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    border-top: 1px solid var(--text-dark);
}

.shop-card-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.shop-card-tagline {
    font-size: 12px;
    color: var(--card-accent, var(--orange));
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.shop-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 4px 0;
}

/* Variation Picker Modal */
.variation-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.variation-modal.active {
    opacity: 1;
    visibility: visible;
}

.variation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.variation-modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    min-width: 320px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.variation-modal.active .variation-modal-content {
    transform: translateY(0);
}

.variation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: background 0.2s, color 0.2s;
}

.variation-modal-close:hover {
    background: #e0e0e0;
    color: #1A1A1A;
}

.variation-modal-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 20px;
    color: #1A1A1A;
}

.variation-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.variation-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.variation-option:hover {
    border-color: var(--option-accent, var(--orange));
    background: rgba(255, 107, 53, 0.05);
}

.variation-option.selected {
    border-color: var(--option-accent, var(--orange));
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
}

.variation-option-name {
    font-weight: 600;
    font-size: 15px;
    color: #1A1A1A;
}

.variation-option-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--option-accent, var(--orange));
}

.variation-qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.variation-qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--orange);
    border-radius: 10px;
    background: #fff;
    color: var(--orange);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.variation-qty-btn:hover {
    background: var(--orange);
    color: #fff;
}

.variation-qty-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    min-width: 32px;
    text-align: center;
}

.variation-modal-add {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.variation-modal-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.variation-modal-add:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.shop-card-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--orange);
}

.shop-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-shop-view {
    text-decoration: none;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-shop-view:hover {
    background: var(--text-dark);
    color: #fff;
}

.btn-shop-add {
    background: var(--text-dark);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: none;
}

.btn-shop-add:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.btn-shop-add.loading {
    opacity: 0.6;
    pointer-events: none;
}

.shop-perks-strip {
    background: var(--deep-purple);
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 50px;
    flex-wrap: wrap;
}

.shop-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.shop-perk i {
    color: var(--green);
    font-size: 18px;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-main {
    background: var(--bg);
}

.product-detail-section {
    padding: 60px 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery-main {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%), var(--product-bg, #1B2E1B);
    border: 1.5px solid var(--text-dark);
    box-shadow: 16px 16px 0px var(--text-dark);
    transition: all 0.4s ease;
}

@keyframes floatProduct {

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

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.product-main-img,
.product-hover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease;
    padding: 40px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.product-main-img {
    animation: floatProduct 6s ease-in-out infinite;
}

.product-hover-img {
    opacity: 0;
}

.product-gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--product-accent, #7CB342);
    color: var(--deep-purple);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 45px;
}

.product-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: none;
    transition: border-color 0.3s;
    background: rgba(0, 0, 0, 0.04);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.product-thumb.active {
    border-color: var(--product-accent, var(--orange));
}

.product-badge-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-cat-badge {
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-stock-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-stock-badge.in-stock {
    background: rgba(139, 195, 74, 0.15);
    color: #8BC34A;
}

.product-stock-badge.out-of-stock {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.product-name {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--product-accent, var(--orange));
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
}

.product-weight {
    font-size: 16px;
    color: #888;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 24px;
}

.product-stars span {
    color: #888;
    font-size: 14px;
}

.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    border-left: 3px solid var(--product-accent, var(--orange));
    padding-left: 16px;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 20px 0 10px 0;
    font-weight: 700;
}

.product-description h2 { font-size: 1.4rem; }
.product-description h3 { font-size: 1.2rem; }
.product-description h4 { font-size: 1.1rem; }

.product-description p {
    margin: 0 0 12px 0;
    color: #555;
}

.product-description strong,
.product-description b {
    font-weight: 700;
    color: var(--text-dark);
}

.product-description em,
.product-description i:not(.fas):not(.far):not(.fab) {
    font-style: italic;
}

.product-description ul,
.product-description ol {
    margin: 12px 0;
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 6px;
    position: relative;
}

.product-description ul li::marker {
    color: var(--product-accent, var(--orange));
}

.product-description a {
    color: var(--product-accent, var(--orange));
    text-decoration: underline;
    transition: opacity 0.2s;
}

.product-description a:hover {
    opacity: 0.7;
}

.product-purchase-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 4px 4px 0px var(--text-dark);
}

.qty-btn {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--product-accent, var(--green));
    color: var(--deep-purple);
}

.qty-display {
    min-width: 48px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 8px 24px var(--shadow-col);
    }

    50% {
        box-shadow: 0 12px 36px var(--shadow-col);
    }

    100% {
        box-shadow: 0 8px 24px var(--shadow-col);
    }
}

.btn-add-to-cart {
    flex: 1;
    min-width: 180px;
    color: var(--deep-purple);
    border: 2px solid var(--text-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 8px 8px 0px var(--text-dark);
    --shadow-col: rgba(0, 0, 0, 0.15);
}

.btn-add-to-cart:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 12px 12px 0px var(--text-dark);
    background: #fff !important;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-checkout-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--deep-purple);
    color: #fff;
    border: 2px solid var(--deep-purple);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.btn-checkout-direct:hover {
    background: transparent;
    color: var(--deep-purple);
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid var(--text-dark);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px var(--text-dark);
}

.product-feature:hover {
    transform: translateY(-4px) rotate(1deg);
    box-shadow: 8px 8px 0px var(--text-dark);
    background: #fff;
}

.product-feature i {
    font-size: 20px;
    width: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Nutrition */
.product-nutrition-section {
    background: var(--deep-purple);
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.product-nutrition-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(124, 179, 66, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(124, 179, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-nutrition-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-nutrition-section .section-label {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.product-nutrition-section .section-sub {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    font-size: 18px;
    font-weight: 500;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 20px);
}

.nutrition-card {
    container-type: inline-size;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Slightly lighter than section bg (--deep-purple #1B2E1B), same hue family */
    background: rgba(42, 62, 42, 0.92);
    border: 1px solid rgba(210, 232, 180, 0.28);
    border-radius: 16px;
    padding: clamp(18px, 2.8vw, 28px) clamp(10px, 1.6vw, 16px);
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    backdrop-filter: blur(6px);
}

.nutrition-card:hover {
    transform: translateY(-6px);
    background: rgba(48, 70, 48, 0.95);
    border-color: rgba(228, 244, 200, 0.42);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.nut-val {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 0.65rem + 1.75vw, 1.65rem);
    font-weight: 900;
    /* Light yellowish-green, aligned with title “Facts” gradient */
    color: #dce8a8;
    line-height: 1.15;
    max-width: 100%;
    text-align: center;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.nut-label {
    font-size: clamp(11px, 2.4vw, 13px);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
    max-width: 100%;
    padding: 0 2px;
    overflow-wrap: break-word;
}

@supports (font-size: 1cqi) {
    .nut-val {
        font-size: clamp(1rem, 0.5rem + 10cqi, 1.65rem);
    }

    .nut-label {
        font-size: clamp(11px, 0.35rem + 2.8cqi, 13px);
    }
}

@media (max-width: 960px) {
    .nutrition-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .nutrition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Nutrition cards: unify to green style + prevent text overflow */
.product-nutrition-section .nutrition-card {
    background: rgba(42, 62, 42, 0.92) !important;
    border: 1px solid rgba(210, 232, 180, 0.28) !important;
    min-height: 108px;
    overflow: hidden;
}

.product-nutrition-section .nutrition-card:hover {
    background: rgba(48, 70, 48, 0.95) !important;
    border-color: rgba(228, 244, 200, 0.42) !important;
}

.product-nutrition-section .nut-val {
    color: #dce8a8 !important;
    white-space: nowrap;
}

.product-nutrition-section .nut-label {
    overflow-wrap: anywhere;
}

/* Upsell */
.product-upsell-section {
    padding: 60px 50px;
}

.product-upsell-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.upsell-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

transition: transform 0.3s;
border: 1px solid rgba(0, 0, 0, 0.06);
}

.upsell-card:hover {
    transform: translateY(-6px);
}

.upsell-img-link {
    display: block;
    background: var(--deep-purple);
    height: 200px;
    overflow: hidden;
}

.upsell-img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s;
}

.upsell-img-link:hover img {
    transform: scale(1.05);
}

.upsell-info {
    padding: 16px;
}

.upsell-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
}

.upsell-info p {
    font-size: 13px;
    color: #888;
    margin: 4px 0 12px;
}

.upsell-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upsell-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
}

.btn-upsell-add {
    background: var(--deep-purple);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s;
}

.btn-upsell-add:hover {
    background: var(--orange);
}

/* ================================================================
   CART PAGE
   ================================================================ */
.cart-main {
    background: var(--bg);
    min-height: 60vh;
}

.cart-section {
    padding: 60px 50px;
}

.cart-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.cart-header-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 40px;
}

.cart-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--text-dark);
}

.cart-item-count {
    font-size: 16px;
    color: #888;
    font-weight: 500;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #ccc;
}

.cart-empty h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}

.cart-empty p {
    color: #888;
    margin-bottom: 32px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--item-accent, var(--green));
    transition: transform 0.3s;
}

.cart-item:hover {
    transform: translateX(4px);
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.cart-item-name:hover {
    color: var(--orange);
}

.cart-item-price-unit {
    font-size: 13px;
    color: #888;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 50px;
    overflow: hidden;
}

.cart-qty-display {
    min-width: 40px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.cart-item-line-total {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
    min-width: 80px;
    text-align: right;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 16px;
    cursor: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.cart-remove-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

/* Summary Card */
.cart-summary-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 120px;
}

.cart-summary-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555;
}

.cart-summary-row.cart-summary-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.cart-free-ship {
    color: var(--green-matte);
    font-weight: 700;
}

.cart-free-ship-notice {
    background: rgba(230, 126, 34, 0.1);
    color: var(--orange);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.cart-free-ship-notice.success {
    background: rgba(139, 195, 74, 0.1);
    color: var(--green-matte);
}

.btn-checkout {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
    margin-bottom: 12px;
}

.btn-checkout:hover {
    background: var(--orange-matte);
    transform: translateY(-2px);
}

.btn-checkout:disabled {
    opacity: 0.7;
    pointer-events: none;
}

.btn-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-continue-shopping:hover {
    border-color: var(--deep-purple);
    background: var(--deep-purple);
    color: #fff;
}

.cart-trust-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}

.trust-badge i {
    color: var(--green-matte);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-main {
    background: var(--bg);
}

.about-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

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

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(27, 46, 27, 0.6), rgba(27, 46, 27, 0.8));
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.about-hero-tag {
    display: inline-block;
    background: rgba(124, 179, 66, 0.2);
    border: 1px solid rgba(124, 179, 66, 0.4);
    color: var(--green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
}

.about-hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

/* ================================================================
   MAKHANA STORY CAROUSEL
   ================================================================ */

.carousel-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1A1A;
    overflow: hidden;
    padding: 0;
}

.carousel-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 60px 50px 110px;
    max-width: 1400px;
    margin: 0 auto;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    animation: slideContentIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}

.slide-content.reveal-left {
    transform: translateX(-40px);
    opacity: 0;
    animation: slideContentIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}

.slide-content.reveal-right {
    transform: translateX(40px);
    opacity: 0;
    animation: slideContentIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}

@keyframes slideContentIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.carousel-kicker {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    width: fit-content;
}

.carousel-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.carousel-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    max-width: 480px;
}

.carousel-stats {
    display: flex;
    gap: 48px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0;
}

.stat-label {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: slideImageIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}

.slide-image.reveal-left {
    transform: translateX(-40px);
    opacity: 0;
}

.slide-image.reveal-right {
    transform: translateX(40px);
    opacity: 0;
}

@keyframes slideImageIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: imageFloat 5s ease-in-out infinite;
}

.image-accent {
    position: absolute;
    inset: -20px;
    border-radius: 24px;
    border: 3px solid var(--green);
    opacity: 0.1;
    pointer-events: none;
    animation: accentPulse 4s ease-in-out infinite;
}

@keyframes accentPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.05;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124, 179, 66, 0.3);
    border: 2px solid rgba(124, 179, 66, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

.dot:hover {
    background: var(--green);
    transform: scale(1.3);
}

.dot.active {
    background: var(--green);
    box-shadow: 0 0 20px rgba(124, 179, 66, 0.6);
    transform: scale(1.2);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(124, 179, 66, 0.5);
}

.carousel-arrow:focus,
.carousel-arrow:active {
    outline: none;
}

.carousel-prev {
    left: 40px;
}

.carousel-next {
    right: 40px;
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}


@media (max-width: 768px) {
    .carousel-section {
        height: auto;
        min-height: 100vh;
    }

    .slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
        min-height: 100vh;
        align-content: center;
    }

    .carousel-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .carousel-description {
        font-size: 15px;
    }

    .carousel-stats {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 10px;
    }
}

.about-story-section {
    padding: 80px 50px;
}

.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-kicker {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

.about-section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-milestones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.milestone {
    text-align: center;
}

.milestone-num {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
}

.milestone-label {
    font-size: 13px;
    color: #888;
}

.about-story-img {
    position: relative;
}

.about-product-float {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    animation: floatAnim 4s ease-in-out infinite;
}

.about-blob-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.15), transparent);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    z-index: 1;
}

@keyframes floatAnim {

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

    50% {
        transform: translateY(-20px);
    }
}

.about-why-section {
    background: var(--deep-purple);
    padding: 80px 50px;
}

.about-why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-why-inner .section-kicker {
    color: var(--green);
    display: block;
    text-align: center;
}

.about-why-inner .about-section-title {
    color: #fff;
}

.about-why-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about-benefit {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-benefit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.about-benefit h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-benefit p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.about-diff-section {
    padding: 80px 50px;
}

.about-diff-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.about-diff-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid orange;
    transition: transform 0.3s;
    text-align: center;
}

.about-diff-card:hover {
    transform: translateY(-6px);
}

.diff-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(172, 192, 105, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.diff-icon-box i {
    font-size: 24px;
    color: #acc069;
}

.about-diff-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-diff-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.about-faq-section {
    background: var(--bg);
    padding: 80px 50px;
}

.about-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    cursor: none;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--orange);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    transition: all 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}

.about-contact-section {
    background: var(--deep-purple);
    padding: 80px 50px;
}

.about-contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-contact-card .section-kicker {
    color: var(--green);
}

.about-contact-card .about-section-title {
    color: #fff;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--green);
}

.contact-link i {
    font-size: 18px;
    color: var(--green);
}

.about-shipping-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-shipping-card h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-shipping-card h3 i {
    color: var(--green);
}

.about-shipping-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-shipping-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.about-shipping-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--orange), var(--orange-matte));
    padding: 80px 50px;
}

.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

.about-cta-inner .btn-cta-big {
    background: #fff;
    color: var(--orange);
}

.about-cta-inner .btn-cta-big:hover {
    background: var(--deep-purple);
    color: #fff;
}

/* ================================================================
   GRADIENT WORD (shared)
   ================================================================ */
.gradient-word {
    background: linear-gradient(135deg, var(--orange), var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .shop-grid-section,
    .product-detail-section,
    .cart-section,
    .about-story-section,
    .about-why-section,
    .about-diff-section,
    .about-faq-section,
    .about-contact-section,
    .about-cta-section {
        padding: 40px 20px;
    }

    .shop-hero {
        padding: 60px 20px 0;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-card-img-wrap {
        height: 240px;
    }

    .shop-perks-strip {
        gap: 20px;
        padding: 20px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

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

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

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-left .nav-link span {
        display: none;
    }
}

/* ── Product Variation Selector ── */
.product-variations {
    margin-bottom: 24px;
}

.variation-group {
    margin-bottom: 16px;
}

.variation-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.variation-btn:hover {
    border-color: var(--btn-accent, var(--green));
    background: rgba(124, 179, 66, 0.05);
}

.variation-btn.active {
    border-color: var(--btn-accent, var(--green));
    background: var(--btn-accent, var(--green));
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.variation-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ── Cart Item Variation Label ── */
.cart-item-variation {
    display: inline-block;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 4px;
    font-weight: 500;
}

/* ================================================================
   CHECKOUT PAGE STYLES
   ================================================================ */
.checkout-main {
    background: var(--bg);
    min-height: 60vh;
}

.checkout-section {
    padding: 60px 50px;
}

.checkout-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-header {
    margin-bottom: 40px;
}

.checkout-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-dark);
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.checkout-back-link:hover {
    color: var(--orange);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.checkout-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.15);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--green);
    background: rgba(124, 179, 66, 0.05);
}

.payment-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.payment-desc {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.checkout-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 120px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
    flex-shrink: 0;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.checkout-item-var {
    font-size: 12px;
    color: #888;
}

.checkout-item-qty {
    font-size: 12px;
    color: #888;
}

.checkout-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--orange);
}

.checkout-totals {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 16px;
    margin-bottom: 20px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.checkout-grand-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.btn-place-order {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

.btn-place-order:hover {
    background: var(--orange-matte);
    transform: translateY(-2px);
}

.btn-place-order:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkout-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    margin-top: 16px;
}

.checkout-secure-note i {
    color: var(--green);
}

.checkout-error-alert {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #c0392b;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

/* ================================================================
   CONTACT PAGE STYLES
   ================================================================ */
.contact-main {
    background: var(--bg);
}

.contact-hero {
    background: var(--deep-purple);
    padding: 80px 50px 60px;
    text-align: center;
}

.contact-hero-tag {
    display: inline-block;
    background: rgba(124, 179, 66, 0.15);
    border: 1px solid rgba(124, 179, 66, 0.3);
    color: var(--green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card-content p,
.contact-card-content a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}

.contact-card-content a:hover {
    color: var(--orange);
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 14px;
    color: #666;
}

.contact-form .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.15);
}

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

.contact-faq-section {
    padding: 80px 50px;
    background: var(--bg);
}

.contact-faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.contact-map-section {
    padding: 0;
    position: relative;
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 50px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

/* ================================================================
   ENHANCED RESPONSIVE - FULL SCREEN SIZE COVERAGE
   ================================================================ */

/* Ultra-wide screens (1600px+) */
@media (min-width: 1600px) {
    .shop-grid-section,
    .product-detail-section,
    .cart-section,
    .checkout-section {
        max-width: 1500px;
    }

    .product-detail-grid {
        gap: 80px;
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .checkout-grid {
        gap: 60px;
    }
}

/* Large screens (1200px - 1400px) */
@media (max-width: 1400px) {
    .shop-grid-section {
        padding: 60px 40px;
    }

    .product-detail-section {
        padding: 50px 40px;
    }

    .cart-section {
        padding: 50px 40px;
    }

    .checkout-section {
        padding: 50px 40px;
    }

    .product-detail-grid {
        gap: 50px;
    }

    .cart-layout {
        gap: 30px;
    }

    .checkout-grid {
        gap: 30px;
    }
}

/* Tablet landscape / small laptop (1024px - 1200px) */
@media (max-width: 1200px) {
    .shop-hero {
        padding: 60px 40px 0;
    }

    .shop-grid-section {
        padding: 50px 30px;
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .product-detail-section {
        padding: 50px 30px;
    }

    .product-detail-grid {
        gap: 40px;
    }

    .cart-layout {
        grid-template-columns: 1fr 340px;
    }

    .checkout-grid {
        grid-template-columns: 1fr 360px;
    }

    .about-story-inner {
        gap: 40px;
    }

    .slide-inner {
        gap: 40px;
        padding: 50px 40px 100px;
    }

    .carousel-stats {
        gap: 32px;
    }

    .nutrition-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Tablet portrait (768px - 1024px) */
@media (max-width: 1024px) {
    /* Shop Page */
    .shop-hero {
        padding: 50px 30px 0;
    }

    .shop-hero-title {
        font-size: clamp(40px, 7vw, 72px);
    }

    .shop-grid-section {
        padding: 40px 24px;
    }

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

    .shop-card-img-wrap {
        height: 220px;
    }

    .shop-card-name {
        font-size: 22px;
    }

    .shop-card-price {
        font-size: 22px;
    }

    .shop-perks-strip {
        gap: 30px;
        padding: 24px 30px;
    }

    /* Product Detail Page - Already handled at 1024px */

    /* Cart Page */
    .cart-section {
        padding: 40px 24px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cart-summary-card {
        position: relative;
        top: 0;
    }

    /* Checkout Page */
    .checkout-section {
        padding: 40px 24px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-summary-card {
        position: relative;
        top: 0;
    }

    .checkout-summary-col {
        order: -1;
    }

    /* Contact Page */
    .contact-hero {
        padding: 60px 30px 50px;
    }

    .contact-section {
        padding: 60px 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-faq-section {
        padding: 60px 30px;
    }

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

    /* About Page */
    .about-story-section {
        padding: 60px 30px;
    }

    .about-why-section,
    .about-diff-section,
    .about-faq-section,
    .about-contact-section,
    .about-cta-section {
        padding: 60px 30px;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-img {
        order: -1;
    }

    .about-product-float {
        max-width: 300px;
    }

    .about-milestones {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Carousel */
    .slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 30px 100px;
        text-align: center;
    }

    .slide-image {
        max-height: 350px;
    }

    .carousel-stats {
        justify-content: center;
    }

    .stat-item {
        align-items: center;
    }

    /* Nutrition */
    .product-nutrition-section {
        padding: 70px 30px;
    }

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

    /* Upsell */
    .product-upsell-section {
        padding: 50px 30px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* Toast */
    .toast-container {
        bottom: 20px;
        right: 16px;
        left: 16px;
    }

    .toast {
        min-width: auto;
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }

    /* Shop Page */
    .shop-hero {
        padding: 40px 20px 0;
    }

    .shop-hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }

    .shop-hero-sub {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .shop-grid-section {
        padding: 30px 16px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .shop-card-img-wrap {
        height: 260px;
    }

    .shop-card-body {
        padding: 18px;
    }

    .shop-card-name {
        font-size: 24px;
    }

    .shop-card-footer {
        flex-wrap: wrap;
        gap: 12px;
    }

    .shop-card-actions {
        width: 100%;
        justify-content: space-between;
    }

    .btn-shop-view,
    .btn-shop-add {
        flex: 1;
        justify-content: center;
        padding: 12px;
    }

    .shop-perks-strip {
        flex-direction: column;
        gap: 14px;
        padding: 24px 20px;
        align-items: center;
    }

    /* Variation Modal */
    .variation-modal-content {
        padding: 20px;
        margin: 16px;
        max-width: calc(100vw - 32px);
        max-height: calc(100vh - 32px);
    }

    .variation-modal-title {
        font-size: 20px;
        padding-right: 30px;
    }

    .variation-option {
        padding: 12px 14px;
    }

    /* Product Detail */
    .product-detail-section {
        padding: 30px 16px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery-main {
        border-radius: 24px;
        box-shadow: 10px 10px 0px var(--text-dark);
    }

    .product-main-img,
    .product-hover-img {
        padding: 30px;
    }

    .product-gallery-thumbs {
        margin-top: 20px;
        justify-content: center;
    }

    .product-thumb {
        width: 70px;
        height: 70px;
    }

    .product-name {
        font-size: clamp(32px, 7vw, 48px);
    }

    .product-price {
        font-size: 32px;
    }

    .product-description {
        font-size: 14px;
        padding-left: 12px;
    }

    .product-purchase-block {
        flex-direction: column;
        align-items: stretch;
    }

    .qty-selector {
        justify-content: center;
    }

    .btn-add-to-cart {
        width: 100%;
        padding: 14px 24px;
        box-shadow: 6px 6px 0px var(--text-dark);
    }

    .btn-checkout-direct {
        padding: 12px 24px;
        font-size: 14px;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-feature {
        padding: 12px 14px;
        font-size: 13px;
        box-shadow: 3px 3px 0px var(--text-dark);
    }

    /* Nutrition Section */
    .product-nutrition-section {
        padding: 60px 16px;
    }

    .product-nutrition-section .section-label {
        font-size: clamp(32px, 6vw, 48px);
    }

    .product-nutrition-section .section-sub {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .nutrition-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .nutrition-card {
        padding: clamp(14px, 2.5vw, 20px) clamp(8px, 1.4vw, 12px);
        min-height: 90px;
    }

    /* Upsell */
    .product-upsell-section {
        padding: 40px 16px;
    }

    .upsell-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }

    .upsell-img-link {
        height: 160px;
    }

    /* Cart Page */
    .cart-section {
        padding: 30px 16px;
    }

    .cart-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 30px;
    }

    .cart-title {
        font-size: clamp(32px, 7vw, 48px);
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 14px;
    }

    .cart-item-img {
        width: 80px;
        height: 80px;
    }

    .cart-item-info {
        width: 100%;
    }

    .cart-item-name {
        font-size: 18px;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .cart-item-line-total {
        font-size: 16px;
        min-width: auto;
    }

    .cart-summary-card {
        position: relative;
        top: 0;
        padding: 20px;
    }

    .cart-summary-title {
        font-size: 18px;
    }

    .btn-checkout {
        padding: 14px;
        font-size: 15px;
    }

    .cart-trust-badges {
        gap: 12px;
    }

    /* Checkout Page */
    .checkout-section {
        padding: 30px 16px;
    }

    .checkout-header {
        margin-bottom: 24px;
    }

    .checkout-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkout-card {
        padding: 20px;
        border-radius: 16px;
    }

    .checkout-card-title {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 14px;
    }

    .payment-option {
        padding: 14px;
    }

    .payment-label {
        font-size: 14px;
    }

    .payment-desc {
        font-size: 12px;
    }

    .checkout-summary-card {
        position: relative;
        top: 0;
        padding: 18px;
    }

    .checkout-items {
        max-height: 200px;
    }

    .checkout-item-img {
        width: 50px;
        height: 50px;
    }

    .checkout-item-name {
        font-size: 13px;
    }

    .checkout-item-price {
        font-size: 14px;
    }

    .checkout-grand-total {
        font-size: 16px;
    }

    .btn-place-order {
        padding: 14px;
        font-size: 15px;
    }

    /* Contact Page */
    .contact-hero {
        padding: 60px 20px 50px;
    }

    .contact-hero-title {
        font-size: clamp(32px, 7vw, 56px);
    }

    .contact-hero-sub {
        font-size: 15px;
    }

    .contact-section {
        padding: 50px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-side {
        order: 1;
    }

    .contact-form-card {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-form-header h3 {
        font-size: 20px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .contact-faq-section {
        padding: 50px 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-map-wrapper {
        height: 350px;
    }

    .map-overlay-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -60px 16px 30px;
        max-width: 100%;
    }

    /* About Page */
    .about-hero {
        height: 70vh;
        min-height: 500px;
    }

    .about-hero-title {
        font-size: clamp(40px, 8vw, 72px);
    }

    .about-hero-sub {
        font-size: 16px;
    }

    .about-story-section,
    .about-why-section,
    .about-diff-section,
    .about-faq-section,
    .about-contact-section,
    .about-cta-section {
        padding: 50px 16px;
    }

    .about-section-title {
        font-size: clamp(28px, 5vw, 42px);
    }

    .about-story-text p {
        font-size: 15px;
    }

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

    .milestone-num {
        font-size: 24px;
    }

    .milestone-label {
        font-size: 12px;
    }

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

    .about-benefit {
        padding: 20px;
    }

    .about-diff-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-diff-card {
        padding: 24px;
    }

    .faq-q {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-a {
        font-size: 14px;
        padding: 0 18px;
    }

    .faq-item.open .faq-a {
        padding: 0 18px 16px;
    }

    .about-cta-inner h2 {
        font-size: clamp(28px, 6vw, 48px);
    }

    .about-cta-inner p {
        font-size: 16px;
    }

    /* Carousel */
    .carousel-section {
        height: auto;
        min-height: 100vh;
    }

    .carousel-container {
        padding: 0 16px;
    }

    .slide-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 16px 80px;
        min-height: auto;
    }

    .slide-image {
        max-height: 280px;
        order: -1;
    }

    .slide-image img {
        border-radius: 16px;
    }

    .carousel-kicker {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .carousel-title {
        font-size: clamp(26px, 5vw, 36px);
    }

    .carousel-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .carousel-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        padding-top: 24px;
    }

    .stat-value {
        font-size: 26px;
    }

    .stat-label {
        font-size: 14px;
    }

    .carousel-dots {
        bottom: 16px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    /* Offers Section */
    .offers-section {
        padding: 50px 16px;
    }

    .offers-title {
        font-size: clamp(32px, 6vw, 48px);
    }

    .offers-copy {
        font-size: 14px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer-card {
        padding: 24px;
    }

    .offer-card h3 {
        font-size: 24px;
    }

    .offer-card p {
        font-size: 14px;
    }
}

/* Small phones (480px) */
@media (max-width: 480px) {
    /* Shop */
    .shop-hero-tag {
        font-size: 10px;
        padding: 5px 14px;
    }

    .shop-hero-title {
        font-size: clamp(32px, 9vw, 48px);
    }

    .category-ticker {
        padding: 10px 0;
    }

    .ticker-inner {
        font-size: 11px;
    }

    .shop-card-img-wrap {
        height: 220px;
    }

    .shop-card-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    /* Product Detail */
    .product-badge-row {
        gap: 6px;
    }

    .product-cat-badge,
    .product-stock-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .product-name {
        font-size: clamp(28px, 8vw, 40px);
    }

    .product-tagline {
        font-size: 14px;
    }

    .product-price {
        font-size: 28px;
    }

    .product-weight {
        font-size: 14px;
    }

    .product-gallery-thumbs {
        gap: 8px;
    }

    .product-thumb {
        width: 60px;
        height: 60px;
    }

    .qty-btn {
        width: 40px;
        height: 40px;
    }

    .qty-display {
        min-width: 40px;
        font-size: 16px;
    }

    /* Nutrition */
    .nutrition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nutrition-card {
        padding: 12px 8px;
        min-height: 80px;
    }

    /* Cart */
    .cart-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .cart-item-img {
        width: 70px;
        height: 70px;
    }

    .cart-item-name {
        font-size: 16px;
    }

    .cart-qty-display {
        min-width: 32px;
        font-size: 14px;
    }

    /* About */
    .about-hero {
        height: 60vh;
        min-height: 400px;
    }

    .about-hero-tag {
        font-size: 10px;
        padding: 5px 14px;
    }

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

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

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .about-benefit h3 {
        font-size: 16px;
    }

    .about-benefit p {
        font-size: 13px;
    }

    .contact-link {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Carousel */
    .carousel-stats {
        gap: 16px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* Extra small phones (360px) */
@media (max-width: 360px) {
    .shop-hero-title {
        font-size: clamp(28px, 10vw, 40px);
    }

    .shop-card-name {
        font-size: 20px;
    }

    .shop-card-price {
        font-size: 20px;
    }

    .product-name {
        font-size: clamp(24px, 9vw, 36px);
    }

    .product-price {
        font-size: 24px;
    }

    .nutrition-grid {
        gap: 6px;
    }

    .nutrition-card {
        padding: 10px 6px;
        border-radius: 12px;
    }

    .cart-title {
        font-size: clamp(24px, 9vw, 36px);
    }

    .about-section-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .carousel-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .offers-title {
        font-size: clamp(28px, 7vw, 40px);
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .about-hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

    .carousel-section {
        height: auto;
        min-height: auto;
    }

    .slide-inner {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
        padding: 30px 20px 60px;
    }

    .slide-image {
        order: 0;
        max-height: 250px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .shop-card:hover,
    .offer-card:hover,
    .cart-item:hover,
    .about-diff-card:hover,
    .about-benefit:hover,
    .nutrition-card:hover,
    .upsell-card:hover {
        transform: none;
    }

    .shop-card:active {
        transform: scale(0.98);
    }

    .btn-shop-add:active,
    .btn-add-to-cart:active,
    .btn-checkout:active {
        transform: scale(0.97);
    }

    .faq-item:hover {
        box-shadow: none;
    }

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .shop-card,
    .cart-item,
    .about-diff-card,
    .nutrition-card {
        border-width: 2px;
    }

    .product-description {
        border-left-width: 4px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .shop-card,
    .offer-card,
    .cart-item,
    .about-diff-card,
    .about-benefit,
    .nutrition-card,
    .upsell-card,
    .carousel-slide,
    .slide-content,
    .slide-image,
    .product-main-img {
        animation: none !important;
        transition: none !important;
    }

    .carousel-slide {
        transition: opacity 0.1s ease !important;
    }
}

/* Print styles */
@media print {
    .shop-hero,
    .category-ticker,
    .shop-perks-strip,
    .carousel-section,
    .about-hero,
    .about-cta-section {
        display: none;
    }

    .shop-grid,
    .product-detail-grid,
    .cart-layout {
        display: block;
    }

    .shop-card,
    .cart-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ===========================================
   FAQ PAGE STYLES
   =========================================== */

.faq-main {
    padding-top: 120px;
}

/* FAQ Hero */
.faq-hero {
    background: linear-gradient(135deg, #f8f9f5 0%, #f0f4e8 100%);
    padding: 60px 50px 80px;
    text-align: center;
}

.faq-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.faq-hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* FAQ Search */
.faq-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}

.faq-search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-search-box input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(172, 192, 105, 0.2);
}

.faq-search-hint {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
}

/* Category Tabs */
.faq-categories-section {
    background: #fff;
    padding: 0 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 80px;
    z-index: 10;
}

.faq-categories-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.faq-category-tabs::-webkit-scrollbar {
    display: none;
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.faq-tab i {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.faq-tab:hover {
    border-color: var(--green);
    background: rgba(172, 192, 105, 0.05);
}

.faq-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.faq-tab.active i {
    color: #fff;
}

/* FAQ Content */
.faq-content-section {
    padding: 60px 50px;
    background: var(--bg);
}

.faq-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Category Block */
.faq-category-block {
    margin-bottom: 50px;
}

.faq-category-block:last-of-type {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.faq-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.faq-category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

/* FAQ Items - enhanced */
.faq-content-section .faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-content-section .faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-content-section .faq-item.open {
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(172, 192, 105, 0.15);
}

.faq-content-section .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text);
}

.faq-content-section .faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-light);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.faq-content-section .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 24px;
}

/* No Results */
.faq-no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.faq-no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.faq-no-results h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

/* Contact Section */
.faq-contact-section {
    padding: 80px 50px;
    background: #fff;
}

.faq-contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-card {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9f5 0%, #f0f4e8 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 1.8rem;
}

.faq-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-contact-card p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.faq-contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-actions .btn-primary,
.faq-contact-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-contact-actions .btn-primary {
    background: var(--green);
    color: #fff;
}

.faq-contact-actions .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.faq-contact-actions .btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-contact-actions .btn-secondary:hover {
    border-color: #25d366;
    color: #25d366;
    transform: translateY(-2px);
}

/* View All FAQs button on About page */
.faq-view-all {
    text-align: center;
    margin-top: 32px;
}

.faq-view-all .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--green);
    border-radius: 50px;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-view-all .btn-secondary:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}

.faq-view-all .btn-secondary i {
    transition: transform 0.3s ease;
}

.faq-view-all .btn-secondary:hover i {
    transform: translateX(4px);
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 20px 60px;
    }

    .faq-hero-title {
        font-size: 1.8rem;
    }

    .faq-categories-section {
        padding: 0 16px;
        top: 70px;
    }

    .faq-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .faq-tab span {
        display: none;
    }

    .faq-tab i {
        font-size: 1rem;
    }

    .faq-content-section {
        padding: 40px 20px;
    }

    .faq-category-header h2 {
        font-size: 1.2rem;
    }

    .faq-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-content-section .faq-q {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-content-section .faq-a {
        font-size: 0.9rem;
    }

    .faq-contact-section {
        padding: 50px 20px;
    }

    .faq-contact-card {
        padding: 40px 24px;
    }

    .faq-contact-actions {
        flex-direction: column;
    }

    .faq-contact-actions .btn-primary,
    .faq-contact-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-search-hint {
        display: none;
    }

    .faq-hero-sub {
        font-size: 1rem;
    }
}
