/* ===================== RESET & VARIABLES ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===================== ACCESSIBILITY UTILITIES ===================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.6rem 1.2rem;
    background: var(--brown);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 0 6px 6px;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.1s;
}
.skip-link:focus { top: 0; }

:root {
    --bg:     #eff483;   /* yellow-lime — main page background */
    --coral:  #fd8b8d;   /* coral pink  — accent & highlight sections */
    --brown:  #2a1205;   /* deep brown  — headings & text on light bg */
    --cream:  #f5f7c8;   /* pale yellow — subtle surface tint */
    --muted:  #7a6040;   /* warm taupe  — secondary text */
    --border: rgba(42, 18, 5, 0.14);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--brown);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ===================== PROMO BANNER ===================== */
:root { --banner-h: 38px; }

@keyframes banner-shimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--banner-h);
    background: linear-gradient(120deg, #4a8c3f, #6db560, #8eca6a, #5aa84e, #4a8c3f);
    background-size: 300% 300%;
    animation: banner-shimmer 6s ease infinite;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 0 2.5rem;
}

.promo-banner-link {
    font-size: 0.82rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0.01em;
    transition: opacity 0.15s;
}

.promo-banner-link:hover { opacity: 0.85; }

.promo-banner-close {
    position: absolute;
    right: 0.9rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    padding: 0.4rem;
    line-height: 1;
    transition: color 0.15s;
}

.promo-banner-close:hover { color: #fff; }

/* When banner is visible, shift nav and page content down */
body[data-banner] nav { top: var(--banner-h); }
body[data-banner] .hero { padding-top: calc(8rem + var(--banner-h)); }
body[data-banner] .about-hero { padding-top: calc(6rem + var(--banner-h)); }
body[data-banner] .page-header { padding-top: calc(5rem + var(--banner-h)); }
body[data-banner] .sfcw-hero { padding-top: calc(7rem + var(--banner-h)); }

@media (max-width: 480px) {
    .promo-banner-link { font-size: 0.72rem; }
}

/* ===================== NAV ===================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(239, 244, 131, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 18, 5, 0.12);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.nav-link:hover, .nav-link.active { color: var(--brown); }

.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--coral);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 30px;
    border: none;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

.cart-btn:hover { background: #e87274; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 8px;
}

.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== MOBILE NAV ===================== */
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(239, 244, 131, 0.98);
    backdrop-filter: blur(12px);
}

.mobile-nav.open { max-height: 400px; }

.mobile-nav-inner {
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    transition: background 0.15s;
}

.mobile-nav-link:hover { background: rgba(42, 18, 5, 0.06); }

@media (min-width: 769px) { .mobile-nav { display: none; } }

.cart-count {
    background: var(--brown);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===================== APP WRAPPER ===================== */
#app { padding-top: 72px; }

/* ===================== SHARED LAYOUT ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-section { padding: 5rem 0; }
.page-section + .page-section { border-top: 1px solid var(--border); }

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.75rem;
}

/* eyebrow on coral backgrounds flips to yellow */
.hero .hero-eyebrow,
.about-teaser .section-eyebrow,
.about-hero .section-eyebrow,
.page-header .section-eyebrow,
.sfcw-hero .section-eyebrow {
    color: var(--bg);
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.15;
}

/* ===================== SHARED BUTTONS ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--coral);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: background 0.2s;
}
.btn-primary:hover { background: #e87274; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--brown);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(42, 18, 5, 0.28);
    transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(42, 18, 5, 0.07); }

/* btn-secondary on coral sections */
.about-teaser .btn-secondary,
.about-hero .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}
.about-teaser .btn-secondary:hover,
.about-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--brown);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: background 0.2s;
}
.btn-orange:hover { background: #4a2010; }

/* ===================== PRODUCT CARD ===================== */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    display: block;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(42, 18, 5, 0.15);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.card-img-label {
    position: absolute;
    bottom: 0.75rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.card-pack {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.card-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--coral);
}

.card-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--coral);
}

