/* ============================================================
   KALPA — Earthy Harvest design system
   Warm cocoa-brown chrome + olive-green accent, cream product cards.
   Earthy tones (greens, warm browns, off-whites) reflecting natural,
   wholesome food. Familiar marketplace bones (clear search, visible
   categories, dense readable cards) with a warm, organic finish.
   ============================================================ */

:root {
    --bg-dark: #2B1D12;
    --bg-darker: #1F140B;
    --surface: #3D2C1E;
    --surface-2: #4A3826;
    --ivory: #F7F2E9;
    --ink: #2B1D12;
    --muted: #8A7A64;
    --gold: #6B8E23;
    --gold-bright: #C8A33A;
    --gold-dim: rgba(107,142,35,0.15);
    --sage: #8A9A5B;
    --sage-dim: rgba(138,154,91,0.16);
    --line-dark: rgba(247,242,233,0.12);
    --line-light: rgba(43,29,18,0.10);
    --success: #6B8E23;
    --danger: #B2582F;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 18px rgba(107,142,35,0.28);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--ivory);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    font-size: 0.95rem;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.mono, .price { font-family: 'IBM Plex Mono', monospace; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.container { max-width: 1260px; }
::selection { background: var(--gold); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.kalpa-utility-bar {
    background: var(--bg-darker);
    color: rgba(247,242,233,0.7);
    font-size: 0.78rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--line-dark);
}
.kalpa-utility-bar a { color: rgba(247,242,233,0.7); }
.kalpa-utility-bar a:hover { color: var(--gold-bright); }

/* ============================================================
   HEADER
   ============================================================ */
.kalpa-header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--line-dark);
}
.kalpa-header-main { display: flex; align-items: center; gap: 1.2rem; padding: 0.9rem 0; }
.navbar-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; white-space: nowrap; }
.brand-mark {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #4A5F18);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}
.navbar-brand .word { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; color: var(--ivory); line-height: 1.1; }
.navbar-brand small { display: block; font-size: 0.6rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-top: 0.15rem; }

.header-search {
    flex-grow: 1;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    border: 1.5px solid var(--gold);
}
.header-search input {
    border: none;
    background: var(--ivory);
    color: var(--ink);
    padding: 0.6rem 1rem;
    flex-grow: 1;
}
.header-search input:focus { outline: none; box-shadow: none; }
.header-search button {
    border: none;
    background: var(--gold);
    color: var(--ink);
    padding: 0 1.2rem;
    font-weight: 700;
}
.header-search button:hover { background: var(--gold-bright); }

.header-icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ivory);
    background: transparent;
    border: 1.5px solid transparent;
    position: relative;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-decoration: none;
}
.header-icon-btn:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--surface); }
.cart-badge {
    position: absolute; top: -3px; right: -3px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    width: 17px; height: 17px;
    display: flex; align-items: center; justify-content: center;
}

/* Category nav bar - clean marketplace-style pills, always visible */
.kalpa-category-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--line-dark);
}
.kalpa-category-nav ul {
    display: flex;
    gap: 0.3rem;
    overflow-x: auto;
    margin: 0;
    list-style: none;
    padding: 0.55rem 0;
}
.kalpa-category-nav ul::-webkit-scrollbar { height: 3px; }
.cat-nav-link {
    color: rgba(247,242,233,0.82);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}
.cat-nav-link:hover { background: var(--gold-dim); color: var(--gold-bright); }
.cat-nav-link.active { background: var(--gold); color: var(--ink); }

.header-search-toggle-panel { display: none; padding: 0.6rem 0 0.9rem; }
.header-search-toggle-panel.show { display: block; }
.header-search-toggle-panel input { background: var(--ivory); border: 1.5px solid var(--gold); color: var(--ink); }
.header-search-toggle-panel button { background: var(--gold); border: 1.5px solid var(--gold); color: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-kalpa {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.68rem 1.5rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.15s ease;
}
.btn-kalpa:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--ink); transform: translateY(-1px); }

