/* ============================================================
   ZAFR — Authentic Kashmiri Lacha Saffron
   Premium Single-Page Design

   Palette:
     Cream:    #F9F7F2     Charcoal: #2C2C2C
     Lavender: #7B5EA7     Gold:     #C59D5F / #D4B176
     Green:    #5B7A3B     Crimson:  #B8450E
   ============================================================ */

@import url("fontawesome-all.min.css");

/* === RESET === */
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
    margin: 0; padding: 0; border: 0;
    font-size: 100%; font: inherit; vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: none; }
body { line-height: 1; overflow: hidden; height: 100%; margin: 0; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
table { border-collapse: collapse; border-spacing: 0; }
input::-moz-focus-inner { border: 0; padding: 0; }
input, select, textarea { -moz-appearance: none; -webkit-appearance: none; appearance: none; }

/* === BASE TYPOGRAPHY === */
body, input, textarea, select {
    font-family: 'Inter', 'Source Sans Pro', -apple-system, sans-serif;
    font-weight: 300;
    color: #555;
    font-size: 13pt;
    line-height: 1.65;
}

@media screen and (max-width: 1280px) { body, input, textarea, select { font-size: 12pt; } }
@media screen and (max-width: 736px)  { body, input, textarea, select { font-size: 11pt; } }

strong, b { font-weight: 600; color: #2C2C2C; }
em, i { font-style: italic; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    color: #2C2C2C;
    line-height: 1.3;
}
h1 { font-size: 1.5em; margin-bottom: 0.4rem; }
h2 { font-size: 1.15em; font-weight: 600; margin-bottom: 0.35rem; }
h3 { font-size: 1em; margin-bottom: 0.3rem; }

p {
    font-size: 0.92em;
    line-height: 1.6;
    color: rgba(44, 44, 44, 0.6);
    margin-bottom: 0.5rem;
}

a { color: #C59D5F; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #B8450E; }

/* Preload */
body.is-preload *, body.is-preload *::before, body.is-preload *::after {
    animation: none !important; transition: none !important;
}

/* ============================================================
   BACKGROUND — Rich deep gradient (NOT bland brown)
   ============================================================ */
#bg {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh; z-index: -1;
    background: linear-gradient(170deg,
        #1a1a2e 0%,
        #16213e 35%,
        #1a1a2e 65%,
        #0f3460 100%
    );
}

#grain {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ============================================================
   WRAPPER — Full viewport
   ============================================================ */
#wrapper {
    width: 100%;
    max-width: 56em;
    margin: 0 auto;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: opacity 1s ease;
}

body.is-preload #wrapper { opacity: 0; }

@media screen and (max-width: 1280px) { #wrapper { max-width: calc(100% - 2em); } }
@media screen and (max-width: 736px)  { #wrapper { max-width: 100%; } }

/* ============================================================
   HEADER — Logo + Brand + Nav in ONE horizontal bar
   ============================================================ */
#header {
    display: flex;
    align-items: center;
    padding: 0.6em 0.5em;
    flex-shrink: 0;
    gap: 0.5em;
    animation: fadeInDown 0.8s ease-out;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-brand:hover { transform: scale(1.03); }

.site-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(197, 157, 95, 0.35));
}

.brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #C59D5F;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ZAFR brand on light/cream backgrounds — purple */
.zafr-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #7B5EA7;
    text-transform: uppercase;
}

/* NAV — Text-only tabs, clean and readable */
#nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.45rem 0.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-link:hover { color: rgba(255, 255, 255, 0.9); }
.nav-link.active { color: #C59D5F; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%; height: 2px;
    background: #C59D5F;
    transition: transform 0.3s ease;
}
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Mobile nav: scrollable */
@media screen and (max-width: 900px) {
    #header { flex-wrap: wrap; padding: 0.5em; }
    .logo-brand { margin-right: auto; }
    #nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        gap: 0;
    }
    #nav::-webkit-scrollbar { display: none; }
    .nav-link { font-size: 0.6rem; padding: 0.35rem 0.55rem; flex-shrink: 0; }
}