/* ===================== HOME: HERO ===================== */
.hero {
    background: var(--coral);
    padding: 9rem 2rem 7rem;
    text-align: center;
    color: #fff;
}

.hero .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 460px;
    margin: 0 auto 2.5rem;
}

/* hero CTA overrides — use yellow on coral */
.hero .btn-orange {
    background: var(--bg);
    color: var(--brown);
}
.hero .btn-orange:hover { background: #e8ef70; }

/* ===================== HOME: PRODUCT ROW ===================== */
.product-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    padding: 5.5rem 0;
}

.product-row.reverse { grid-template-columns: 2fr 1fr; }
.product-row.reverse .row-text { order: 2; }
.product-row.reverse .row-grid { order: 1; }

.row-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.row-body {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 340px;
}

.row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ===================== HOME: ABOUT TEASER ===================== */
.about-teaser {
    background: var(--coral);
    color: #fff;
    padding: 7rem 2rem;
    text-align: center;
}

.about-teaser h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-teaser p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

/* about teaser CTA — yellow button on coral */
.about-teaser .btn-orange {
    background: var(--bg);
    color: var(--brown);
}
.about-teaser .btn-orange:hover { background: #e8ef70; }

/* ===================== FOOTER ===================== */
footer {
    background: var(--coral);
    color: rgba(255, 255, 255, 0.75);
    padding: 4.5rem 2rem 2rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--bg); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: var(--coral);
    color: #fff;
    padding: 5.5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    font-weight: 700;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
    font-size: 1.05rem;
}

/* ===================== PRODUCTS PAGE ===================== */
.products-category { padding: 4rem 0; }
.products-category + .products-category { border-top: 1px solid var(--border); }

.category-header { margin-bottom: 2.5rem; }

.category-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--brown);
}

.category-header p {
    color: var(--muted);
    margin-top: 0.3rem;
    font-size: 0.95rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ===================== PRODUCT DETAIL ===================== */
.breadcrumb {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 1.75rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb .bc-sep { opacity: 0.45; }

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 2.5rem 0 5rem;
    align-items: start;
}

.detail-image {
    position: sticky;
    top: 96px;
}

.detail-img-box {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
    overflow: hidden;
}

.detail-img-label {
    position: absolute;
    bottom: 1.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.detail-name {
    font-family: 'Crimson Pro', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.1;
}

.detail-tagline {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: -0.75rem;
}

.detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral);
}

.detail-price .price-note {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    margin-left: 0.25rem;
}

.detail-shipping-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

/* Variant selector */
.field-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.variant-options {
    display: flex;
    gap: 4px;
    background: rgba(42, 18, 5, 0.07);
    border-radius: 14px;
    padding: 4px;
}

.variant-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s, box-shadow 0.18s;
    font-family: 'DM Sans', sans-serif;
    color: var(--muted);
}

.variant-btn:hover { background: rgba(255, 255, 255, 0.5); }

.variant-btn.active {
    background: white;
    box-shadow: 0 2px 8px rgba(42, 18, 5, 0.14);
}

.vb-label { display: block; font-weight: 700; color: inherit; }
.vb-detail { display: block; font-size: 0.8rem; color: inherit; opacity: 0.75; margin-top: 0.1rem; }
.vb-price { display: block; font-weight: 700; font-size: 1.05rem; color: var(--coral); opacity: 0.6; margin-top: 0.35rem; }

.variant-btn.active .vb-label { color: var(--brown); }
.variant-btn.active .vb-detail { color: var(--muted); opacity: 1; }
.variant-btn.active .vb-price  { opacity: 1; }

/* Quantity */
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(42, 18, 5, 0.06);
    font-size: 1.2rem;
    color: var(--brown);
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: rgba(42, 18, 5, 0.12); }

.qty-display {
    width: 52px;
    height: 44px;
    border: none;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
    background: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    font-family: 'DM Sans', sans-serif;
}

.qty-display:focus { outline: none; }