.btn-kalpa-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 700;
    border-radius: 12px;
}
.btn-kalpa-outline:hover { background: var(--gold); color: #fff; }

.btn-kalpa-ghost {
    border: 1.5px solid var(--gold);
    color: var(--ivory);
    background: transparent;
    font-weight: 600;
    border-radius: 12px;
}
.btn-kalpa-ghost:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.kalpa-hero {
    background-image: linear-gradient(155deg, rgba(31,20,11,0.93) 0%, rgba(107,142,35,0.50) 48%, rgba(61,44,30,0.93) 100%),
                       url('/images/hero-texture.jpg');
    background-size: cover;
    background-position: center;
    padding: 3.5rem 0 4.5rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
.kalpa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 85% 15%, rgba(200,163,58,0.14) 0%, transparent 45%),
                       radial-gradient(circle at 10% 90%, rgba(138,154,91,0.14) 0%, transparent 40%);
    pointer-events: none;
}
.kalpa-hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,32 C150,60 350,0 600,24 C850,48 1050,8 1200,28 L1200,60 L0,60 Z' fill='%23F7F2E9'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
}
.kalpa-hero .container { position: relative; z-index: 1; }
.hero-headline { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.1; margin: 0.6rem 0 1rem; color: var(--ivory); }
.hero-headline em { color: var(--gold-bright); font-style: normal; }
.hero-body { max-width: 460px; color: rgba(247,242,233,0.72); font-size: 1.02rem; line-height: 1.6; margin-bottom: 1.6rem; }

.hero-stat-wrap { position: relative; }
.hero-stat-card {
    background: var(--ivory);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow-md);
    color: var(--ink);
}
.hero-stat-card .title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.9rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.6rem; }
.hero-stat-card .row-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.4rem 0; border-bottom: 1px dashed var(--line-light); }
.hero-stat-card .row-item:last-of-type { border-bottom: none; }
.hero-stat-card .row-item strong { color: var(--ink); }
.hero-stat-card .foot { text-align: center; font-size: 0.72rem; color: var(--muted); margin-top: 0.8rem; font-style: italic; }
.hero-stat-badge {
    position: absolute; top: -16px; left: -16px;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; box-shadow: var(--shadow-md); border: 3px solid var(--ivory); z-index: 2;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.3rem; }
.section-head h2 { font-size: 1.6rem; margin: 0.2rem 0 0; color: var(--ink); }
.section-head a.view-all { font-size: 0.8rem; font-weight: 700; color: var(--gold); border-bottom: 1px solid var(--gold); }
.section-head.on-dark h2 { color: var(--ivory); }

/* Filter tabs */
.filter-tab-row { display: flex; gap: 0.4rem; overflow-x: auto; margin-bottom: 1.2rem; }
.filter-tab {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border: 1.5px solid var(--line-light);
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    white-space: nowrap;
}
.filter-tab.active, .filter-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }

/* ============================================================
   FLASH DEALS BAND
   ============================================================ */
.flash-deal-band {
    background: var(--surface);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 1.75rem;
}
.flash-deal-card {
    background: var(--ivory);
    border-radius: 16px;
    overflow: hidden;
    display: block;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease;
    color: var(--ink);
}
.flash-deal-card:hover { transform: translateY(-3px); }
.flash-deal-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.flash-deal-percent {
    position: absolute; top: 8px; left: 8px;
    background: var(--danger);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 0.72rem;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    z-index: 2;
}
.deal-countdown {
    background: var(--ink);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    padding: 0.25rem;
    margin-top: 0.35rem;
    letter-spacing: 0.05em;
}

/* ============================================================
   CATEGORY TILES (clean marketplace grid, no rotation gimmick)
   ============================================================ */
.category-tile {
    background: #F2F4EA;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    text-align: center;
    padding: 1.3rem 0.8rem;
    text-decoration: none;
    color: var(--ink);
    display: block;
    height: 100%;
    transition: all 0.15s ease;
}
.category-tile:hover, .category-tile.active { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.category-tile .icon-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gold-dim);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 0.7rem;
    transition: all 0.15s ease;
}
.category-tile:hover .icon-circle, .category-tile.active .icon-circle { background: rgba(200,163,58,0.2); color: var(--gold-bright); }
.category-tile h6 { font-weight: 700; font-size: 0.86rem; margin: 0; color: var(--ink); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-light);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    height: 100%;
    position: relative;
    color: var(--ink);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }
