/* ============================================================
   MANTUNITOUR · Liste Nozze — styles.css (export statico)
   Tutti i valori di tema vivono qui, in :root. Cambia il tema
   da un solo punto: colori, font, raggi, ombre.
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* ---- Tipografia ---- */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --fs-body: 16px;
  --lh-body: 1.65;

  /* ---- Superfici (bianco + sabbia) ---- */
  --color-paper: #ffffff;
  --color-sand-50: #faf6ee;
  --color-sand-100: #f3ebdc;
  --color-sand-200: #e9ddc9;

  /* ---- Inchiostro / testo ---- */
  --color-ink: #2c2823;
  --color-ink-2: #6f665a;
  --color-ink-3: #9a9081;
  --color-line: #ece3d4;
  --color-line-2: #ddd1bd;

  /* ---- Accenti (oceano / turchese / oro) ---- */
  --color-ocean: oklch(0.50 0.095 232);
  --color-ocean-deep: oklch(0.40 0.085 235);
  --color-turquoise: oklch(0.74 0.085 196);
  --color-turquoise-2: oklch(0.66 0.095 200);
  --color-gold: oklch(0.76 0.085 82);
  --color-gold-deep: oklch(0.62 0.085 78);

  /* ---- Ruoli semantici ---- */
  --color-bg: var(--color-sand-50);
  --color-surface: var(--color-paper);
  --color-primary: var(--color-ocean);
  --color-primary-contrast: #ffffff;
  --color-accent: var(--color-turquoise-2);
  --color-heading: var(--color-ink);
  --color-text: var(--color-ink);
  --color-text-muted: var(--color-ink-2);
  --color-border: var(--color-line);
  --color-focus: color-mix(in oklch, var(--color-ocean) 40%, transparent);

  /* ---- Raggi di bordo ---- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* ---- Ombre ---- */
  --shadow-sm: 0 1px 2px rgba(44,40,35,.06), 0 2px 8px rgba(44,40,35,.05);
  --shadow-md: 0 6px 20px rgba(44,40,35,.09), 0 2px 6px rgba(44,40,35,.06);
  --shadow-lg: 0 24px 60px rgba(31,53,63,.18);

  /* ---- Layout ---- */
  --container-max: 1180px;
  --space-section: clamp(56px, 8vw, 88px);
  --gradient-overlay: linear-gradient(180deg, rgba(18,42,55,.42) 0%, rgba(18,42,55,.10) 38%, rgba(18,42,55,.62) 100%);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.12; margin: 0; color: var(--color-heading); }
p { margin: 0; }
a { color: var(--color-ocean); text-decoration: none; }
a:hover { color: var(--color-ocean-deep); }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: clamp(18px, 5vw, 28px); }
.section { padding-block: var(--space-section); }
.section--surface { background: var(--color-surface); }
.section--sand { background: var(--color-sand-50); }

.section-head { max-width: 640px; margin-inline: auto; margin-bottom: clamp(32px, 5vw, 48px); text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 46px); margin-top: 12px; }
.section-head p { margin-top: 14px; color: var(--color-text-muted); font-size: 17px; }

.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--color-accent); }
.eyebrow--light { color: rgba(255,255,255,.85); }
.eyebrow--gold { color: var(--color-gold-deep); }

.rule-gold { width: 54px; height: 2px; margin-inline: auto; border-radius: 2px; background: linear-gradient(90deg, var(--color-gold), var(--color-gold-deep)); }
.rule-gold--left { margin-inline: 0 auto; }

.muted { color: var(--color-text-muted); }

