/* ============================================================
   TAP2SIP — il menu visto dal tavolo, di sera.
   Direzione: il bancone a lume di candela. Neri caldi da
   espresso, rame d'alambicco (personalizzabile dal locale),
   crema di carta. Firma visiva: la goccia che scende — il filo
   del condensatore che apre la pagina e ritorna nei separatori.
   Fraunces (ottico 9–144) parla; Instrument Sans serve.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --carbone: #14100a;        /* nero espresso, caldo */
  --fumo: #1c1610;           /* pannello */
  --fumo-2: #251d13;         /* pannello rialzato */
  --linea: #382b1b;          /* filo caldo */
  --rame: #c9793f;           /* accento del locale (sovrascrivibile) */
  --rame-chiaro: #e09a5e;
  --rame-20: rgba(201, 121, 63, 0.2);
  --crema: #f4ecdc;
  --grigio: #a4917a;
  --verde: #93b07f;
  --rosso: #d0685a;
  --f-display: 'Fraunces', Georgia, serif;
  --f-ui: 'Instrument Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(560px 300px at 78% -60px, rgba(201, 121, 63, 0.16), transparent 70%),
    radial-gradient(700px 460px at -10% 105%, rgba(201, 121, 63, 0.07), transparent 65%),
    linear-gradient(180deg, #1d1610 0%, var(--carbone) 320px);
  background-color: var(--carbone);
  color: var(--crema);
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
}

/* grana fotografica: toglie la piattezza da schermo */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

a { color: var(--rame-chiaro); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; }
button { font-family: var(--f-ui); }

::selection { background: var(--rame); color: var(--carbone); }

/* ---------- movimenti (con rispetto) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes drip { 0% { transform: translateY(-6px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   TESTATA
   ============================================================ */

.cl-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid rgba(56, 43, 27, 0.6);
  backdrop-filter: blur(3px);
}
.wordmark {
  font-family: var(--f-display); font-weight: 700; font-size: 21px;
  letter-spacing: 0.01em; color: var(--crema);
}
.wordmark .dot { color: var(--rame); }
.cl-table {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grigio);
}
.cl-table b { color: var(--rame-chiaro); font-size: 14px; letter-spacing: 0.05em; }
.lang-btn {
  background: none; border: 1px solid var(--linea); border-radius: 999px;
  color: var(--grigio); font-weight: 600; font-size: 11.5px; letter-spacing: 0.1em;
  padding: 6px 12px; cursor: pointer; transition: color .2s, border-color .2s;
}
.lang-btn:hover { color: var(--rame-chiaro); border-color: var(--rame); }

.cl-main { max-width: 1020px; margin: 0 auto; padding: 26px clamp(16px, 4vw, 32px) 90px; }

/* ============================================================
   EROE — la goccia apre la serata
   ============================================================ */

.cl-hero {
  position: relative; text-align: center;
  padding: 66px clamp(18px, 6vw, 56px) 44px;
  margin-bottom: 44px;
  background: linear-gradient(180deg, rgba(37, 29, 19, 0.55), rgba(28, 22, 16, 0.25));
  border: 1px solid var(--linea);
  border-radius: 18px;
  overflow: hidden;
  animation: rise 0.6s ease both;
}
/* il filo del condensatore… */
.cl-hero::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--rame));
}
/* …e la goccia */
.cl-hero::after {
  content: "";
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50% 50% 60% 60%;
  background: var(--rame-chiaro);
  box-shadow: 0 0 14px 2px var(--rame-20), 0 0 4px var(--rame);
  animation: drip 1.1s ease 0.2s both;
}
.cl-hero .eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--rame-chiaro); margin-bottom: 18px;
}
.cl-hero h1 {
  font-family: var(--f-display); font-optical-sizing: auto;
  font-size: clamp(30px, 6vw, 44px); font-weight: 600; line-height: 1.12;
  letter-spacing: -0.01em; max-width: 17ch; margin: 0 auto 14px;
}
.cl-hero h1 em { font-style: italic; font-weight: 500; color: var(--rame-chiaro); }
.cl-hero p { color: var(--grigio); font-size: 15px; max-width: 44ch; margin: 0 auto 26px; }
.cl-hero .btn { font-size: 15px; padding: 15px 34px; }