.product-card .img-wrap { position: relative; overflow: hidden; background: #F1EADA; }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.35s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card .card-body { padding: 0.9rem 1rem 1rem; }
.product-card .cat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); font-weight: 700; }
.product-card h6 {
    margin: 0.2rem 0 0.35rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card .price { color: var(--ink); font-weight: 700; font-size: 1rem; }
.product-card .price .from { font-size: 0.65rem; color: var(--muted); font-weight: 500; display: block; font-family: 'Manrope', sans-serif; }
.product-card .badges-topleft { position: absolute; top: 8px; left: 8px; z-index: 2; }

.corner-stamp {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    background: var(--danger);
    border-radius: 4px;
    padding: 0.28rem 0.55rem;
    line-height: 1.1;
}
.corner-stamp.new { background: var(--gold); color: var(--ink); }
.corner-stamp.deal { background: var(--danger); }

.wishlist-form { position: absolute; top: 8px; right: 8px; z-index: 3; margin: 0; }
.wishlist-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--line-light);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}
.wishlist-btn:hover, .wishlist-btn.active { color: var(--danger); border-color: var(--danger); }
.mini-rating { color: var(--gold); font-size: 0.7rem; margin-bottom: 0.3rem; }
.mini-rating span { color: var(--muted); font-family: 'IBM Plex Mono', monospace; margin-left: 0.2rem; }

.add-to-cart-quick {
    position: absolute; bottom: 10px; right: 10px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    border: none;
    opacity: 0; transform: translateY(6px);
    transition: all 0.18s ease;
    box-shadow: var(--shadow-sm);
}
.product-card:hover .add-to-cart-quick { opacity: 1; transform: translateY(0); }
.strike { text-decoration: line-through; color: var(--muted); font-weight: 500; margin-right: 0.3rem; }

/* ============================================================
   HOME — SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   HOME — SHOP BY CATEGORY RAIL
   ============================================================ */