/* ============================================================
   COMPONENTE · Bottone  (.btn + varianti)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  background: var(--color-primary); color: var(--color-primary-contrast);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-primary-contrast); }
.btn--primary { background: linear-gradient(120deg, var(--color-ocean) 0%, var(--color-turquoise-2) 120%); }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-line-2); box-shadow: none; }
.btn--ghost:hover { border-color: var(--color-ocean); color: var(--color-ocean); }
.btn--light { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); color: #fff; backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.28); color: #fff; }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 9px 16px; font-size: 11px; }
.btn--lg { padding: 17px 34px; font-size: 14px; }

/* ============================================================
   COMPONENTE · Pill / Badge
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-pill);
  background: var(--color-sand-100); color: var(--color-ocean);
}
.pill--turq { background: color-mix(in oklch, var(--color-turquoise) 22%, #fff); color: var(--color-turquoise-2); }
.pill--gold { background: color-mix(in oklch, var(--color-gold) 22%, #fff); color: var(--color-gold-deep); }
.pill--ocean { background: color-mix(in oklch, var(--color-ocean) 12%, #fff); color: var(--color-ocean); }
.pill--free { background: transparent; border: 1.5px dashed var(--color-line-2); color: var(--color-text-muted); }
.pill--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ============================================================
   COMPONENTE · Header di sito  (.site-header)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--color-paper) 94%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; filter: brightness(0); }
.site-nav ul { display: flex; align-items: center; gap: clamp(16px, 3vw, 30px); }
.site-nav a { font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--color-ink-2); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--color-ocean); }
.header-actions { display: flex; align-items: center; gap: 14px; }

/* Variante header sopra immagine (hero trasparente) */
.site-header--over { position: absolute; left: 0; right: 0; background: transparent; border-bottom: none; backdrop-filter: none; }
.site-header--over .brand img { filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.35)); }
.site-header--over .site-nav a { color: rgba(255,255,255,.9); }
.site-header--over .site-nav a:hover, .site-header--over .site-nav a[aria-current="page"] { color: #fff; }

/* ============================================================
   COMPONENTE · Selettore lingua  (.lang-select) — no JS
   ============================================================ */
.lang-select { position: relative; display: inline-flex; align-items: center; }
.lang-select select {
  appearance: none; -webkit-appearance: none;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--color-ink-2); background: transparent;
  border: 1.5px solid var(--color-line-2); border-radius: var(--radius-pill);
  padding: 7px 30px 7px 14px; cursor: pointer;
}
.lang-select::after {
  content: ""; position: absolute; right: 13px; top: 50%; width: 7px; height: 7px;
  border-right: 1.5px solid var(--color-ink-3); border-bottom: 1.5px solid var(--color-ink-3);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.site-header--over .lang-select select { color: #fff; border-color: rgba(255,255,255,.5); }
.site-header--over .lang-select::after { border-color: rgba(255,255,255,.8); }

/* ============================================================
   COMPONENTE · Hero
   ============================================================ */
.hero { position: relative; display: flex; align-items: center; color: #fff; overflow: hidden; min-height: 88vh; }
.hero--end { align-items: flex-end; }
.hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--gradient-overlay); }
.hero__content { position: relative; z-index: 1; padding-block: clamp(90px, 14vh, 140px); }
.hero__content--center { text-align: center; width: 100%; }
.hero h1 { font-size: clamp(38px, 7vw, 78px); font-weight: 500; line-height: 1.04; margin-top: 16px; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero h1 em { font-style: italic; }
.hero__lede { margin-top: 20px; font-size: clamp(16px, 2vw, 21px); font-weight: 300; max-width: 32ch; color: rgba(255,255,255,.94); text-shadow: 0 1px 14px rgba(0,0,0,.3); }
.hero__content--center .hero__lede { margin-inline: auto; }
.hero__cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__content--center .hero__cta { justify-content: center; }
.hero__couple { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 20px; background-size: cover; background-position: center top; border: 3px solid rgba(255,255,255,.85); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.hero__resort { margin-top: 14px; font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.9); }

/* ============================================================
   COMPONENTE · Card lista nozze  (.lista-card)
   ============================================================ */
.lista-grid { display: grid; gap: clamp(20px, 3vw, 30px); grid-template-columns: 1fr; }
@media (min-width: 620px) { .lista-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .lista-grid { grid-template-columns: repeat(3, 1fr); } }

.lista-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}
.lista-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.lista-card__media { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.lista-card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px 22px 24px; }
.lista-card__names { font-size: 24px; }
.lista-card__dest { color: var(--color-turquoise-2); font-size: 13px; font-weight: 600; }
.lista-card__desc { color: var(--color-text-muted); font-size: 14.5px; }
.lista-card__foot { margin-top: auto; padding-top: 8px; }

/* ============================================================
   COMPONENTE · Card regalo / quota  (.gift-card)
   ============================================================ */
.gift-grid { display: grid; gap: clamp(18px, 2.6vw, 26px); grid-template-columns: 1fr; }
@media (min-width: 600px) { .gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .gift-grid { grid-template-columns: repeat(3, 1fr); } }

.gift-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: transform .26s ease, box-shadow .26s ease;
}
.gift-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gift-card__media { aspect-ratio: 3 / 2; background-size: cover; background-position: center; }
.gift-card__body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 20px; }
.gift-card__title { font-size: 20px; }
.gift-card__desc { color: var(--color-text-muted); font-size: 14px; flex: 1; }
.gift-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.gift-card__price { font-family: var(--font-heading); font-size: 24px; color: var(--color-ink); }
.gift-card--free { border-style: dashed; border-color: var(--color-line-2); }