/* Action buttons */
.btn-add-cart {
    width: 100%;
    padding: 1.1rem;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}

.btn-add-cart:hover { background: #e87274; }

.btn-buy-now {
    width: 100%;
    padding: 1.1rem;
    background: transparent;
    color: var(--brown);
    border: 2px solid rgba(42, 18, 5, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.btn-buy-now:hover {
    border-color: var(--brown);
    background: rgba(42, 18, 5, 0.06);
}

.detail-divider {
    border: none;
    border-top: 1px solid var(--border);
}

/* Detail sections */
.detail-section { display: flex; flex-direction: column; gap: 0.5rem; }

.detail-section h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.15rem;
    color: var(--brown);
}

.detail-section p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.8;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.nutrition-table tr { border-bottom: 1px solid var(--border); }

.nutrition-table td {
    padding: 0.5rem 0;
    color: var(--muted);
}

.nutrition-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--brown);
}

/* Related */
.related-section { padding: 4rem 0; border-top: 1px solid var(--border); }

.related-section h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
    background: var(--coral);
    padding: 7rem 2rem 5rem;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 6rem 0;
}

.about-story-text h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-text p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-story-text em { color: var(--coral); font-style: italic; }

.about-visual {
    border-radius: 20px;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.values-band { background: var(--bg); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 0;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(42, 18, 5, 0.07);
}

.value-card .v-icon { font-size: 2.25rem; margin-bottom: 1.25rem; }

.value-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ===================== CONTACT PAGE ===================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    padding: 5rem 0;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: var(--brown);
    margin-bottom: 1.25rem;
}