.happy-banner {
  display: inline-block; margin: -8px auto 22px;
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.06em;
  color: var(--carbone); background: var(--rame);
  border-radius: 999px; padding: 8px 18px;
  box-shadow: 0 4px 18px var(--rame-20);
}

/* ============================================================
   SEZIONI — titoli da carta dei cocktail
   ============================================================ */

.cl-section-title {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--grigio);
  margin: 46px 0 8px; text-align: center;
}
.cl-section-title::before, .cl-section-title::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--linea));
}
.cl-section-title::after { background: linear-gradient(90deg, var(--linea), transparent); }

.section-sub-cl {
  color: var(--grigio); font-size: 13.5px; text-align: center;
  max-width: 52ch; margin: 0 auto 18px;
}

/* ============================================================
   GRIGLIE E CARTE
   ============================================================ */

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-top: 18px;
}
.menu-grid--small { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.menu-grid > * { animation: rise 0.5s ease both; }
.menu-grid > *:nth-child(1) { animation-delay: 0.04s; }
.menu-grid > *:nth-child(2) { animation-delay: 0.08s; }
.menu-grid > *:nth-child(3) { animation-delay: 0.12s; }
.menu-grid > *:nth-child(4) { animation-delay: 0.16s; }
.menu-grid > *:nth-child(5) { animation-delay: 0.20s; }
.menu-grid > *:nth-child(n+6) { animation-delay: 0.24s; }

.card {
  background: linear-gradient(180deg, var(--fumo-2), var(--fumo) 60%);
  border: 1px solid var(--linea);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.drink-card {
  padding: 18px 18px 16px; cursor: pointer;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.drink-card:hover {
  transform: translateY(-3px);
  border-color: var(--rame);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--rame-20);
}
.drink-card img {
  width: calc(100% + 36px); margin: -18px -18px 2px;
  height: 150px; object-fit: cover;
  border-radius: 15px 15px 0 0;
  filter: saturate(0.92) contrast(1.02);
  border-bottom: 1px solid var(--linea);
}
.drink-card .head, .snack-card .head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.drink-card h3, .snack-card h3 {
  font-family: var(--f-display); font-optical-sizing: auto;
  font-size: 21px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.15;
}
.price {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: 19px; color: var(--rame-chiaro); white-space: nowrap;
}
.drink-card .desc, .snack-card .desc {
  font-size: 13.5px; line-height: 1.62; color: var(--grigio);
}
.drink-card .foot, .snack-card .foot {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(56, 43, 27, 0.55);
}

.snack-card { padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.snack-card h3 { font-size: 18px; }
.snack-card img { border-radius: 10px; border: 1px solid var(--linea); }

/* ---------- chip ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--grigio); background: rgba(20, 16, 10, 0.5);
  border: 1px solid var(--linea); border-radius: 999px; padding: 4px 11px;
}
button.chip { cursor: pointer; transition: border-color .2s, color .2s; }
button.chip:hover { border-color: var(--rame); color: var(--crema); }
.chip--rame { color: var(--rame-chiaro); border-color: rgba(201, 121, 63, 0.45); }
.chip--verde { color: var(--verde); border-color: rgba(147, 176, 127, 0.4); }
.chip--alg { color: #d9b869; border-color: rgba(217, 184, 105, 0.35); }

/* ---------- barre di gusto: il calibro di rame ---------- */
.taste { display: grid; gap: 7px; margin-top: 4px; }
.taste-row { display: flex; align-items: center; gap: 12px; }
.taste-row .k {
  width: 84px; flex-shrink: 0;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grigio);
}
.segs { display: flex; gap: 4px; }
.seg {
  width: 17px; height: 7px; border-radius: 4px;
  background: #2b2113;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
}
.seg.on {
  background: linear-gradient(90deg, var(--rame), var(--rame-chiaro));
  box-shadow: 0 0 6px var(--rame-20);
}
.seg.half { background: linear-gradient(90deg, var(--rame) 50%, #2b2113 50%); }

/* ============================================================
   BOTTONI
   ============================================================ */

.btn {
  display: inline-block; border: none; cursor: pointer;
  font-family: var(--f-ui); font-weight: 600; font-size: 14px; letter-spacing: 0.015em;
  color: #1b1206;
  background: linear-gradient(180deg, var(--rame-chiaro), var(--rame));
  border-radius: 11px; padding: 12px 24px;
  box-shadow: 0 4px 16px var(--rame-20), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, filter 0.2s ease;
  text-decoration: none;
}
.btn:hover { filter: brightness(1.07); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: default; }
.btn--ghost {
  background: transparent; color: var(--crema);
  border: 1px solid var(--linea); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--rame); color: var(--rame-chiaro); filter: none; }
.btn--small { font-size: 13px; padding: 9px 16px; border-radius: 9px; }

/* ============================================================
   FOGLIO (schede, wizard, carrello) — sale dal fondo come al tavolo
   ============================================================ */

.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 7, 4, 0.74);
  backdrop-filter: blur(7px);
  display: flex; align-items: flex-end; justify-content: center;
  animation: rise 0.2s ease both;
}
.sheet {
  position: relative; width: 100%; max-width: 620px;
  max-height: 88vh; overflow-y: auto;
  background: linear-gradient(180deg, #262019, var(--fumo) 140px);
  border: 1px solid var(--linea); border-bottom: none;
  border-radius: 22px 22px 0 0;
  padding: 30px 24px calc(26px + env(safe-area-inset-bottom, 0px));
  animation: rise 0.28s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.sheet::before {
  content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 4px; border-radius: 99px; background: var(--linea);
}
@media (min-width: 680px) {
  .overlay { align-items: center; padding: 24px; }
  .sheet { border-radius: 22px; border-bottom: 1px solid var(--linea); }
  .sheet::before { display: none; }
}
.sheet .close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--grigio);
  font-size: 30px; line-height: 1; cursor: pointer; z-index: 2;
}
.sheet .close:hover { color: var(--crema); }
.sheet > img {
  width: calc(100% + 48px); margin: -30px -24px 18px;
  height: 190px; object-fit: cover; border-radius: 21px 21px 0 0;
}
.sheet h2 {
  font-family: var(--f-display); font-optical-sizing: auto;
  font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px;
  padding-right: 30px;
}
.style-line {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rame-chiaro); margin-bottom: 14px;
}
.sheet .desc { color: var(--grigio); font-size: 14.5px; line-height: 1.66; margin-bottom: 14px; }
.sheet .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.eyebrow {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--grigio);
}
.ing-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.glossa {
  background: rgba(20, 16, 10, 0.55); border: 1px solid var(--linea);
  border-left: 2px solid var(--rame);
  border-radius: 10px; padding: 12px 14px;
  font-size: 13px; line-height: 1.6; color: var(--grigio); margin-top: 10px;
}
.glossa b { color: var(--crema); }
.actions { display: flex; gap: 10px; align-items: center; margin-top: 20px; flex-wrap: wrap; }

