/* ============================================================
   Florida Man Fire Sauce Co. — shared stylesheet (all pages)
   Tropical Mexican palette: bougainvillea pink, papaya orange,
   marigold yellow, Caribbean turquoise, palm-leaf lime.
   ============================================================ */
:root {
  --pepper:    #d81b68;   /* bougainvillea pink */
  --pepper-dk: #a10f4e;   /* deep magenta */
  --habanero:  #ff8a3d;   /* papaya / mango orange */
  --ember:     #ffc23c;   /* marigold yellow */
  --char:      #122021;   /* tropical night */
  --char-2:    #1b3331;
  --cream:     #fff8e7;   /* warm sand */
  --cream-2:   #fceac2;
  --lime:      #8fd14f;   /* palm leaf */
  --lake:      #00bfc2;   /* Caribbean turquoise */
  --ink:       #2a1b12;

  --maxw: 1140px;
  --r: 18px;
  --shadow: 0 18px 40px -18px rgba(0,0,0,.55);
  --font-display: 'Bungee', 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: .98; letter-spacing: .5px; margin: 0; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }

/* paper grain */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 800; font-size: .95rem; letter-spacing: .2px;
  text-decoration: none; cursor: pointer; border: none;
  padding: .85em 1.4em; border-radius: 999px; font-family: var(--font-body);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn-primary { background: var(--pepper); color: #fff; box-shadow: 0 10px 22px -10px var(--pepper); }
.btn-primary:hover { background: var(--pepper-dk); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border: 2px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.btn-dark { background: var(--char); color: var(--cream); }
.btn-dark:hover { background: var(--char-2); transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--char); }
.btn-lime:hover { background: #a6e066; transform: translateY(-2px); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--lake); outline-offset: 3px; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,14,10,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--cream);
}
.nav-inner { display: flex; align-items: center; gap: 1rem; height: 64px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--cream); font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .5px; white-space: nowrap; }
.brand .flame { font-size: 1.2rem; filter: drop-shadow(0 0 6px var(--habanero)); }
.nav-links { display: flex; gap: 1.1rem; margin-left: auto; align-items: center; }
.nav-links a { text-decoration: none; color: var(--cream); font-weight: 600; font-size: .9rem; opacity: .82; transition: color .2s, opacity .2s; }
.nav-links a:hover { opacity: 1; color: var(--ember); }
.nav-links a.active { opacity: 1; color: var(--ember); }
.nav-cart { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: .45em .9em !important; border-radius: 999px; }
.nav-cart .count { background: var(--pepper); color: #fff; font-size: .72rem; font-weight: 800; min-width: 1.4em; height: 1.4em; padding: 0 .35em; border-radius: 999px; display: inline-grid; place-items: center; }
.nav-cart .count[data-empty="1"] { background: rgba(255,255,255,.18); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; color: var(--cream); font-size: 1.6rem; cursor: pointer; line-height: 1; }

@media (max-width: 940px) {
  .nav-links { position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--char); padding: .5rem 0; transform: translateY(-130%); transition: transform .25s ease; align-items: stretch; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .9rem 1.4rem; border-top: 1px solid rgba(255,255,255,.06); }
  .nav-cart { margin: .5rem 1.4rem; justify-content: center; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--cream); overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(255,138,61,.55), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(216,27,104,.5), transparent 55%),
    linear-gradient(160deg, #241531 0%, #122021 60%, #0a1414 100%);
}
.hero.lake-theme {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0,191,194,.5), transparent 60%),
    radial-gradient(900px 500px at 8% 110%, rgba(143,209,79,.4), transparent 55%),
    linear-gradient(160deg, #0d2b2c 0%, #102321 60%, #0a1413 100%);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; padding-block: clamp(54px, 9vw, 120px); position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; font-size: .72rem; color: var(--ember); background: rgba(255,194,60,.12); border: 1px solid rgba(255,194,60,.4); padding: .45em .9em; border-radius: 999px; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); margin: 1rem 0 .4rem; text-transform: uppercase; }
.hero h1 .pop { color: var(--ember); }
.hero h1 .lake { color: var(--lake); }
.hero .tag { font-size: clamp(1.05rem, 2.4vw, 1.4rem); max-width: 32ch; color: #f7e9d4; font-weight: 500; }
.hero .trust { margin-top: 1.4rem; font-size: .92rem; color: #d8c4ab; display: flex; flex-wrap: wrap; gap: .3rem .9rem; }
.hero .trust b { color: var(--lime); }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-art { position: relative; justify-self: center; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(-8px) rotate(-3deg);} 50% { transform: translateY(10px) rotate(-3deg);} }

@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero .tag { margin-inline: auto; }
  .hero .trust, .hero-cta { justify-content: center; }
  .hero-art { max-width: 230px; order: -1; }
  .eyebrow { margin-inline: auto; }
}

/* ---------- Marquee ---------- */
.marquee-strip { background: var(--lime); color: var(--char); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; padding: .65rem 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 3; }
.marquee-track { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-track span { padding: 0 1.4rem; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Papel picado bunting (decorative, site-wide) ---------- */
.papel-picado { display: flex; flex-wrap: nowrap; background: var(--char); padding-top: 8px; overflow: hidden; border-bottom: 2px dashed rgba(255,248,231,.3); position: relative; z-index: 40; }
.papel-picado .pennant { flex: 0 0 30px; height: 24px; margin: 0 3px; clip-path: polygon(0 0, 100% 0, 50% 100%); position: relative; }
.papel-picado .pennant::after { content: ""; position: absolute; top: 6px; left: 50%; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: rgba(255,255,255,.35); }

/* ---------- Story strip ---------- */
.story { background: var(--char); color: var(--cream); }
.story .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.story h2 { grid-column: 1 / -1; font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; color: var(--cream); margin-bottom: .4rem; }
.story h2 .lake { color: var(--lake); }
.stat { background: var(--char-2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r); padding: 1.5rem; }
.stat .big { font-family: var(--font-display); font-size: 2.4rem; color: var(--ember); }
.stat p { margin: .3rem 0 0; color: #d8c4ab; font-size: .95rem; }
@media (max-width: 680px) { .story .wrap { grid-template-columns: 1fr; } }

/* ---------- Section headers ---------- */
.head { text-align: center; max-width: 42ch; margin: 0 auto clamp(34px, 5vw, 56px); }
.head .kicker { color: var(--pepper); font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; font-size: .78rem; }
.head h2 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); text-transform: uppercase; margin: .4rem 0; }
.head p { color: #6a574a; font-size: 1.05rem; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--cream-2); border: 1.5px solid #e3d2b3; border-radius: var(--r);
  padding: 1.4rem; position: relative; overflow: hidden;
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow); }
.card .label-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.tagchip { font-size: .68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--pepper-dk); background: rgba(216,27,104,.1); border: 1px solid rgba(216,27,104,.3); padding: .25em .6em; border-radius: 6px; }
.tagchip.lake { color: #00838a; background: rgba(0,191,194,.12); border-color: rgba(0,191,194,.35); }
.scoville { font-size: .68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--pepper-dk); background: rgba(216,27,104,.1); border: 1px solid rgba(216,27,104,.3); padding: .25em .6em; border-radius: 6px; }
.bottle-mini { width: 40px; flex: none; }
.card h3 { font-size: 1.5rem; text-transform: uppercase; color: var(--char); margin: .8rem 0 .35rem; }
.card .slogan { font-style: italic; color: #6a574a; font-size: .96rem; }
.card.flag::after { content: "★ FLAGSHIP"; position: absolute; top: 14px; right: -34px; transform: rotate(45deg); background: var(--pepper); color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: 1px; padding: .25em 3em; }

/* heat / kick meter (reused) */
.heat { display: flex; gap: 4px; margin-top: .9rem; align-items: center; }
.heat .flame { font-size: 1.05rem; filter: grayscale(1) opacity(.3); transition: filter .4s ease, transform .4s ease; }
.card.revealed .heat .flame.on, .revealed .heat .flame.on { filter: none; transform: scale(1.12); }
.heat .lvl { margin-left: auto; font-size: .72rem; font-weight: 700; color: var(--pepper-dk); text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Product (buyable) cards ---------- */
.prod { min-height: 100%; }
.prod .blurb { color: #6a574a; font-size: .95rem; margin: .3rem 0 0; }
.prod .buy { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.prod .price { font-family: var(--font-display); font-size: 1.7rem; color: var(--char); }
.prod .price small { font-family: var(--font-body); font-size: .7rem; font-weight: 700; color: #6a574a; display: block; letter-spacing: .5px; text-transform: uppercase; }
.btn-add { background: var(--char); color: var(--cream); padding: .65em 1.1em; font-size: .85rem; }
.btn-add:hover { background: var(--pepper); transform: translateY(-2px); }
.btn-add.added { background: var(--lime); color: var(--char); }

/* ---------- Storefront product-line cards ---------- */
.lines { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }
.line-card { text-decoration: none; color: inherit; background: var(--cream-2); border: 1.5px solid #e3d2b3; border-radius: var(--r); overflow: hidden; box-shadow: 0 10px 24px -16px rgba(0,0,0,.4); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.line-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.line-card .art { aspect-ratio: 16/10; display: grid; place-items: center; }
.line-card .body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.line-card h3 { font-size: 1.6rem; text-transform: uppercase; color: var(--char); }
.line-card .sub { font-style: italic; color: #6a574a; font-size: .95rem; margin: .3rem 0 0; }
.line-card .go { margin-top: 1rem; font-weight: 800; color: var(--pepper); font-size: .9rem; }
.line-card:hover .go { color: var(--pepper-dk); }

/* ---------- "How ordering works" steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.1rem; counter-reset: step; }
.step { background: var(--cream-2); border: 1.5px solid #e3d2b3; border-radius: var(--r); padding: 1.6rem 1.3rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 1.2rem; width: 36px; height: 36px; border-radius: 50%; background: var(--pepper); color: #fff; font-family: var(--font-display); font-size: 1.2rem; display: grid; place-items: center; box-shadow: 0 6px 14px -6px var(--pepper); }
.step h3 { font-size: 1.15rem; text-transform: uppercase; color: var(--char); margin: .6rem 0 .4rem; }
.step p { color: #6a574a; font-size: .94rem; margin: 0; }
.step .ico { font-size: 1.6rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.1rem; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Heat index (dark) ---------- */
.heatindex { background: linear-gradient(160deg, var(--char) 0%, #241531 100%); color: var(--cream); }
.heatindex .head h2, .heatindex .head p { color: var(--cream); }
.heatindex .head p { color: #d8c4ab; }
.scale { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.scale-row { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: .8rem 1.1rem; transition: background .2s, transform .2s; }
.scale-row:hover { background: rgba(255,138,61,.12); transform: translateX(6px); }
.scale-row .num { font-family: var(--font-display); font-size: 2rem; color: var(--ember); text-align: center; }
.scale-row .desc b { display: block; font-size: 1.05rem; }
.scale-row .desc span { color: #d8c4ab; font-size: .92rem; }
.meter { height: 10px; border-radius: 999px; background: rgba(255,255,255,.1); margin-top: .5rem; overflow: hidden; }
.meter i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--ember), var(--pepper)); transition: width 1.1s cubic-bezier(.2,.8,.2,1); }
.heatindex.revealed .meter i { width: var(--w); }

/* ---------- Farm & Lake ---------- */
.farm .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.farm-art { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 6px solid #fff; }
.farm h2 { font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; }
.farm h2 .lake { color: var(--lake); }
.farm p { color: #5a463a; font-size: 1.05rem; }
.farm ul { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.farm li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }
.farm li .chk { color: var(--lime); font-weight: 800; flex: none; background: var(--char); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; }
@media (max-width: 780px) { .farm .wrap { grid-template-columns: 1fr; } }

/* ---------- Comment wall ---------- */
.comments { background: var(--cream-2); }
.wall { columns: 3 280px; column-gap: 1.2rem; }
.post { break-inside: avoid; background: #fff; border: 1px solid #e9dcc4; border-radius: 14px; padding: 1.1rem 1.2rem; margin-bottom: 1.2rem; box-shadow: 0 6px 16px -12px rgba(0,0,0,.4); }
.post .who { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.post .av { width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .95rem; }
.post .who b { font-size: .92rem; }
.post .who span { font-size: .74rem; color: #998; display: block; font-weight: 500; }
.post p { margin: 0; font-size: .96rem; color: #3a2c22; }
.post .meta { margin-top: .7rem; font-size: .76rem; opacity: .7; display: flex; gap: .9rem; }
.post .meta span { color: #998877; }

/* ---------- vault ---------- */
.vault-wrap { text-align: center; margin-top: 2rem; }
.vault { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.vault.open { max-height: 1600px; }
.vault-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .7rem; margin-top: 1.6rem; text-align: left; }
.vault-item { background: var(--cream-2); border: 1px solid #e3d2b3; border-radius: 12px; padding: .8rem 1rem; }
.vault-item b { display: block; font-size: .95rem; color: var(--char); }
.vault-item span { font-size: .82rem; font-style: italic; color: #6a574a; }

/* ---------- Generic CTA band ---------- */
.cta-band { background: var(--pepper); color: #fff; text-align: center; }
.cta-band.dark { background: var(--char); }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4rem); text-transform: uppercase; }
.cta-band p { max-width: 48ch; margin: 1rem auto 0; font-size: 1.1rem; color: #ffe6df; }
.cta-band.dark p { color: #d8c4ab; }
.cta-band .hero-cta { justify-content: center; margin-top: 2rem; }
.cta-band .note { margin-top: 1.6rem; font-size: .82rem; color: #ffd8cf; opacity: .85; }

/* ============================================================
   CART + CHECKOUT (cart.html)
   ============================================================ */
.cart-page { background: var(--cream); min-height: 70vh; }
.cart-layout { display: grid; grid-template-columns: 1.5fr .9fr; gap: 2rem; align-items: start; }
@media (max-width: 880px) { .cart-layout { grid-template-columns: 1fr; } }

.panel { background: #fff; border: 1.5px solid #e9dcc4; border-radius: var(--r); padding: 1.4rem 1.5rem; box-shadow: 0 10px 24px -18px rgba(0,0,0,.4); }
.panel h2 { font-size: 1.5rem; text-transform: uppercase; color: var(--char); margin-bottom: 1rem; }

.line-item { display: grid; grid-template-columns: 1fr auto; gap: .4rem 1rem; padding: 1rem 0; border-bottom: 1px solid #efe3cd; }
.line-item:last-child { border-bottom: 0; }
.line-item .li-name { font-weight: 700; color: var(--char); }
.line-item .li-variant { font-size: .82rem; color: #8a7868; }
.line-item .li-price { font-weight: 700; color: var(--char); text-align: right; white-space: nowrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid #e3d2b3; border-radius: 999px; overflow: hidden; background: var(--cream-2); }
.qty button { width: 32px; height: 32px; border: 0; background: transparent; font-size: 1.1rem; font-weight: 800; cursor: pointer; color: var(--char); }
.qty button:hover { background: rgba(216,27,104,.12); }
.qty span { min-width: 2ch; text-align: center; font-weight: 700; }
.li-remove { background: none; border: 0; color: var(--pepper); font-size: .8rem; font-weight: 700; cursor: pointer; padding: 0; }
.li-remove:hover { text-decoration: underline; }

.summary .row { display: flex; justify-content: space-between; padding: .35rem 0; color: #5a463a; }
.summary .row.total { border-top: 2px solid #efe3cd; margin-top: .5rem; padding-top: .8rem; font-family: var(--font-display); font-size: 1.6rem; color: var(--char); }

.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; font-size: .85rem; color: var(--char); margin-bottom: .35rem; }
.field label .req { color: var(--pepper); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .7em .9em; border: 1.5px solid #e3d2b3; border-radius: 12px; background: var(--cream);
}
.field textarea { min-height: 80px; resize: vertical; }
.field .hint { font-size: .76rem; color: #8a7868; margin-top: .3rem; }
.field.invalid input, .field.invalid select { border-color: var(--pepper); background: #fff4f1; }
.field .err { display: none; color: var(--pepper-dk); font-size: .78rem; font-weight: 600; margin-top: .3rem; }
.field.invalid .err { display: block; }
.radios { display: grid; gap: .5rem; }
.radio { display: flex; gap: .6rem; align-items: flex-start; border: 1.5px solid #e3d2b3; border-radius: 12px; padding: .7rem .9rem; cursor: pointer; background: var(--cream); }
.radio input { width: auto; margin-top: .2rem; }
.radio:hover { border-color: var(--pepper); }
.radio b { color: var(--char); font-size: .92rem; }
.radio span { display: block; font-size: .8rem; color: #8a7868; }

.empty-cart { text-align: center; padding: 3rem 1rem; }
.empty-cart .big { font-family: var(--font-display); font-size: 2rem; color: var(--char); text-transform: uppercase; }
.empty-cart p { color: #6a574a; }

/* confirmation / zelle */
.confirm { text-align: center; }
.confirm .check { width: 70px; height: 70px; border-radius: 50%; background: var(--lime); color: var(--char); display: grid; place-items: center; font-size: 2.2rem; margin: 0 auto 1rem; }
.order-num { font-family: var(--font-display); font-size: clamp(1.8rem,5vw,2.8rem); letter-spacing: 2px; color: var(--pepper); background: var(--cream-2); border: 2px dashed var(--pepper); border-radius: 14px; padding: .6rem 1.2rem; display: inline-block; margin: .4rem 0 1.2rem; }
.zelle-box { text-align: left; background: var(--char); color: var(--cream); border-radius: var(--r); padding: 1.4rem 1.5rem; margin: 1.4rem 0; }
.zelle-box h3 { font-size: 1.2rem; text-transform: uppercase; color: var(--ember); margin-bottom: .6rem; }
.zelle-box ol { margin: 0; padding-left: 1.2rem; display: grid; gap: .5rem; }
.zelle-box b { color: #fff; }
.zelle-amount { font-family: var(--font-display); font-size: 1.4rem; color: var(--lime); }
.copybtn { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--cream); font-size: .78rem; font-weight: 700; border-radius: 999px; padding: .25em .8em; cursor: pointer; margin-left: .5rem; }
.copybtn:hover { background: rgba(255,255,255,.2); }

/* toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(120%); background: var(--char); color: var(--cream); padding: .8rem 1.3rem; border-radius: 999px; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow); z-index: 200; transition: transform .35s cubic-bezier(.2,.8,.2,1); display: flex; gap: .5rem; align-items: center; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .lime { color: var(--lime); }

/* ---------- Footer ---------- */
footer { background: var(--char); color: #cbb7a3; padding: clamp(40px, 6vw, 70px) 0 2rem; position: relative; z-index: 2; }
footer .top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 1.8rem; }
footer .brand { font-size: 1.5rem; }
footer .foot-links { display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; margin-top: .8rem; }
footer .foot-links a { color: #cbb7a3; text-decoration: none; font-size: .85rem; font-weight: 600; }
footer .foot-links a:hover { color: var(--ember); }
.disclaimers { display: flex; flex-wrap: wrap; gap: .6rem; max-width: 560px; align-content: flex-start; }
.disclaimers span { font-size: .76rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: .4em .8em; border-radius: 999px; }
footer .fine { margin-top: 1.6rem; font-size: .76rem; color: #8a7868; max-width: 70ch; }
footer .legal { margin-top: 1rem; font-size: .76rem; color: #6f6052; display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .heatindex .meter i { transition: none !important; }
  .toast { transition: none !important; }
}