.contact-info p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(42, 18, 5, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item strong { display: block; color: var(--brown); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.15rem; }

.contact-form-wrap {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(42, 18, 5, 0.1);
}

.contact-form-wrap h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.93rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown);
    background: var(--cream);
    transition: border-color 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    background: white;
}

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

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

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.form-submit:hover { background: #e87274; }

/* ===================== CART SIDEBAR ===================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -440px;
    width: 440px;
    height: 100%;
    background: white;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--brown);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; }

.empty-cart { text-align: center; padding: 4rem 0; color: var(--muted); }
.empty-cart-icon { font-size: 3rem; margin-bottom: 1rem; }

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

.cart-item-info h4 {
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--brown);
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    transition: all 0.15s;
}

.cart-qty-btn:hover { background: var(--coral); color: white; border-color: var(--coral); }
.cart-qty-val { font-weight: 600; min-width: 18px; text-align: center; font-size: 0.88rem; }

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.cart-item-price { font-weight: 700; color: var(--brown); font-size: 0.95rem; }

.cart-item-remove {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
}

.cart-footer {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.cart-total-label { font-weight: 600; color: var(--muted); font-size: 0.9rem; }
.cart-total-amount { font-weight: 700; font-size: 1.3rem; color: var(--brown); }

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.2s;
}

.checkout-btn:hover:not(:disabled) { background: #e87274; }
.checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.checkout-note {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* ===================== TOAST ===================== */
.toast {
    position: fixed;
    top: 88px;
    right: 20px;
    background: var(--brown);
    color: var(--bg);
    padding: 1rem 1.75rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(440px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4000;
    font-weight: 600;
    font-size: 0.92rem;
}

.toast.show { transform: translateX(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-row { grid-template-columns: 1fr; gap: 3rem; }
    .product-row.reverse { grid-template-columns: 1fr; }
    .product-row.reverse .row-text { order: 1; }
    .product-row.reverse .row-grid { order: 2; }
    .row-body { max-width: 100%; }
    .about-story { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .product-detail { grid-template-columns: 1fr; }
    .detail-image { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-inner { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .burger-btn { display: flex; }
    .hero { padding: 6.5rem 1.5rem 4.5rem; }
    .hero h1 { font-size: 3.25rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .product-row { padding: 4rem 0; }
    .row-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero { padding: 5rem 1.5rem 3.5rem; }
    .about-hero h1 { font-size: 2.75rem; }
    .about-teaser { padding: 5rem 1.5rem; }
    .about-teaser h2 { font-size: 2.25rem; }
    .page-header { padding: 4rem 1.5rem 3rem; }
    .page-header h1 { font-size: 2.5rem; }
    .detail-name { font-size: 2rem; }
    .cart-sidebar { width: 100%; right: -100%; }
    .footer-top { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .about-story { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 5.5rem 1.25rem 3.5rem; }
    .hero h1 { font-size: 2.75rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 1.75rem; }
    .section-title { font-size: 1.75rem; }
    .product-row { padding: 3rem 0; gap: 2rem; }
    .row-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .about-hero { padding: 4.5rem 1.25rem 3rem; }
    .about-hero h1 { font-size: 2.25rem; }
    .about-teaser { padding: 4rem 1.25rem; }
    .about-teaser h2 { font-size: 2rem; }
    .about-story { padding: 3rem 0; gap: 2rem; }
    .page-header { padding: 3.5rem 1.25rem 2.5rem; }
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 0.95rem; }
    .detail-name { font-size: 1.75rem; }
    .detail-img-box { font-size: 5rem; }
    .variant-options { flex-direction: column; }
    .contact-form-wrap { padding: 1.75rem 1.25rem; }
    .value-card { padding: 2rem 1.25rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .mix-row { grid-template-columns: 110px 1fr 40px; gap: 0.6rem; }
    .mix-row-label { font-size: 0.85rem; }
}

/* ===================== CUSTOM MIX PAGE ===================== */

/* Segmented size selector */
.mix-size-toggle {
    display: flex;
    background: rgba(42, 18, 5, 0.07);
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 1.75rem;
}

.mix-size-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    color: var(--muted);
}

.mix-size-option.active {
    background: white;
    color: var(--brown);
    box-shadow: 0 2px 8px rgba(42, 18, 5, 0.14);
}

.mix-size-name {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
}

.mix-size-meta {
    font-size: 0.78rem;
    font-weight: 400;
    margin-top: 0.15rem;
    opacity: 0.8;
}

.mix-size-option.active .mix-size-meta { opacity: 1; }

.mix-page-container { padding-top: 3rem; padding-bottom: 5rem; }

.mix-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(42, 18, 5, 0.1);
}

.custom-bag-showcase {
    margin: -2.5rem -2.5rem 2.25rem;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(160deg, #f7edd8 0%, #fde8c0 40%, #fbd0a8 75%, #f0c4a0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.25rem 1.5rem;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}
.custom-bag-showcase img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(42, 18, 5, 0.28));
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    display: block;
}

.mix-bar {
    display: flex;
    height: 28px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--border);
}
.mix-bar-seg { height: 100%; transition: width 0.15s ease; }

.mix-ingredients { display: flex; flex-direction: column; gap: 0; margin-bottom: 0.5rem; }

.mix-row {
    display: grid;
    grid-template-columns: 175px 1fr 44px;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.mix-row:last-child { border-bottom: none; }

.mix-row-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--brown);
}

.mix-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mix-row-pct {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--coral);
}
.mix-pct-zero { color: var(--border); font-weight: 400; }

.mix-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}
.mix-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brown);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: grab;
    transition: transform 0.1s;
}
.mix-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.mix-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: var(--brown);
    cursor: grab;
}

/* Subscription badge in cart */
/* "Save 10%" inline badge inside subscribe toggle button */
.sub-save-badge {
    display: inline-block;
    background: #e8f5e2;
    color: #2a5c1e;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.mix-size-option.active .sub-save-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.cart-sub-badge {
    display: inline-block;
    background: #e8f5e2;
    color: #2a5c1e;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    margin: 0.25rem 0;
}