/* ============================================================
   WIZARD — tre domande, voce da oste
   ============================================================ */

.wiz-progress { display: flex; gap: 6px; margin: 4px 0 22px; }
.wiz-progress i { flex: 1; height: 3px; border-radius: 99px; background: var(--linea); }
.wiz-progress i.on { background: linear-gradient(90deg, var(--rame), var(--rame-chiaro)); }

.wiz-step h2 { margin-bottom: 8px; }
.hint { font-size: 13px; color: var(--grigio); line-height: 1.6; margin-bottom: 16px; }

.wiz-opts { display: grid; gap: 10px; margin-top: 14px; }
.wiz-opt {
  position: relative; text-align: left; cursor: pointer;
  font-family: var(--f-display); font-size: 17px; font-weight: 500; color: var(--crema);
  background: rgba(20, 16, 10, 0.45); border: 1px solid var(--linea);
  border-radius: 13px; padding: 16px 44px 16px 18px;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
}
.wiz-opt::after {
  content: "→"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--rame); font-family: var(--f-ui); font-size: 16px;
  opacity: 0.55; transition: opacity 0.18s, transform 0.18s;
}
.wiz-opt:hover, .wiz-opt:active {
  border-color: var(--rame); background: rgba(201, 121, 63, 0.08);
}
.wiz-opt:hover::after { opacity: 1; transform: translate(3px, -50%); }