/* ============================================================
   COMPONENTE · Form  (.field, .input, .textarea, .pay-option)
   ============================================================ */
.form-block + .form-block { margin-top: 28px; }
.field-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 9px; }
.input, .textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--color-ink);
  background: var(--color-paper); border: 1.5px solid var(--color-line-2);
  border-radius: var(--radius-sm); padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus, .textarea:focus { outline: none; border-color: var(--color-ocean); box-shadow: 0 0 0 3px var(--color-focus); }
.textarea { resize: vertical; min-height: 96px; line-height: 1.6; }

.pay-list { display: flex; flex-direction: column; gap: 12px; }
.pay-option { display: flex; align-items: center; gap: 13px; cursor: pointer; padding: 15px 17px; border: 1.5px solid var(--color-line-2); border-radius: var(--radius-sm); transition: border-color .2s ease, background .2s ease; }
.pay-option:hover { background: var(--color-sand-50); }
.pay-option input { accent-color: var(--color-ocean); width: 18px; height: 18px; flex: none; }
.pay-option:has(input:checked) { border-color: var(--color-ocean); background: color-mix(in oklch, var(--color-ocean) 6%, #fff); }
.pay-option .label { font-size: 15px; font-weight: 500; }
.pay-option .hint { font-size: 12.5px; color: var(--color-ink-3); }

/* Box bonifico condizionale — CSS puro con :has() */
.bank-box { margin-top: 14px; padding: 22px 24px; background: var(--color-sand-50); border: 1.5px dashed var(--color-line-2); border-radius: var(--radius-md); }
.bank-box h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-turquoise-2); margin-bottom: 12px; }
.bank-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px dashed var(--color-line); font-size: 14.5px; }
.bank-row:last-child { border-bottom: none; }
.bank-row .k { color: var(--color-text-muted); }
.bank-row .v { font-weight: 500; text-align: right; }
.pay-fieldset { border: none; margin: 0; padding: 0; }
/* mostra il box bonifico solo se la relativa radio è selezionata */
.pay-fieldset .bank-box { display: none; }
.pay-fieldset:has(#pay-bonifico:checked) .bank-box { display: block; }

/* ============================================================
   PAGINA · Dettaglio (hero + descrizione sollevata)
   ============================================================ */
.desc-card { margin-top: -70px; position: relative; z-index: 2; background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 64px); }
.desc-grid { display: grid; gap: clamp(22px, 4vw, 40px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .desc-grid { grid-template-columns: 1fr 1.4fr; align-items: start; } }
.desc-lead { font-family: var(--font-heading); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; font-style: italic; }
.desc-body { color: var(--color-text-muted); font-size: 16.5px; line-height: 1.75; }
.trip-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.gift-section + .gift-section { margin-top: 64px; }
.gift-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.gift-section__head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.gift-section__head .note { color: var(--color-ink-3); font-size: 14px; max-width: 42ch; }

/* ============================================================
   PAGINA · Regala (colonna singola)
   ============================================================ */
.form-col { max-width: 640px; margin-inline: auto; }
.crumb { font-size: 13px; color: var(--color-ink-3); margin-bottom: 22px; }
.crumb a { color: var(--color-ink-2); }
.gift-head { display: flex; gap: 20px; align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-sm); }
.gift-head__thumb { width: 110px; height: 84px; flex: none; border-radius: var(--radius-sm); background-size: cover; background-position: center; }
.gift-head h1 { font-size: 26px; }
.amount-box { display: flex; align-items: center; justify-content: space-between; background: color-mix(in oklch, var(--color-ocean) 6%, #fff); border: 1.5px solid color-mix(in oklch, var(--color-ocean) 30%, var(--color-line-2)); border-radius: var(--radius-md); padding: 20px 24px; }
.amount-box .lbl { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-muted); }
.amount-box .val { font-family: var(--font-heading); font-size: 40px; line-height: 1; color: var(--color-ocean-deep); }

/* ============================================================
   PAGINA · Grazie (conferma)
   ============================================================ */
.thanks-hero { position: relative; display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; min-height: 58vh; }
.thanks-hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.thanks-hero__media::after { content: ""; position: absolute; inset: 0; background: rgba(18,42,55,.6); }
.thanks-hero__content { position: relative; z-index: 1; padding: 40px 24px; max-width: 620px; }
.thanks-hero h1 { font-size: clamp(34px, 5.5vw, 58px); margin-top: 10px; text-shadow: 0 2px 22px rgba(0,0,0,.3); }
.thanks-hero p { margin-top: 16px; font-size: 18px; font-weight: 300; color: rgba(255,255,255,.94); }
.check-badge { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.check-badge svg { width: 40px; height: 40px; }
.receipt { max-width: 560px; margin: -54px auto 0; position: relative; z-index: 2; background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 32px clamp(24px, 5vw, 38px); }
.receipt-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--color-line); }
.receipt-row:last-child { border-bottom: none; }
.receipt-row .k { color: var(--color-text-muted); font-size: 14px; }
.receipt-row .v { font-weight: 600; text-align: right; }
.receipt-row .v.amount { font-family: var(--font-heading); font-weight: 500; font-size: 22px; color: var(--color-ocean-deep); }