/* Mixed-cart warning */
.cart-mixed-warning {
    font-size: 0.8rem;
    color: #b45309;
    background: #fef3c7;
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Subscription interval select */
.subscribe-interval-sel {
    width: 100%;
    padding: 0.55rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--brown);
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a3a1a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.cart-item-mix {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}

@media (max-width: 540px) {
    /* Container */
    .mix-page-container { padding-top: 1.25rem; padding-bottom: 2.5rem; }

    /* Card */
    .mix-card { padding: 1.25rem 1rem; }

    /* Showcase — smaller panel + smaller image */
    .custom-bag-showcase { margin: -1.25rem -1rem 1.5rem; min-height: 140px; padding: 1.25rem 1rem; }
    .custom-bag-showcase img { width: 140px; height: 140px; }

    /* Composition bar */
    .mix-bar { height: 16px; border-radius: 8px; margin-bottom: 1.25rem; }

    /* Ingredient rows — single-line 3-col layout with narrow label */
    .mix-row { grid-template-columns: 84px 1fr 36px; gap: 0.5rem; padding: 0.4rem 0; }
    .mix-row-label { grid-column: auto; font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ===================== LIFESTYLE PHOTOS ===================== */

/* Home page — scrolling reel */
.photo-reel {
    overflow: hidden;
    width: 100%;
    padding: 3rem 0;
    background: var(--bg);
}

.photo-reel-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: reel-scroll 36s linear infinite;
}

.photo-reel-track img {
    height: 260px;
    width: auto;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

@keyframes reel-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .photo-reel-track { animation: none; }
}

/* About page — staggered grid */
.lifestyle-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 10px;
    border-radius: 18px;
    overflow: hidden;
}

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

.lifestyle-grid .lg-feature {
    grid-row: 1 / 3;
}

@media (max-width: 680px) {
    .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .lifestyle-grid .lg-feature { grid-row: auto; }
}

/* ===================== LEGAL PAGES ===================== */

.legal-prose h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown);
    margin: 2.5rem 0 0.75rem;
}

.legal-prose h2:first-child { margin-top: 0; }

.legal-prose p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-prose ul {
    color: var(--muted);
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-prose li { margin-bottom: 0.4rem; }

.legal-prose a {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-prose strong { color: var(--brown); }

/* ===================== CUSTOM MIX TEASER ===================== */

@keyframes gradient-flow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.custom-mix-teaser {
    background: linear-gradient(-45deg, #f5e6c8, #ffd0a0, var(--coral), #e8c8f0, #c8e0b0, #f5e6c8);
    background-size: 400% 400%;
    animation: gradient-flow 14s ease infinite;
    color: var(--brown);
    padding: 5rem 2rem;
}

@media (prefers-reduced-motion: reduce) {
    .custom-mix-teaser { animation: none; background: #fde8cc; }
}

.custom-mix-teaser-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cmt-visual {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cmt-preview-row {
    display: grid;
    grid-template-columns: 72px 1fr 30px;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
.cmt-preview-row:last-child { border-bottom: none; }

.cmt-preview-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--brown);
    white-space: nowrap;
    overflow: hidden;
}

.cmt-preview-slider-wrap {
    position: relative;
    height: 8px;
}

.cmt-preview-track {
    position: absolute;
    inset: 0;
    border-radius: 4px;
}

.cmt-preview-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brown);
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.cmt-preview-pct {
    font-size: 0.7rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--coral);
    text-align: right;
}

.cmt-text h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--brown);
}

.cmt-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2rem;
}

.btn-build-mix {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--brown);
    text-decoration: none;
    background: linear-gradient(-45deg, #f5e6c8, #ffd0a0, var(--coral), #e8c8f0, #c8e0b0, #f5e6c8);
    background-size: 400% 400%;
    animation: gradient-flow 14s ease infinite;
    transition: opacity .2s;
}
.btn-build-mix:hover { opacity: .85; }

