/*
Theme Name: Intollerante
Theme URI: https://socialee.it
Author: Socialee
Author URI: https://socialee.it
Description: Tema su misura per L'Intollerante — Altro che cucina. Impianto grafico da manifesto teatrale: nero, rosso, cornici a doppio filo. Progettato per lavorare insieme al plugin Ristorante Suite (prenotazioni e menu).
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: intollerante
Tags: restaurant, one-column, custom-menu, translation-ready
*/

/* =================================================================
   1. TOKEN
   ================================================================= */

:root {
    color-scheme: dark;

    --nero:      #0b0b0b;
    --nero-2:    #151515;
    --rosso:     #c8102e;
    --panna:     #f4f1ec;
    --grigio:    #8b8b8b;
    --linea:     rgba(244, 241, 236, .22);

    --display:   'Anton', 'Arial Narrow', Impact, sans-serif;
    --label:     'Barlow Condensed', 'Arial Narrow', sans-serif;
    --testo:     'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --gutter:    clamp(20px, 5vw, 64px);
    --max:       1160px;
}

/* Il plugin eredita la palette del tema.
   La specificità con body serve perché il CSS del plugin viene stampato dopo quello del tema. */
body .rsuite-form-wrap,
body .rsuite-menu {
    --rs-ink: var(--nero);
    --rs-paper: var(--panna);
    --rs-accent: var(--rosso);
    --rs-muted: var(--grigio);
    --rs-line: var(--linea);
}

/* =================================================================
   2. RESET E BASE
   ================================================================= */

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

html { scroll-behavior: smooth; }

html {
    background: #0b0b0b;
}

body {
    margin: 0;
    background: var(--nero, #0b0b0b);
    color: var(--panna, #f4f1ec);
    font-family: var(--testo);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Ogni contenitore principale porta con sé il proprio fondo:
   se un plugin o un blocco sovrascrive body, il sito non diventa bianco. */
main,
.hero,
.sezione,
.contenuto,
.page-hero,
.site-footer {
    background: var(--nero, #0b0b0b);
}

img { max-width: 100%; height: auto; }

a { color: var(--panna); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rosso); }

:focus-visible {
    outline: 2px solid var(--rosso);
    outline-offset: 3px;
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 400;
    line-height: .95;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0 0 .4em;
}

h1 { font-size: clamp(42px, 9vw, 104px); }
h2 { font-size: clamp(30px, 6vw, 62px); }
h3 { font-size: clamp(20px, 3vw, 28px); }

p { margin: 0 0 1.1em; }

.wrap {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.eyebrow {
    font-family: var(--label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--rosso);
    margin: 0 0 14px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.skip-link:focus {
    position: fixed;
    top: 10px; left: 10px;
    z-index: 999;
    background: var(--rosso);
    color: #fff;
    padding: 10px 16px;
    width: auto; height: auto;
    clip: auto;
}

/* =================================================================
   3. FIRMA VISIVA — cornice a doppio filo del manifesto
   ================================================================= */

.cornice {
    position: relative;
    border: 1px solid var(--linea);
    padding: clamp(24px, 5vw, 56px);
}

.cornice::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--linea);
    pointer-events: none;
}

.cornice-rossa { border-color: var(--rosso); }
.cornice-rossa::before { border-color: rgba(200, 16, 46, .45); }

/* =================================================================
   4. HEADER
   ================================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 11, 11, .94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--linea);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 74px;
}

.site-logo {
    font-family: var(--display);
    font-size: 25px;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
}

.site-logo { display: block; }

.logo-img {
    display: block;
    height: 48px;
    width: auto;
}

.custom-logo { max-height: 52px; width: auto; }

.site-logo span { color: var(--rosso); }
.site-logo small {
    display: block;
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--grigio);
    margin-top: 3px;
}

.site-logo img { max-height: 46px; width: auto; }

.nav-primary ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-primary a {
    font-family: var(--label);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-primary .current-menu-item > a { color: var(--rosso); }

.btn {
    display: inline-block;
    font-family: var(--label);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 26px;
    border: 1px solid var(--rosso);
    background: var(--rosso);
    color: #fff;
    transition: background .18s ease, color .18s ease;
}

.btn:hover { background: transparent; color: var(--rosso); }

.btn-ghost { background: transparent; color: var(--panna); border-color: var(--linea); }
.btn-ghost:hover { border-color: var(--panna); color: var(--panna); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--linea);
    color: var(--panna);
    font-family: var(--label);
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 10px 14px;
    cursor: pointer;
}

/* =================================================================
   5. HERO
   ================================================================= */

.hero {
    position: relative;
    padding: clamp(70px, 12vw, 150px) 0 clamp(50px, 8vw, 100px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .28;
    filter: grayscale(1) contrast(1.15);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,11,.55) 0%, rgba(11,11,11,.92) 78%, var(--nero) 100%);
}

.hero .wrap { position: relative; z-index: 2; }

.hero-logo {
    display: block;
    width: min(620px, 82%);
    height: auto;
    margin: 0 0 clamp(28px, 5vw, 46px);
}

/* con il logo in cima il titolo non deve rubargli la scena */
.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 7.4vw, 82px);
}
.hero h1 .riga { display: block; overflow: hidden; }
.hero h1 .riga > span { display: block; }