.cat-rail-wrap { position: relative; }
.cat-rail {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none;
}
.cat-rail::-webkit-scrollbar { display: none; }
.cat-rail-card {
    flex: 0 0 160px; scroll-snap-align: start; border-radius: 20px;
    padding: 1.5rem 1.1rem; color: #fff; text-decoration: none;
    display: flex; flex-direction: column; justify-content: space-between; gap: 1.6rem;
    min-height: 150px; position: relative; overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cat-rail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: #fff; }
.cat-rail-card::after {
    content: ""; position: absolute; right: -18px; bottom: -18px; width: 90px; height: 90px;
    border-radius: 50%; background: rgba(255,255,255,0.10);
}
.cat-rail-card .icon { font-size: 1.6rem; position: relative; z-index: 1; }
.cat-rail-card .name { font-weight: 700; font-size: 0.95rem; position: relative; z-index: 1; }
.cat-rail-card .count { font-size: 0.68rem; opacity: 0.85; font-family: 'IBM Plex Mono', monospace; position: relative; z-index: 1; }
.cat-rail-card.tone-all { background: linear-gradient(135deg, var(--surface), var(--bg-darker)); }
.cat-rail-card.tone-1 { background: linear-gradient(135deg, var(--gold), #4A5F18); }
.cat-rail-card.tone-2 { background: linear-gradient(135deg, var(--sage), #5C6B3E); }
.cat-rail-card.tone-3 { background: linear-gradient(135deg, var(--gold-bright), #8A6B1E); }
.cat-rail-card.tone-4 { background: linear-gradient(135deg, var(--danger), #7A3E1F); }
.cat-rail-card.tone-5 { background: linear-gradient(135deg, #6B7A4A, var(--surface)); }

/* ============================================================
   HOME — HORIZONTAL PRODUCT SHELF (scroll-snap carousel)
   ============================================================ */
.shelf-wrap { position: relative; }
.product-shelf {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none;
}
.product-shelf::-webkit-scrollbar { display: none; }
.shelf-item { flex: 0 0 168px; scroll-snap-align: start; }
@media (min-width: 768px) { .shelf-item { flex-basis: 220px; } }
.shelf-nav {
    width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line-light);
    background: #fff; display: flex; align-items: center; justify-content: center;
    color: var(--ink); transition: all 0.15s ease; flex-shrink: 0;
}
.shelf-nav:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ============================================================
   HOME — VALUE PROPS STRIP
   ============================================================ */
.value-props-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-prop-card {
    background: #FAF7F0;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 1.4rem 1.2rem;
    text-align: center;
    height: 100%;
    transition: all 0.15s ease;
}
.value-prop-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.value-prop-card .icon-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold-dim);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.85rem;
    transition: all 0.15s ease;
}
.value-prop-card:hover .icon-circle { background: rgba(200,163,58,0.2); color: var(--gold-bright); }
.value-prop-card h6 { font-weight: 700; font-size: 0.92rem; margin: 0 0 0.3rem; color: var(--ink); }
.value-prop-card p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 767px) { .value-props-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   HOME — STORY / ORIGIN BAND
   ============================================================ */
.story-band {
    background: linear-gradient(120deg, var(--surface) 0%, var(--bg-darker) 100%);
    background-image: linear-gradient(120deg, rgba(47,36,25,0.94), rgba(32,24,8,0.94)), url('/images/hero-texture.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    color: var(--ivory);
    display: flex;
    align-items: center;
}
.story-band .story-content { padding: 2.75rem 2.5rem; }
.story-band .eyebrow { color: var(--gold-bright); }
.story-band h2 { color: var(--ivory); margin: 0.4rem 0 1rem; }
.story-band p { color: rgba(247,242,233,0.78); line-height: 1.7; max-width: 520px; margin-bottom: 1rem; }
.story-band .story-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
.story-band .story-stats strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-bright); }
.story-band .story-stats span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(247,242,233,0.6); }
@media (max-width: 767px) { .story-band .story-content { padding: 2rem 1.5rem; } }

/* ============================================================
   TESTIMONIAL / INDEX CARDS
   ============================================================ */
.index-card {
    background: #FAF7F0;
    border: 1px solid var(--line-light);
    border-radius: 16px;
    padding: 1.4rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.index-card::before {
    content: "\201C"; position: absolute; top: -18px; right: 10px;
    font-family: 'Playfair Display', serif; font-size: 5.5rem; color: var(--gold-dim);
    line-height: 1; z-index: 0;
}
.index-card > * { position: relative; z-index: 1; }
.index-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.6rem; }
.index-card p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.98rem; }
.index-card .name { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; color: var(--muted); margin-top: 0.8rem; }

/* ============================================================
   RECENTLY VIEWED
   ============================================================ */
.recently-viewed-strip { display: flex; gap: 0.9rem; overflow-x: auto; padding-bottom: 0.5rem; }
.recently-viewed-strip .product-card { flex: 0 0 160px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background: linear-gradient(120deg, var(--surface), var(--bg-darker));
    border: 1px solid var(--gold);
    color: var(--ivory);
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-band h3 { color: var(--gold-bright); margin-bottom: 0.4rem; }
.cta-band p { opacity: 0.8; margin-bottom: 0; }
.cta-band-icon {
    width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
    background: rgba(37,211,102,0.15); color: #25D366;
    display: flex; align-items: center; justify-content: center; font-size: 2.1rem; position: relative;
}
.cta-band-icon::after {
    content: ""; position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.35); animation: ctaPulse 2.2s infinite;
}
@keyframes ctaPulse {
    0% { transform: scale(0.92); opacity: 1; }
    100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 767px) {
    .cta-band { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.kalpa-breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.1rem; }
.kalpa-breadcrumb a { color: var(--muted); }
.kalpa-breadcrumb a:hover { color: var(--gold); }
/* On dark sections breadcrumb needs lighter tone */
.kalpa-hero .kalpa-breadcrumb, .section-dark .kalpa-breadcrumb { color: rgba(247,242,233,0.55); }
.section-dark .kalpa-breadcrumb a { color: rgba(247,242,233,0.55); }

/* ============================================================
   SHARE BUTTONS
   ============================================================ */
.share-buttons { display: flex; gap: 0.5rem; }
.share-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--line-light);
    color: var(--ink);
    background: #fff;
}
.share-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ============================================================
   LOYALTY PASSBOOK
   ============================================================ */
.passbook-header {
    background: var(--surface);
    color: var(--ivory);
    border-radius: 18px 18px 0 0;
    padding: 1.6rem;
    text-align: center;
    border: 1px solid var(--gold);
    border-bottom: none;
}
.passbook-header .balance { font-family: 'IBM Plex Mono', monospace; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.passbook-header .balance-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.75; }
.passbook-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px dashed var(--line-light);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--ink);
}
.passbook-row:last-child { border-bottom: none; }
.passbook-row .earned { color: var(--success); font-weight: 700; }
.passbook-row .redeemed { color: var(--danger); font-weight: 700; }
.passbook-row .desc { font-family: 'Manrope', sans-serif; font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   GIFT NOTE
   ============================================================ */
.gift-note-banner { background: var(--gold-dim); border: 1.5px dashed var(--gold); border-radius: 14px; padding: 1rem; }
.points-box { border: 1.5px solid var(--line-light); border-radius: 14px; padding: 1rem; background: rgba(107,142,35,0.05); }

/* ============================================================
   CHECKOUT / CART (light surface)
   ============================================================ */
.checkout-summary {
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 1.4rem;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.checkout-summary h5 { color: var(--ink); font-weight: 700; }
.payment-option {
    border: 1.5px solid var(--line-light);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: all 0.15s ease;
}
.payment-option.selected, .payment-option:has(input:checked) { border-color: var(--gold); background-color: var(--gold-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.kalpa-footer {
    background-color: var(--bg-darker);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--gold) 0%, var(--sage) 50%, var(--gold-bright) 100%) 1;
    color: rgba(247,242,233,0.75);
}
.kalpa-footer h6 { font-family: 'Manrope', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--gold-bright); margin-bottom: 0.9rem; }
.kalpa-footer a { color: rgba(247,242,233,0.65); font-size: 0.85rem; }
.kalpa-footer a:hover { color: var(--gold-bright); }
.kalpa-footer .col-divider { border-left: 1px solid var(--line-dark); }
.kalpa-footer .social-icons a {
    width: 34px; height: 34px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.kalpa-footer .social-icons a:hover { background: var(--gold); color: var(--ink); }
.kalpa-footer-bottom { border-top: 1px solid var(--line-dark); font-size: 0.75rem; color: rgba(247,242,233,0.45); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
    background: var(--surface);
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    margin: 2.5rem 0;
}
.trust-strip-item { display: flex; align-items: center; gap: 0.7rem; flex: 1; min-width: 220px; }
.trust-strip-item .icon-circle {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold-dim); color: var(--gold);
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.trust-strip-item .label { font-weight: 700; font-size: 0.86rem; color: var(--ivory); }
.trust-strip-item .sub { font-size: 0.74rem; color: rgba(247,242,233,0.55); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed; width: 56px; height: 56px; bottom: 22px; right: 18px;
    background-color: #25D366; color: #fff !important; border-radius: 50%;
    text-align: center; font-size: 27px; box-shadow: var(--shadow-md);
    z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ============================================================
   ALERTS (branded to match the earthy palette, not Bootstrap defaults)
   ============================================================ */
.alert-success {
    background-color: var(--gold-dim);
    border: 1px solid var(--gold);
    color: #3D5016;
    border-radius: 12px;
}
.alert-danger {
    background-color: rgba(178,88,47,0.12);
    border: 1px solid var(--danger);
    color: #7A3A1E;
    border-radius: 12px;
}

a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 767px) {
    .hero-headline { font-size: 1.9rem; }
    .kalpa-header-main { gap: 0.6rem; }
    .navbar-brand .word { font-size: 1.15rem; }
    .trust-strip { flex-direction: column; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 16px; right: 14px; }
}