@media (prefers-reduced-motion: reduce) {
    .btn-build-mix { animation: none; background: #fde8cc; }
}

.cmt-btn {
    background: var(--brown) !important;
    color: #fff !important;
}
.cmt-btn:hover { background: #4a2510 !important; }

@media (max-width: 680px) {
    .custom-mix-teaser-inner { flex-direction: column; gap: 2.5rem; text-align: center; }
    .cmt-visual { width: 100%; max-width: 360px; }
    .cmt-text p { margin-left: auto; margin-right: auto; }
}

/* ===================== SF CLIMATE WEEK PAGE ===================== */

.sfcw-hero {
    background: var(--coral);
    color: #fff;
    padding: 7rem 2rem 5rem;
    text-align: center;
}

.sfcw-hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #fff;
}

.sfcw-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.sfcw-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
    align-items: start;
}

.sfcw-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1.75rem;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.sfcw-product h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--brown);
}

.sfcw-product p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.sfcw-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sfcw-list li {
    color: var(--muted);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.sfcw-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: 700;
}

.sfcw-offer-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(42,18,5,0.1);
    position: sticky;
    top: 5rem;
}

.sfcw-badge {
    display: inline-block;
    background: var(--bg);
    color: var(--brown);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.sfcw-offer-card h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.sfcw-offer-card > p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sfcw-code-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
}

.sfcw-code {
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brown);
    flex: 1;
}

.sfcw-copy-btn {
    background: var(--brown);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.sfcw-copy-btn:hover { background: #4a2510; }

.sfcw-fine {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.sfcw-cta { width: 100%; text-align: center; justify-content: center; }

/* Flavor showcase grid */
.sfcw-flavor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.sfcw-flavor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    gap: 0.6rem;
    transition: transform 0.2s;
}

.sfcw-flavor-card:hover { transform: translateY(-3px); }

.sfcw-flavor-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sfcw-flavor-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.3;
}

.sfcw-flavor-tag {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
}

/* How it works steps */
.sfcw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

.sfcw-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown);
    color: #fff;
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sfcw-step h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.sfcw-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* Pricing callout strip */
.sfcw-pricing-bar {
    background: #fff;
    padding: 1.1rem 2rem;
    border-bottom: 1px solid rgba(42,18,5,0.1);
}

.sfcw-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sfcw-pricing-col { text-align: center; }

.sfcw-pricing-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(42,18,5,0.45);
    margin-bottom: 0.2rem;
}

.sfcw-pricing-regular .sfcw-pricing-amount {
    font-family: 'Crimson Pro', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: rgba(42,18,5,0.35);
    margin-bottom: 0.1rem;
}

.sfcw-pricing-deal .sfcw-pricing-amount {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.1rem;
}

.sfcw-pricing-detail {
    font-size: 0.75rem;
    color: rgba(42,18,5,0.5);
}

.sfcw-pricing-deal .sfcw-pricing-detail { color: rgba(42,18,5,0.75); font-weight: 600; }

.sfcw-pricing-min { font-size: 0.68rem; color: rgba(42,18,5,0.4); margin-top: 0.2rem; }

.sfcw-pricing-arrow { font-size: 1.2rem; color: rgba(42,18,5,0.25); }

/* Inquiry form section */
.sfcw-inquiry-section {
    background: var(--bg);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}

.sfcw-inquiry-heading {
    font-family: 'Crimson Pro', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.sfcw-inquiry-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.sfcw-inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }

.sfcw-inquiry-submit { align-self: flex-start; margin-top: 0.5rem; }

@media (max-width: 768px) {
    .sfcw-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .sfcw-offer-card { position: static; }
    .sfcw-flavor-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
    .sfcw-steps { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .sfcw-flavor-grid { grid-template-columns: repeat(2, 1fr); }
    .sfcw-pricing-bar { padding: 1rem; }
    .sfcw-pricing { flex-wrap: nowrap; gap: 0.75rem; }
    .sfcw-pricing-regular .sfcw-pricing-amount { font-size: 1.15rem; }
    .sfcw-pricing-deal .sfcw-pricing-amount { font-size: 1.35rem; }
    .sfcw-pricing-label { font-size: 0.6rem; }
    .sfcw-pricing-detail,
    .sfcw-pricing-min { font-size: 0.65rem; }
}