.hero-rosso { color: var(--rosso); }

.hero-payoff {
    max-width: 46ch;
    font-size: clamp(17px, 2.2vw, 21px);
    color: #d8d4cd;
}

.hero-azioni {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid var(--linea);
    font-family: var(--label);
    font-size: 15px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grigio);
}

.hero-info strong { color: var(--panna); font-weight: 600; }

/* Rivelazione a sipario */
@media (prefers-reduced-motion: no-preference) {
    .hero h1 .riga > span {
        transform: translateY(102%);
        animation: sipario .85s cubic-bezier(.16, 1, .3, 1) forwards;
    }
    .hero h1 .riga:nth-child(2) > span { animation-delay: .12s; }
    .hero h1 .riga:nth-child(3) > span { animation-delay: .24s; }

    @keyframes sipario { to { transform: translateY(0); } }

    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.is-in { opacity: 1; transform: none; }
}

/* =================================================================
   6. SEZIONI
   ================================================================= */

.sezione { padding: clamp(60px, 9vw, 110px) 0; }
.sezione-bordo { border-top: 1px solid var(--linea); }
.sezione-scura { background: var(--nero-2, #151515); }

.sezione-head { max-width: 62ch; margin-bottom: 42px; }
.sezione-head.centro { margin-left: auto; margin-right: auto; text-align: center; }

.due-colonne {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}

.card-griglia {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid var(--linea);
    padding: 30px 26px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
.card p { margin: 0; color: #cbc7c0; font-size: 16px; }

.card-numero {
    font-family: var(--display);
    font-size: 15px;
    color: var(--rosso);
    letter-spacing: .2em;
    display: block;
    margin-bottom: 14px;
}

/* Card cliccabile */

.card-link { text-decoration: none; display: block; transition: border-color .18s ease, transform .18s ease; }
.card-link:hover { border-color: var(--rosso); transform: translateY(-2px); }
.card-link:hover h3 { color: var(--rosso); }
.card-link h3 { transition: color .18s ease; }

/* Elenco passi della prenotazione */

.passi {
    counter-reset: passo;
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.passi li {
    counter-increment: passo;
    position: relative;
    padding-left: 44px;
    margin-bottom: 14px;
    color: #cbc7c0;
}

.passi li::before {
    content: counter(passo, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--display);
    font-size: 15px;
    color: var(--rosso);
    letter-spacing: .1em;
}

/* Fascia allergeni: il cuore del posizionamento del locale */
.fascia-allergeni {
    background: var(--rosso);
    color: #fff;
    padding: clamp(40px, 6vw, 66px) 0;
}

.fascia-allergeni h2 { margin-bottom: 14px; }
.fascia-allergeni p { max-width: 58ch; font-size: 18px; }
.fascia-allergeni .eyebrow { color: rgba(255, 255, 255, .78); }
.fascia-allergeni p a { color: #fff; }

.fascia-griglia {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: clamp(30px, 6vw, 64px);
    align-items: center;
}

.fascia-allergeni .btn-chiaro,
.btn-chiaro {
    background: #fff;
    border-color: #fff;
    color: var(--rosso);
}

.fascia-allergeni .btn-chiaro:hover,
.btn-chiaro:hover { background: transparent; color: #fff; }

.lista-promesse {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .35);
}

.lista-promesse li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    font-family: var(--label);
    font-size: 17px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.lista-promesse strong { font-weight: 700; }

/* =================================================================
   7. PAGINE INTERNE
   ================================================================= */

.page-hero {
    padding: clamp(60px, 9vw, 120px) 0 clamp(30px, 5vw, 56px);
    border-bottom: 1px solid var(--linea);
    text-align: center;
}

.page-hero p { max-width: 56ch; margin: 12px auto 0; color: #cbc7c0; }

.contenuto { padding: clamp(50px, 8vw, 90px) 0; }

.contenuto-testo { max-width: 68ch; margin: 0 auto; }
.contenuto-testo h2, .contenuto-testo h3 { margin-top: 1.6em; }
.contenuto-testo ul, .contenuto-testo ol { padding-left: 1.3em; }
.contenuto-testo blockquote {
    border-left: 3px solid var(--rosso);
    margin: 1.6em 0;
    padding-left: 22px;
    font-size: 20px;
}

/* Nota celiachia sopra il menu */

.nota-celiachia {
    border: 1px solid var(--rosso);
    border-left-width: 4px;
    padding: 24px 28px;
    margin: 0 auto 40px;
    max-width: 880px;
}

.nota-celiachia p:last-child { margin-bottom: 0; color: #d8d4cd; }

/* Navigazione categorie del menu */
.menu-nav {
    position: sticky;
    top: 74px;
    z-index: 40;
    background: rgba(11, 11, 11, .96);
    border-bottom: 1px solid var(--linea);
    padding: 12px 0;
}

.menu-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-nav ul::-webkit-scrollbar { display: none; }

.menu-nav a {
    font-family: var(--label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

/* =================================================================
   8. FOOTER
   ================================================================= */

.site-footer {
    border-top: 1px solid var(--linea);
    padding: clamp(50px, 7vw, 80px) 0 30px;
    font-size: 15px;
}

.footer-griglia {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-griglia h3 {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: .28em;
    color: var(--rosso);
    margin-bottom: 14px;
}

.footer-griglia p, .footer-griglia li { color: #bdb9b2; }
.footer-griglia ul { list-style: none; margin: 0; padding: 0; }
.footer-griglia li { margin-bottom: 8px; }

.footer-bottom {
    margin-top: 46px;
    padding-top: 20px;
    border-top: 1px solid var(--linea);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grigio);
}

.footer-bottom a { text-decoration: none; }

/* =================================================================
   9. RESPONSIVE
   ================================================================= */

@media (max-width: 900px) {
    .due-colonne, .fascia-griglia { grid-template-columns: 1fr; }
    .footer-griglia { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
    .nav-toggle { display: block; }

    .nav-primary {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nero);
        border-bottom: 1px solid var(--linea);
        padding: 20px var(--gutter) 26px;
    }

    .nav-primary.is-open { display: block; }

    .nav-primary ul { flex-direction: column; align-items: flex-start; gap: 18px; }

    .header-cta { display: none; }
    .logo-img { height: 38px; }

    .menu-nav { top: 74px; }
    /* Su schermi piccoli la nav categorie torna scroller orizzontale */
    .menu-nav ul { flex-wrap: nowrap; justify-content: flex-start; }
}

@media (max-width: 560px) {
    .footer-griglia { grid-template-columns: 1fr; }
    .hero-azioni .btn { width: 100%; text-align: center; }
}

@media print {
    .site-header, .site-footer, .menu-nav, .hero-azioni { display: none; }
    body { background: #fff; color: #000; }
    .rsuite-menu { --rs-paper: #000; --rs-line: #ccc; --rs-muted: #555; }
}

/* ------------------------------------------------------------------ */
/* Font "logo" (Cinzel) su titoli, sottotitoli, eyebrow, categorie e   */
/* nomi piatto. Cinzel è un serif lapidario in famiglia col marchio.   */
/* ------------------------------------------------------------------ */
:root { --logo: 'Cinzel', 'Times New Roman', serif; }

/* Titoli + nomi piatto (i piatti sono h3 dentro .rsuite-piatto-top) */
h1, h2, h3,
.rsuite-cat-nome,
.rsuite-livello-2 .rsuite-cat-nome,
.rsuite-piatto-top h3 {
    font-family: var(--logo) !important;
    font-weight: 700;
}
h1 { font-weight: 900; }

/* Eyebrow (etichette sopra i titoli) */
.eyebrow,
.rsuite-payoff {
    font-family: var(--logo) !important;
    font-weight: 700;
}

/* Sottotitoli sotto i titoli */
.hero-payoff,
.page-hero p {
    font-family: var(--logo) !important;
    font-weight: 600;
}

/* Bottoni (CTA sito + invio/WhatsApp del form prenotazione) */
.btn,
.rsuite-submit,
.rsuite-wa {
    font-family: var(--logo) !important;
    font-weight: 700;
    letter-spacing: .08em;
}

/* ------------------------------------------------------------------ */
/* Presentazione "Rompiamo il ghiaccio" come pulsante a tendina        */
/* ------------------------------------------------------------------ */
.contenuto--presentazione { padding-top: clamp(22px, 3vw, 34px); padding-bottom: 0; }
.rsuite-presentazione {
    padding: 0;
    margin: 0;
    border: 0;
}
.rsuite-presentazione-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    margin-bottom: 26px;
    cursor: pointer;
    list-style: none;
    border: 1px solid var(--rosso);
    border-radius: 2px;
    background: rgba(200, 16, 46, .08);
    transition: background .2s ease;
    animation: rsuite-pres-pulse 2.2s ease-in-out 3;
}
.rsuite-presentazione-toggle::-webkit-details-marker { display: none; }
.rsuite-presentazione-toggle:hover { background: rgba(200, 16, 46, .18); }
.rsuite-presentazione[open] .rsuite-presentazione-toggle { animation: none; margin-bottom: 16px; }

.rsuite-presentazione-titolo {
    font-family: var(--logo);
    font-weight: 700;
    font-size: clamp(20px, 3.4vw, 30px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.rsuite-presentazione-hint {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rosso);
}
.rsuite-presentazione[open] .rsuite-presentazione-hint { display: none; }

.rsuite-presentazione .rsuite-segno { margin-left: auto; flex: 0 0 auto; }
.rsuite-presentazione[open] .rsuite-segno::after { transform: scaleY(0); opacity: 0; }

.rsuite-presentazione-corpo { animation: rsuite-pres-reveal .32s ease; }
.rsuite-presentazione-corpo p { margin: 0 0 10px; color: #d8d4cd; font-style: italic; }
.rsuite-presentazione-corpo p:last-child { margin-bottom: 0; }

@keyframes rsuite-pres-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, .5); }
    50%      { box-shadow: 0 0 0 9px rgba(200, 16, 46, 0); }
}
@keyframes rsuite-pres-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .rsuite-presentazione-toggle,
    .rsuite-presentazione-corpo { animation: none; }
}

/* ------------------------------------------------------------------ */
/* Hero: pulsantone storia + sezione prenota (telefono + mappa)        */
/* ------------------------------------------------------------------ */
.rsuite-presentazione--hero { max-width: none; margin: 6px 0 4px; text-align: center; }
.rsuite-presentazione--hero .rsuite-presentazione-toggle {
    justify-content: center;
    text-align: center;
    padding: 22px 28px;
    background: rgba(200, 16, 46, .12);
}
.rsuite-presentazione--hero .rsuite-presentazione-titolo { font-size: clamp(26px, 5vw, 44px); }
.rsuite-presentazione--hero .rsuite-segno { margin-left: 14px; }
.rsuite-presentazione--hero .rsuite-presentazione-corpo {
    max-width: none;
    margin: 16px 0 0;
    text-align: left;
}
.rsuite-presentazione--hero .rsuite-presentazione-corpo p { color: #d8d4cd; line-height: 1.7; }

.prenota-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.prenota-tel-icona {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--rosso);
    color: #fff;
    margin-bottom: 6px;
}
.prenota-tel-numero {
    font-family: var(--logo);
    font-weight: 700;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1;
    letter-spacing: .01em;
    color: var(--panna);
    text-decoration: none;
}
.prenota-tel-numero:hover { color: var(--rosso); }
.prenota-tel-nota { color: #cbc7c0; margin: 4px 0 0; }

.prenota-mappa { padding: 0; overflow: hidden; }
.prenota-mappa-frame {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    display: block;
    filter: grayscale(.15);
}
@media (max-width: 780px) {
    .prenota-mappa-frame { min-height: 260px; }
}

/* ------------------------------------------------------------------ */
/* Icone allergeni/stato, simboli sotto il piatto, legenda a fondo menu */
/* ------------------------------------------------------------------ */
.rsuite-ico { width: 1em; height: 1em; display: block; }

/* Simboli sotto il piatto: allergeni (chiari) + conservazione (rossi) */
.rsuite-simboli { margin: 8px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.rsuite-sim { display: inline-flex; font-size: 20px; line-height: 1; }
.rsuite-sim-allerg { color: #cbc7c0; }
.rsuite-sim-stato { color: var(--rosso); }

.rsuite-legenda {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--rs-line, rgba(244, 241, 236, .22));
    text-align: left;
}
.rsuite-legenda-titolo { font-family: var(--logo); font-size: clamp(20px, 3vw, 26px); margin: 0 0 16px; }
.rsuite-legenda-sub {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rosso);
    margin: 26px 0 14px;
}
.rsuite-legenda-stati { display: grid; gap: 12px; max-width: 780px; }
.rsuite-legenda-voce { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #cbc7c0; line-height: 1.55; }
.rsuite-legenda-ico { flex: 0 0 auto; font-size: 24px; line-height: 1; color: var(--rosso); }
.rsuite-legenda-voce .rsuite-legenda-ico { margin-top: 1px; }

.rsuite-legenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px 18px;
}
.rsuite-legenda-all { display: flex; align-items: center; gap: 10px; }
.rsuite-legenda-all .rsuite-legenda-ico { font-size: 30px; }
.rsuite-legenda-nome { font-family: var(--label); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: #cbc7c0; }

.rsuite-filtri--apri { justify-content: flex-start; }

/* Avviso allergie in fondo al menu: più grande e leggibile */
.rsuite-menu-foot .rsuite-legale {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 60ch;
    opacity: 1;
    color: var(--rs-paper, #f4f1ec);
    margin-top: 14px;
}

/* Tenore alcolico: etichetta + pallini (cocktail) */
.rsuite-tenore { margin: 8px 0 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rsuite-tenore-lbl { font-family: var(--label); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--rs-muted, #8b8b8b); }
.rsuite-tenore .rsuite-intensita { margin: 0; }

/* Avviso allergie in cima al menu */
.rsuite-avviso-allergeni {
    margin: 0 0 24px;
    padding: 14px 18px;
    text-align: center;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--rs-paper, #f4f1ec);
    border: 1px solid var(--rs-accent, #c8102e);
    border-radius: 2px;
    background: rgba(200, 16, 46, .08);
}