@media screen and (max-width: 480px) {
    .site-logo { width: 40px; height: 40px; }
    .brand-name { font-size: 1.2rem; }
    .nav-link { font-size: 0.55rem; padding: 0.3rem 0.4rem; }
}

/* ============================================================
   MAIN — Cream content card
   ============================================================ */
#main {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #F9F7F2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    flex: 1;
    min-height: 0;
}

/* Panels — scroll only when needed */
.panel {
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.75em 2.25em 1.5em;
    position: relative;
}

.panel.active {
    display: block;
    animation: panelFade 0.4s ease;
}

.panel::-webkit-scrollbar { width: 3px; }
.panel::-webkit-scrollbar-track { background: transparent; }
.panel::-webkit-scrollbar-thumb { background: rgba(197, 157, 95, 0.2); border-radius: 3px; }
.panel { scrollbar-width: thin; scrollbar-color: rgba(197, 157, 95, 0.2) transparent; }

@keyframes panelFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 736px) {
    .panel { padding: 1.25em 1em 1em; }
}

/* ============================================================
   HERO SECTIONS — Compact but elegant
   ============================================================ */
.hero-section {
    text-align: center;
    padding: 0.5rem 1rem 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 157, 95, 0.5), transparent);
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7B5EA7;
    margin-bottom: 0.4rem;
    padding: 0.15rem 0.7rem;
    border: 1px solid rgba(123, 94, 167, 0.2);
    background: rgba(123, 94, 167, 0.04);
}

.hero-subtitle {
    max-width: 520px;
    margin: 0.25rem auto 0.3rem;
    font-size: 0.88em;
    color: rgba(44, 44, 44, 0.55);
    line-height: 1.55;
}

.hero-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1em;
    color: #B8450E;
}

@media screen and (max-width: 736px) {
    .hero-section { padding: 0.25rem 0.5rem 0.75rem; margin-bottom: 0.75rem; }
    h1 { font-size: 1.25em; }
}

/* ============================================================
   CARD SLIDER — Horizontal
   ============================================================ */
.card-slider { margin-bottom: 0.75rem; }

.slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem 0 0.5rem;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-card {
    flex: 0 0 calc(33.333% - 0.7rem);
    min-width: 220px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(197, 157, 95, 0.1);
    padding: 1.1rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.slider-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(197, 157, 95, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(123, 94, 167, 0.06);
    border: 1px solid rgba(123, 94, 167, 0.12);
    color: #7B5EA7;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}

.slider-card h3 { font-size: 0.95em; margin-bottom: 0.35rem; }
.slider-card p { font-size: 0.82em; line-height: 1.55; color: rgba(44, 44, 44, 0.55); margin-bottom: 0; }

.card-detail-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    margin-top: 0.5rem; padding: 0; background: none; border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem; font-weight: 600;
    color: #B8450E; cursor: pointer;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: all 0.3s ease;
}
.card-detail-btn:hover { color: #C59D5F; gap: 0.5rem; }

/* Slider Indicators */
.slider-indicators {
    display: flex; justify-content: center;
    gap: 0.35rem; padding-top: 0.5rem;
}
.indicator {
    width: 24px; height: 2px;
    background: rgba(197, 157, 95, 0.15);
    transition: all 0.4s ease; cursor: pointer;
}
.indicator.active { width: 36px; background: #C59D5F; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(197, 157, 95, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.product-card:hover .product-specs {
    max-height: 200px; opacity: 1;
    margin-top: 0.5rem; padding-top: 0.5rem;
}

.product-visual {
    position: relative;
    padding: 1.25rem 1rem;
    text-align: center;
    background: linear-gradient(165deg, rgba(197, 157, 95, 0.04), rgba(184, 69, 14, 0.03));
}

.product-badge {
    position: absolute; top: 0.6rem; left: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(44, 44, 44, 0.5);
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(44, 44, 44, 0.1);
}
.product-badge.gold { color: #B8450E; border-color: rgba(184, 69, 14, 0.2); }

.product-icon-large { font-size: 1.8rem; color: #C59D5F; opacity: 0.3; }

.product-info { padding: 1rem 1.1rem 1.2rem; }
.product-info h3 { font-size: 1em; margin-bottom: 0.2rem; }

.product-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #7B5EA7; margin-bottom: 0.4rem;
}

.product-desc { font-size: 0.82em; color: rgba(44, 44, 44, 0.55); line-height: 1.55; }

.product-specs {
    max-height: 0; opacity: 0; overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(197, 157, 95, 0.1);
}
.product-specs .spec {
    display: flex; justify-content: space-between;
    padding: 0.2rem 0; font-size: 0.78em;
}
.product-specs .spec span:first-child { font-weight: 500; color: rgba(44, 44, 44, 0.65); }
.product-specs .spec span:last-child { color: rgba(44, 44, 44, 0.4); }

.batch-story {
    text-align: center; padding: 0.75rem 1rem;
    border: 1px solid rgba(197, 157, 95, 0.1);
    background: rgba(197, 157, 95, 0.03);
}
.batch-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: #B8450E;
}
.batch-story p { font-size: 0.82em; margin: 0.15rem 0 0; color: rgba(44, 44, 44, 0.5); }

/* ============================================================
   BUTTONS
   ============================================================ */
input[type="button"], input[type="submit"], input[type="reset"],
button.btn-primary, .btn-primary {
    display: inline-block;
    background-color: #B8450E; color: #fff; border: 0;
    cursor: pointer; outline: 0;
    padding: 0.55em 1.4em;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 0.5rem;
    transition: background-color 0.2s ease;
}
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover,
button.btn-primary:hover, .btn-primary:hover { background-color: #9a3a0c; }

.btn-gold {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #2C2C2C;
    background: linear-gradient(135deg, #C59D5F, #D4B176);
    border: none;
    padding: 0.6rem 1.5rem;
    cursor: pointer; margin-top: 0.5rem; width: 100%;
    transition: all 0.3s ease;
}
.btn-gold:hover { box-shadow: 0 4px 16px rgba(197, 157, 95, 0.4); transform: translateY(-1px); }

/* ============================================================
   NOMINATION FORM (Inner Circle)
   ============================================================ */
.nomination-section { margin-top: 0.25rem; }

.nomination-header { text-align: center; margin-bottom: 0.75rem; }

.circle-illustration {
    width: 40px; height: 40px;
    margin: 0 auto 0.5rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(197, 157, 95, 0.06);
    border: 1px solid rgba(197, 157, 95, 0.15);
}
.crocus-icon { font-size: 1rem; color: #C59D5F; }

.nomination-form { max-width: 440px; margin: 0 auto; }

.email-inputs { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.5rem; }

.email-field { display: flex; align-items: center; gap: 0.5rem; }

.email-field label {
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem; color: rgba(44, 44, 44, 0.3); flex-shrink: 0;
}

/* Forms — clean borderless (vrnuts-like) */
.email-field input,
.concierge-form input,
.concierge-form select,
.concierge-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem; color: #2C2C2C;
    background: #f4f4f4; border: 0; border-radius: 0;
    transition: background-color 0.2s ease; outline: none;
}
.email-field input { flex: 1; }
.email-field input::placeholder, .concierge-form input::placeholder,
.concierge-form textarea::placeholder { color: #999; }
.email-field input:focus, .concierge-form input:focus,
.concierge-form select:focus, .concierge-form textarea:focus { background: #f8f8f8; }
.email-field input.valid { border-left: 2px solid #C59D5F; }

.stigma-indicator {
    width: 8px; height: 8px; border-radius: 50%;
    border: 1px solid rgba(44, 44, 44, 0.12);
    flex-shrink: 0; transition: all 0.4s ease;
}
.email-field input.valid ~ .stigma-indicator {
    background: #B8450E; border-color: #B8450E;
    box-shadow: 0 0 6px rgba(184, 69, 14, 0.4);
}

.progress-stigmas {
    display: flex; align-items: center; justify-content: center;
    gap: 0.3rem; margin-bottom: 0.5rem;
}
.stigma {
    width: 9px; height: 9px; border-radius: 50%;
    border: 1px solid rgba(44, 44, 44, 0.12);
    transition: all 0.4s ease;
}
.stigma.filled {
    background: #B8450E; border-color: #B8450E;
    box-shadow: 0 0 5px rgba(184, 69, 14, 0.3);
}
.progress-text { font-size: 0.7rem; color: rgba(44, 44, 44, 0.4); margin-left: 0.3rem; font-weight: 500; }

.checkbox-label {
    display: flex; align-items: flex-start; gap: 0.4rem;
    font-size: 0.75rem; color: rgba(44, 44, 44, 0.5);
    margin-bottom: 0.35rem; cursor: pointer; line-height: 1.45;
}
.checkbox-label input[type="checkbox"] { margin-top: 0.1rem; accent-color: #C59D5F; flex-shrink: 0; }

.reward-section {
    text-align: center; padding: 0.85rem 1rem;
    margin: 0.75rem 0; background: rgba(197, 157, 95, 0.04);
    border: 1px solid rgba(197, 157, 95, 0.1);
}
.reward-icon { font-size: 1.1rem; color: #C59D5F; margin-bottom: 0.3rem; }
.reward-section h3 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1em; }
.reward-section p { max-width: 440px; margin: 0.25rem auto 0; font-size: 0.82em; }

/* ============================================================
   CONCIERGE — Two-column
   ============================================================ */
.concierge-layout {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 1.25rem; margin-bottom: 0.75rem; align-items: start;
}

.whatsapp-link {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    background: rgba(37, 211, 102, 0.04);
    border: 1px solid rgba(37, 211, 102, 0.12);
    color: #2C2C2C; transition: all 0.3s ease; margin-bottom: 0.65rem;
}
.whatsapp-link:hover { border-color: rgba(37, 211, 102, 0.3); background: rgba(37, 211, 102, 0.08); color: #2C2C2C; }
.whatsapp-link i { font-size: 1.1rem; color: #25D366; }
.whatsapp-link strong { display: block; font-size: 0.82rem; color: #2C2C2C; }
.whatsapp-link span { font-size: 0.7rem; color: rgba(44, 44, 44, 0.45); }

.contact-details { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(44, 44, 44, 0.55); }
.contact-item i { color: #7B5EA7; width: 16px; text-align: center; font-size: 0.82rem; }

.concierge-form {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(197, 157, 95, 0.1);
    padding: 1rem 1.15rem;
}
.concierge-form h3 { margin-bottom: 0.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 0.4rem; }
.concierge-form select {
    cursor: pointer; color: rgba(44, 44, 44, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 7L1 3h8z' fill='%23C59D5F'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.75rem center;
    padding-right: 1.8rem;
}
.concierge-form select option { background: #F9F7F2; color: #2C2C2C; }
.concierge-form textarea { resize: none; min-height: 50px; }
.concierge-form input, .concierge-form select, .concierge-form textarea { margin-bottom: 0.4rem; }

/* FAQ */
.faq-section { margin-top: 0.25rem; }
.faq-section > h3 { text-align: left; margin-bottom: 0.5rem; font-style: italic; }
.faq-item { border-bottom: 1px solid rgba(197, 157, 95, 0.08); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 0.5rem 0; background: none; border: none;
    font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 500;
    color: rgba(44, 44, 44, 0.65); cursor: pointer; text-align: left;
    transition: color 0.3s ease;
}
.faq-question:hover { color: #B8450E; }
.faq-question i { font-size: 0.6rem; color: rgba(197, 157, 95, 0.4); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 0.5rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: #B8450E; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 0.5rem; }
.faq-answer p { font-size: 0.82em; color: rgba(44, 44, 44, 0.5); line-height: 1.6; margin: 0; }

/* ============================================================
   TRUST TRIGGER + PURITY SEAL
   ============================================================ */
.trust-trigger { text-align: center; padding: 0.5rem 0; }

.trust-trigger-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(197, 157, 95, 0.15);
    cursor: pointer; transition: all 0.3s ease;
}
.trust-trigger-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(197, 157, 95, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.trust-trigger-label { font-family: 'Playfair Display', serif; font-size: 0.9em; font-style: italic; color: #2C2C2C; }
.trust-trigger-icons { display: flex; gap: 0.5rem; color: #5B7A3B; font-size: 0.85rem; opacity: 0.5; transition: opacity 0.3s ease; }
.trust-trigger-btn:hover .trust-trigger-icons { opacity: 0.8; }
.trust-trigger-cta {
    font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #B8450E; display: flex; align-items: center; gap: 0.3rem;
}

.purity-seal { text-align: center; padding: 0.75rem 1rem 0.25rem; }
.purity-seal blockquote p {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 0.95em; color: rgba(44, 44, 44, 0.65);
    max-width: 460px; margin: 0 auto 0.5rem; line-height: 1.5;
}
.seal-signature {
    font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: #B8450E;
}

/* ============================================================
   MODALS — FULL SCREEN overlays
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: none; align-items: stretch; justify-content: center;
    background: rgba(20, 20, 40, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0; transition: opacity 0.35s ease;
}
.modal-overlay.visible { display: flex; opacity: 1; }

.modal {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: #F9F7F2;
    padding: 0;
    animation: modalIn 0.35s ease;
    overflow: hidden;
}
.modal.active { display: flex; flex-direction: column; }

@keyframes modalIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute; top: 1rem; right: 1rem; z-index: 10;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(44, 44, 44, 0.1);
    color: rgba(44, 44, 44, 0.5); cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.modal-close:hover { color: #B8450E; border-color: rgba(184, 69, 14, 0.3); background: #fff; }

.modal-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(123, 94, 167, 0.06);
    border: 1px solid rgba(123, 94, 167, 0.12);
    color: #7B5EA7; font-size: 1rem; margin-bottom: 0.75rem;
}

.modal h2 { font-size: 1.25em; margin-bottom: 0.5rem; }
.modal p { font-size: 0.88em; line-height: 1.6; color: rgba(44, 44, 44, 0.6); }

/* Modal scrollable content area */
.modal-scroll {
    flex: 1; overflow-y: auto;
    padding: 3rem 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}
.modal-scroll::-webkit-scrollbar { width: 3px; }
.modal-scroll::-webkit-scrollbar-track { background: transparent; }
.modal-scroll::-webkit-scrollbar-thumb { background: rgba(197, 157, 95, 0.2); border-radius: 3px; }
.modal-scroll { scrollbar-width: thin; scrollbar-color: rgba(197, 157, 95, 0.2) transparent; }

.modal-detail { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(197, 157, 95, 0.1); }
.modal-detail h4 {
    font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #7B5EA7; margin-bottom: 0.4rem;
}

.modal-policy { max-width: 100%; }
.modal-date {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(44, 44, 44, 0.35); margin-bottom: 0.75rem;
}

.modal ul { list-style: disc; padding-left: 1.1em; margin: 0.4rem 0 0.5rem; }
.modal li { padding-left: 0.3em; font-size: 0.82rem; line-height: 1.6; color: rgba(44, 44, 44, 0.55); margin-bottom: 0.2rem; }

/* Modal Badges */
.modal-badges {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.65rem; margin: 0.75rem 0;
}
.modal-badge {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 0.25rem;
    padding: 0.65rem 0.5rem;
    background: rgba(91, 122, 59, 0.04);
    border: 1px solid rgba(91, 122, 59, 0.1);
    transition: all 0.3s ease;
}
.modal-badge:hover { background: rgba(91, 122, 59, 0.08); border-color: rgba(91, 122, 59, 0.2); }
.modal-badge i { font-size: 1rem; color: #5B7A3B; }
.modal-badge strong { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; color: #2C2C2C; }
.modal-badge span { font-size: 0.7rem; color: rgba(44, 44, 44, 0.5); line-height: 1.4; }

/* Batch Verification Modal — center content */
.batch-verify-modal { margin-top: 0.75rem; }
.batch-verify-modal .batch-input-wrap { display: flex; gap: 0; max-width: 340px; }
.batch-verify-modal .batch-input-wrap input {
    flex: 1; padding: 0.55rem 0.75rem;
    font-family: 'Inter', sans-serif; font-size: 0.82rem;
    color: #2C2C2C; background: #f4f4f4; border: 0; outline: none;
}
.batch-verify-modal .batch-input-wrap input::placeholder { color: #999; }
.batch-verify-modal .batch-input-wrap input:focus { background: #f8f8f8; }
.batch-result { margin-top: 0.5rem; font-size: 0.82rem; color: rgba(44, 44, 44, 0.6); }
.btn-verify {
    padding: 0.55rem 1rem;
    font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #2C2C2C; background: linear-gradient(135deg, #C59D5F, #D4B176);
    border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn-verify:hover { box-shadow: 0 2px 10px rgba(197, 157, 95, 0.35); }

/* Batch modal now uses modal-scroll like other modals */

/* ============================================================
   MULTISTEP NOMINATION FORM
   ============================================================ */
.nom-step-indicator {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 0.75rem;
}
.step-dot {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 600;
    color: rgba(44, 44, 44, 0.3);
    border: 1px solid rgba(44, 44, 44, 0.15);
    background: transparent;
    transition: all 0.3s ease;
}
.step-dot.active { color: #fff; background: #C59D5F; border-color: #C59D5F; }
.step-dot.done { color: #fff; background: #5B7A3B; border-color: #5B7A3B; }
.step-line {
    width: 40px; height: 1px;
    background: rgba(44, 44, 44, 0.12);
}
.nom-step { display: none; }
.nom-step.active { display: block; animation: panelFade 0.3s ease; }
.step-label {
    font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(44, 44, 44, 0.35);
    text-align: center; margin-bottom: 0.6rem;
}
.nom-back {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 500;
    color: #7B5EA7; margin-bottom: 0.6rem; padding: 0;
    transition: color 0.2s ease;
}
.nom-back:hover { color: #B8450E; }
.nom-details-fields {
    display: flex; flex-direction: column; gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.nom-details-fields input,
.nom-details-fields textarea {
    width: 100%; padding: 0.5rem 0.75rem;
    font-family: 'Inter', sans-serif; font-size: 0.82rem; color: #2C2C2C;
    background: #f4f4f4; border: 0; border-radius: 0;
    outline: none; transition: background-color 0.2s ease;
}
.nom-details-fields input::placeholder,
.nom-details-fields textarea::placeholder { color: #999; }
.nom-details-fields input:focus,
.nom-details-fields textarea:focus { background: #f8f8f8; }
.nom-error {
    font-family: 'Inter', sans-serif; font-size: 0.7rem;
    color: #B8450E; margin-bottom: 0.4rem; min-height: 0.9rem;
}
.nom-success-content {
    text-align: center; padding: 1.5rem 0;
}
.nom-success-content .reward-icon { color: #5B7A3B; font-size: 1.8rem; margin-bottom: 0.5rem; }
.nom-success-content h3 { font-size: 1.1em; margin-bottom: 0.3rem; }
.nom-success-content p { font-size: 0.85em; color: rgba(44, 44, 44, 0.55); }

/* Validation styles */
input.field-error, textarea.field-error, select.field-error {
    border-left: 2px solid #B8450E !important;
    background: #fef8f6 !important;
}

/* ============================================================
   ORDER FORM (inside modal)
   ============================================================ */
.order-form {
    margin-top: 0.75rem;
    display: flex; flex-direction: column; gap: 0.4rem;
}
.order-form input, .order-form textarea {
    width: 100%; padding: 0.5rem 0.75rem;
    font-family: 'Inter', sans-serif; font-size: 0.82rem; color: #2C2C2C;
    background: #f4f4f4; border: 0; border-radius: 0;
    outline: none; transition: background-color 0.2s ease;
}
.order-form input::placeholder, .order-form textarea::placeholder { color: #999; }
.order-form input:focus, .order-form textarea:focus { background: #f8f8f8; }
.order-form textarea { resize: none; }
.order-size-select {
    display: flex; gap: 0.5rem; margin-bottom: 0.3rem;
}
.order-size-option {
    flex: 1; display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 0.75rem; cursor: pointer;
    background: #f4f4f4; border: 1px solid rgba(197, 157, 95, 0.1);
    font-family: 'Inter', sans-serif; font-size: 0.78rem;
    color: rgba(44, 44, 44, 0.55); transition: all 0.2s ease;
}
.order-size-option:has(input:checked) {
    background: rgba(197, 157, 95, 0.08);
    border-color: #C59D5F;
    color: #2C2C2C;
}
.order-size-option input[type="radio"] {
    width: auto; accent-color: #C59D5F;
}
.order-size-label { font-weight: 500; }
.order-success {
    text-align: center; padding: 1.5rem 0;
}
.order-success .reward-icon { color: #5B7A3B; font-size: 1.8rem; margin-bottom: 0.5rem; }
.order-success h3 { font-size: 1.1em; margin-bottom: 0.3rem; }
.order-success p { font-size: 0.85em; color: rgba(44, 44, 44, 0.55); }

@media (max-width: 480px) {
    .order-size-select { flex-direction: column; }
    .nom-details-fields .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.06), rgba(123, 94, 167, 0.06));
    border: 1px dashed rgba(197, 157, 95, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.75rem 0;
    overflow: hidden;
}
/* When image is loaded, remove placeholder styling */
.img-placeholder:has(img) {
    border: none;
    background: none;
}
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-placeholder i {
    font-size: 1.5rem;
    color: rgba(197, 157, 95, 0.3);
}
.img-placeholder span {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(44, 44, 44, 0.25);
}
.img-placeholder.hero-img {
    aspect-ratio: 21 / 9;
    margin: 0 0 1rem;
}
.img-placeholder.square {
    aspect-ratio: 1 / 1;
}
.product-visual .img-placeholder {
    aspect-ratio: 4 / 3;
    margin: 0;
    border: none;
    background: linear-gradient(165deg, rgba(197, 157, 95, 0.04), rgba(184, 69, 14, 0.03));
}

/* ============================================================
   FOOTER — On dark background
   ============================================================ */
#footer {
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    padding: 0.5em 0.5em 0.35em;
    font-size: 0.75em;
    width: 100%; flex-shrink: 0;
}
#footer a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s ease; }
#footer a:hover { color: white; }

.footer-legal { text-align: center; }
.footer-legal > span {
    display: block; font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.2rem;
}
.footer-credits {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 0.3rem 1rem;
    margin-top: 0.2rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.18);
}
.footer-credits a { color: rgba(255, 255, 255, 0.3); }
.footer-credits a:hover { color: rgba(255, 255, 255, 0.7); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; }
.footer-links a {
    font-size: 0.7rem; color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding-left: 0.65rem; margin-left: 0.65rem;
    border-left: solid 1px rgba(255, 255, 255, 0.15); line-height: 1;
}
.footer-links a:first-child { padding-left: 0; margin-left: 0; border-left: 0; }
.footer-links a:hover { color: white; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
::selection { background: rgba(197, 157, 95, 0.2); color: #2C2C2C; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .slider-card { flex: 0 0 calc(50% - 0.5rem); min-width: 200px; }
    .concierge-layout { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 768px) {
    .product-grid { flex-direction: column; gap: 0.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .modal-badges { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .modal-scroll { padding: 2.5rem 1.5rem 1.5rem; }
}

@media (max-width: 480px) {
    .slider-card { flex: 0 0 85%; min-width: 0; }
    .modal-badges { grid-template-columns: 1fr; }
    .trust-trigger-btn { padding: 0.5rem 1rem; flex-direction: column; gap: 0.35rem; }
    .modal-scroll { padding: 2rem 1rem 1rem; }
}

/* Print */
@media print {
    #grain, #bg, #nav, .modal-overlay, #header { display: none; }
    body { background: white; color: #2C2C2C; overflow: visible; height: auto; }
    #wrapper { height: auto; overflow: visible; }
    #main { box-shadow: none; }
    .panel { display: block !important; height: auto !important; overflow: visible !important; page-break-after: always; }
}

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

/* Focus (a11y) */
:focus-visible { outline: 2px solid #C59D5F; outline-offset: 2px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible), input:focus:not(:focus-visible) { outline: none; }