.wiz-result {
  background: rgba(20, 16, 10, 0.45); border: 1px solid var(--linea);
  border-radius: 14px; padding: 16px; margin-bottom: 12px;
}
.wiz-result .head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.wiz-result h3 { font-family: var(--f-display); font-size: 20px; font-weight: 600; }
.match {
  font-family: var(--f-display); font-style: italic; font-size: 15px;
  color: var(--rame-chiaro); white-space: nowrap;
}
.wiz-result .why { font-size: 13px; color: var(--grigio); line-height: 1.6; margin: 7px 0 12px; }
.wiz-result .row2 { display: flex; justify-content: space-between; align-items: center; gap: 10px; }

/* ---------- allergeni ---------- */
.alg-checks { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.alg-checks label {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--grigio); cursor: pointer;
}
.alg-checks input { width: 15px; height: 15px; accent-color: var(--rame); }

/* ============================================================
   CARRELLO
   ============================================================ */

.cart-bar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 80; width: min(92%, 460px);
}
.cart-bar .btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; padding: 16px 22px; border-radius: 999px;
  box-shadow: 0 10px 34px rgba(201, 121, 63, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cart-list { display: grid; gap: 12px; margin: 16px 0; }
.cart-row-wrap { border-bottom: 1px solid rgba(56, 43, 27, 0.55); padding-bottom: 12px; }
.cart-row-wrap:last-child { border-bottom: none; padding-bottom: 0; }
.cart-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 15px; }
.cart-row > span:first-child { font-family: var(--f-display); font-size: 16.5px; font-weight: 500; }
.qty { display: flex; align-items: center; gap: 9px; }
.qty button {
  width: 32px; height: 32px; border-radius: 9px;
  border: 1px solid var(--linea); background: rgba(20, 16, 10, 0.5);
  color: var(--crema); font-size: 17px; cursor: pointer;
}
.qty button:hover { border-color: var(--rame); }
.qty b { min-width: 16px; text-align: center; }

.variant-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.vchip {
  font-size: 11.5px; font-weight: 500; color: var(--grigio);
  background: rgba(20, 16, 10, 0.5); border: 1px solid var(--linea);
  border-radius: 999px; padding: 5px 12px; cursor: pointer;
  transition: all 0.15s;
}
.vchip.on { color: var(--carbone); background: var(--rame); border-color: var(--rame); }

input, textarea, select {
  width: 100%; background: rgba(20, 16, 10, 0.6);
  border: 1px solid var(--linea); border-radius: 10px;
  color: var(--crema); font-family: var(--f-ui); font-size: 14px;
  padding: 11px 13px;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--rame); }
.note-input { margin-top: 8px; font-size: 13px !important; padding: 9px 12px !important; }

.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; margin-top: 4px;
  border-top: 1px solid var(--linea);
  font-family: var(--f-display); font-size: 21px; font-weight: 600;
}
.cart-total span:last-child { font-style: italic; color: var(--rame-chiaro); }

.msg { font-size: 13px; min-height: 16px; }
.msg.err { color: var(--rosso); }
.msg.ok { color: var(--verde); }

/* ============================================================
   CONFERMA, VALUTAZIONI, CONTO
   ============================================================ */

.confirm-box { text-align: center; padding: 10px 2px; }
.confirm-box .big {
  width: 58px; height: 58px; margin: 4px auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--carbone);
  background: linear-gradient(180deg, var(--rame-chiaro), var(--rame));
  border-radius: 50%;
  box-shadow: 0 8px 26px var(--rame-20);
}
.confirm-box p { color: var(--grigio); font-size: 14px; line-height: 1.6; }

.pay-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.split-calc {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px;
  font-size: 14px;
}
.split-calc button {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--linea); background: rgba(20, 16, 10, 0.5);
  color: var(--crema); font-size: 17px; cursor: pointer;
}
.split-calc span { font-family: var(--f-display); font-style: italic; color: var(--rame-chiaro); font-size: 16px; }

.rate-list { display: grid; gap: 8px; margin-top: 12px; text-align: left; }
.rate-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: rgba(20, 16, 10, 0.5); border: 1px solid var(--linea);
  border-radius: 11px; padding: 11px 15px; font-size: 14px;
}
.rate-btn { background: none; border: none; font-size: 22px; cursor: pointer; padding: 2px 6px; transition: transform 0.15s; }
.rate-btn:hover { transform: scale(1.2); }