/* ============================================================
   COMPONENTE · Footer di sito  (.site-footer)
   ============================================================ */
.site-footer { background: var(--color-ocean-deep); color: rgba(255,255,255,.8); padding: 56px 0 34px; }
.site-footer__grid { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; align-items: flex-start; }
.site-footer img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.site-footer h5 { font-family: var(--font-body); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; font-weight: 600; }
.site-footer a { display: block; font-size: 14px; color: rgba(255,255,255,.82); padding: 3px 0; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 32px; padding-top: 20px; font-size: 12px; color: rgba(255,255,255,.5); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.steps { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; padding-inline: 14px; }
.step__num { font-family: var(--font-heading); font-size: 40px; color: var(--color-turquoise-2); }
.step h3 { font-size: 22px; margin: 8px 0; }

/* ============================================================
   INTEGRAZIONE APP — aggiunte minime al design originale
   ============================================================ */

/* Box "contanti" condizionale (stesso pattern :has del bonifico) */
.pay-fieldset .cash-box { display: none; }
.pay-fieldset:has(#pay-contanti:checked) .cash-box { display: block; }
.cash-box { margin-top: 14px; padding: 22px 24px; background: var(--color-sand-50); border: 1.5px dashed var(--color-line-2); border-radius: var(--radius-md); }
.cash-box h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-turquoise-2); margin-bottom: 10px; }
.cash-box p { color: var(--color-text-muted); font-size: 14.5px; }