/* ---------- codice tavolo ---------- */
.code-box { text-align: center; padding: 8px 4px 2px; }
.code-lock { font-size: 38px; margin-bottom: 8px; }
.code-input {
  width: 220px; margin: 16px auto 8px; display: block; text-align: center;
  font-family: var(--f-display); font-size: 34px; letter-spacing: 12px;
  padding: 12px 4px 12px 16px; border-radius: 14px;
}

/* ============================================================
   PIÈ DI PAGINA E VARIE
   ============================================================ */

.cl-footer {
  text-align: center; color: #6e604d; font-size: 12px; line-height: 1.8;
  padding: 34px 20px calc(30px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(56, 43, 27, 0.5);
}
.cl-footer a { color: var(--grigio); }

#offline-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #d9b869; color: #14100a;
  font-weight: 600; font-size: 13px; text-align: center; padding: 7px 12px;
}

@media (max-width: 560px) {
  .cl-hero { padding: 58px 20px 36px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid--small { grid-template-columns: 1fr 1fr; }
  .snack-card h3 { font-size: 16px; }
}

[hidden] { display: none !important; }

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 6px 0 4px; }
.filter-chips .chip { font-size: 12.5px; padding: 7px 15px; cursor: pointer; }
.filter-chips .fa-solid { font-size: 11px; }

/* drink segreto */
.drink-card--secret { border: 1px dashed var(--rame); }
.drink-card--secret::after {
  content: "\f21b"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 10px; right: 12px; font-size: 15px; color: var(--rame);
}

/* conferma a pressione lunga */
.send-hold { position: relative; overflow: hidden; touch-action: none; user-select: none; -webkit-user-select: none; }
.send-hold__bar { position: absolute; inset: 0 auto 0 0; width: 0; background: rgba(255,255,255,.22); pointer-events: none; }
.send-hold__txt { position: relative; }

/* ---------- v20: schede più ariose, icone, accordion ---------- */
.chip .fa-solid { font-size: 10.5px; opacity: .85; margin-right: 2px; }

.acc {
  margin-top: 12px; border: 1px solid var(--linea); border-radius: 12px;
  background: rgba(255,255,255,.02); overflow: hidden;
}
.acc summary {
  cursor: pointer; list-style: none; padding: 12px 14px; font-size: 13.5px;
  font-weight: 600; color: var(--grigio); display: flex; align-items: center; gap: 9px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  margin-left: auto; font-size: 10px; transition: transform .18s;
}
.acc[open] summary::after { transform: rotate(180deg); }
.acc[open] summary { color: var(--crema); }
.acc .ing-chips, .acc #glossa-box, .acc-body { padding: 0 14px 13px; }
.acc-body { font-size: 13.5px; color: var(--grigio); }
.acc--alg summary .fa-triangle-exclamation { color: #d9b869; }
.acc-n {
  background: #d9b869; color: #1b1c1e; font-size: 10.5px; font-weight: 800;
  border-radius: 20px; padding: 1px 7px;
}

/* I tuoi ordini */
.tor-card { border: 1px solid var(--linea); border-radius: 14px; padding: 12px 14px; margin-top: 10px; }
.tor-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.tor-line { padding: 4px 0; font-size: 14.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tor-rate { display: inline-flex; gap: 6px; margin-left: auto; }
.tor-rate .rate-btn { font-size: 14px; padding: 5px 10px; }


/* v23.1: il foglio dei popup deve essere opaco — niente contenuti che affiorano */
.overlay .sheet { background: #221a11; isolation: isolate; }
.cl-footer { position: relative; z-index: 0; }

/* v26: promo in cima + dropdown lingue */
#promo-top {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: linear-gradient(90deg, var(--rame), #a85f2b);
  color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 9px 42px 9px 14px; position: relative; z-index: 5;
}
#promo-top .fa-tag { font-size: 12px; }
#promo-x {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 20px;
  cursor: pointer; padding: 2px 10px; opacity: .85;
}
.lang-select {
  background: rgba(255,255,255,.05); color: var(--crema);
  border: 1px solid var(--linea); border-radius: 10px;
  padding: 7px 10px; font-family: inherit; font-size: 13px; cursor: pointer;
}
.lang-select option { color: #1b1c1e; }