/* Box PayPal condizionale (placeholder finché non c'è il flusso reale) */
.pay-fieldset .paypal-box { display: none; }
.pay-fieldset:has(#pay-paypal:checked) .paypal-box { display: block; }
.paypal-box { margin-top: 14px; padding: 18px 22px; background: color-mix(in oklch, var(--color-ocean) 6%, #fff); border: 1.5px solid color-mix(in oklch, var(--color-ocean) 24%, var(--color-line-2)); border-radius: var(--radius-md); color: var(--color-text-muted); font-size: 14px; }

/* Fallback immagini mancanti: gradiente elegante al posto del vuoto */
.hero__media, .thanks-hero__media { background-color: var(--color-ocean-deep); background-image: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-turquoise-2) 100%); }
.lista-card__media, .gift-card__media, .gift-head__thumb, .hero__couple {
  background-color: var(--color-sand-100);
}
.lista-card__media--noimg, .gift-card__media--noimg {
  background-image: linear-gradient(135deg, color-mix(in oklch, var(--color-ocean) 30%, #fff) 0%, color-mix(in oklch, var(--color-turquoise-2) 34%, #fff) 100%);
  display: grid; place-items: center;
}
.lista-card__media--noimg::after, .gift-card__media--noimg::after {
  content: "♥"; font-size: 34px; color: rgba(255,255,255,.75);
}

/* Alert riuso (errori form) coerente col tema */
.alert { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14.5px; }
.alert-error { background: #fdecea; color: #7a1f12; border: 1px solid #f5c6c0; }
.alert-info { background: var(--color-sand-50); border: 1px solid var(--color-line); }

/* Header non-over: garantisce contrasto del brand su sfondo chiaro */
.site-header:not(.site-header--over) .brand span { color: var(--color-ink); font-family: var(--font-heading); font-size: 22px; }
.site-header--over .brand span { color: #fff; font-family: var(--font-heading); font-size: 22px; text-shadow: 0 1px 6px rgba(0,0,0,.35); }

/* Larghezza contenuto pagine standard (login, errori) */
.narrow { max-width: 560px; margin-inline: auto; }

/* ============================================================
   AREA ADMIN — navigazione, tabelle, form (riusa i token :root)
   ============================================================ */
.admin-shell { padding-block: 32px; }
.admin-head { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:22px; }
.admin-head h1 { font-size: clamp(24px,3vw,34px); }

.admin-nav { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; border-bottom:1px solid var(--color-line); padding-bottom:12px; }
.admin-nav a { font-size:13px; font-weight:600; letter-spacing:.03em; color:var(--color-ink-2); padding:8px 14px; border-radius:var(--radius-pill); }
.admin-nav a:hover { background:var(--color-sand-100); color:var(--color-ocean); }
.admin-nav a[aria-current="page"] { background:var(--color-ocean); color:#fff; }

.admin-card { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-md); box-shadow:var(--shadow-sm); padding:22px 24px; margin-bottom:20px; }
.admin-card h2 { font-size:20px; margin-bottom:14px; }

.table { width:100%; border-collapse:collapse; font-size:14px; }
.table th, .table td { text-align:left; padding:11px 12px; border-bottom:1px solid var(--color-line); vertical-align:middle; }
.table th { font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-ink-3); font-weight:600; }
.table tr:last-child td { border-bottom:none; }
.table .actions { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.table-wrap { overflow-x:auto; }

.form-grid { display:grid; gap:18px 22px; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.form-grid .full { grid-column:1 / -1; }

/* Tab traduzioni per lingua */
.lang-tabs { display:flex; gap:6px; margin-bottom:12px; }
.lang-tab { font-size:12px; font-weight:600; padding:6px 12px; border-radius:var(--radius-pill); border:1.5px solid var(--color-line-2); background:transparent; color:var(--color-ink-2); cursor:pointer; }
.lang-tab.is-active { background:var(--color-ocean); color:#fff; border-color:var(--color-ocean); }
.lang-panel { display:none; }
.lang-panel.is-active { display:block; }

.hint-sm { font-size:12.5px; color:var(--color-ink-3); margin-top:4px; }
.thumb-sm { width:56px; height:42px; object-fit:cover; border-radius:var(--radius-sm); background:var(--color-sand-100); }
.inline-form { display:inline; }

.stat-row { display:grid; gap:16px; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); margin-bottom:24px; }
.stat { background:var(--color-surface); border:1px solid var(--color-border); border-radius:var(--radius-md); padding:18px 20px; box-shadow:var(--shadow-sm); }
.stat .n { font-family:var(--font-heading); font-size:30px; color:var(--color-ocean-deep); line-height:1; }
.stat .l { font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--color-ink-3); margin-top:6px; }

.swatch { display:inline-block; width:18px; height:18px; border-radius:5px; border:1px solid var(--color-line-2); vertical-align:middle; margin-right:6px; }
input[type=color].input { padding:4px; height:44px; }
