
:root {
--font-h: 'Outfit', sans-serif;
--font-b: 'DM Sans', sans-serif;
--primary: #e67e22; --primary-dark: #d35400;
--secondary: #1b2838;
--text: #1a1a1a; --text-sec: #666; --bg: #f8f7f4; --card: #fff; --border: #eaeaea;
--radius: 16px; --radius-sm: 12px; --radius-xs: 8px;
--shadow: 0 2px 16px rgba(0,0,0,.05);
--shadow-hover: 0 10px 32px rgba(0,0,0,.1);
--shadow-card: 0 1px 3px rgba(0,0,0,.04), 0 4px 14px rgba(0,0,0,.05);
--ease: cubic-bezier(.4,0,.2,1);
--ease-bounce: cubic-bezier(.34,1.56,.64,1);
--badge-new: #10b981;
--badge-discount: #ef4444;
--badge-featured: #f59e0b;
}
html.dark {
--text: #eee; --text-sec: #999; --bg: #0d0d0d;
--card: #1a1a1a; --border: #2a2a2a;
--shadow: 0 2px 16px rgba(0,0,0,.3);
--shadow-hover: 0 10px 32px rgba(0,0,0,.5);
--shadow-card: 0 1px 3px rgba(0,0,0,.2), 0 4px 14px rgba(0,0,0,.3);
color-scheme: dark;
}
html.theme-transitioning, html.theme-transitioning * {
transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease) !important;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-b);font-size:15px;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased;min-height:100dvh}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:680px;margin:0 auto;padding:0 16px}
h1,h2,h3{font-family:var(--font-h)}
.site-header{position:sticky;top:0;z-index:100;background:var(--bg);border-bottom:1px solid var(--border);padding:8px 0;backdrop-filter:blur(16px) saturate(180%);-webkit-backdrop-filter:blur(16px) saturate(180%)}
html.dark .site-header{background:rgba(13,13,13,.92)}
.site-header .container{display:flex;justify-content:center;align-items:center}
.site-header__logo-text{display:none}
.site-header__logo-img{display:none}
.header-controls{display:flex;align-items:center;gap:8px}
.lang-switcher{display:flex;gap:3px}
.lang-btn{padding:5px 10px;border-radius:20px;font-size:.72rem;font-weight:700;color:var(--text-sec);border:1px solid var(--border);transition:all .2s var(--ease);letter-spacing:.02em;min-height:34px;display:inline-flex;align-items:center;justify-content:center}
.lang-btn.active{background:var(--primary);color:#fff;border-color:var(--primary)}
.lang-btn:hover:not(.active){background:var(--border)}
.dark-toggle{width:34px;height:34px;border:1px solid var(--border);border-radius:50%;background:var(--card);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;position:relative;overflow:hidden}
.dark-toggle:hover{border-color:var(--primary)}
.dark-toggle__icon{position:absolute;transition:opacity .25s,transform .25s;font-size:.9rem}
.dark-toggle__sun{opacity:1;transform:scale(1)}
.dark-toggle__moon{opacity:0;transform:scale(.7)}
html.dark .dark-toggle__sun{opacity:0;transform:scale(.7)}
html.dark .dark-toggle__moon{opacity:1;transform:scale(1)}
.hero{height:220px;background-size:cover;background-position:center;border-radius:var(--radius);overflow:hidden;margin-bottom:20px;position:relative}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.58) 0%,rgba(0,0,0,.18) 45%,rgba(0,0,0,.04) 70%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px}
.hero-overlay h1{font-size:1.6rem;font-weight:800;color:#fff;letter-spacing:-.02em;text-shadow:0 2px 12px rgba(0,0,0,.3)}
.hero-overlay p{font-size:.85rem;color:rgba(255,255,255,.85);margin-top:4px}
.hero-text{padding:24px 0 8px;text-align:center}
.hero-text h1{font-size:1.5rem;font-weight:800;color:var(--text);letter-spacing:-.02em}
.hero-text__logo{height:52px;width:auto;margin:0 auto 10px;display:block}
.table-order-bar{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:16px;flex-wrap:wrap}
.btn-table-order{font-size:.85rem;font-weight:700;padding:10px 22px;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:all .2s var(--ease);display:inline-flex;align-items:center;gap:6px}
.btn-table-order svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.btn-beach-order{font-size:.85rem;font-weight:700;padding:10px 22px;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:all .2s var(--ease);display:inline-flex;align-items:center;gap:6px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;box-shadow:0 2px 8px rgba(245,158,11,.25)}
.btn-beach-order:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(245,158,11,.35)}
.table-badge{display:inline-flex;align-items:center;padding:6px 14px;background:var(--card);border:1px solid var(--primary);border-radius:20px;font-size:.85rem;font-weight:600;color:var(--primary);cursor:pointer;transition:all .2s}
.table-badge:hover{background:var(--primary);color:#fff}
.promo-banner{display:flex;align-items:center;gap:0;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-card);margin-bottom:12px;transition:all .25s var(--ease)}
.promo-banner:hover{box-shadow:var(--shadow-hover)}
.promo-banner__img{width:70px;height:70px;object-fit:cover;flex-shrink:0}
.promo-banner__body{padding:12px 16px;flex:1;display:flex;align-items:center;justify-content:space-between;gap:8px}
.promo-banner__body strong{font-family:var(--font-h);font-size:.9rem;font-weight:700}
.badge-promo{background:var(--badge-discount);color:#fff;padding:3px 10px;border-radius:20px;font-size:.72rem;font-weight:700;white-space:nowrap;flex-shrink:0}
.categories-grid{display:flex;flex-direction:column;gap:12px;margin-bottom:28px}
.category-card{position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:16/7;display:flex;align-items:flex-end;background:var(--card);box-shadow:var(--shadow-card);transition:transform .3s var(--ease),box-shadow .3s var(--ease);cursor:pointer}
.category-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
.category-card:active{transform:scale(.97)}
.category-card--with-image{background:#222}
.category-card--with-image .category-card__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .45s var(--ease)}
.category-card:hover .category-card__img{transform:scale(1.06)}
.category-card--with-image .category-card__body{position:relative;z-index:2;width:100%;padding:16px 18px;background:linear-gradient(to top,rgba(0,0,0,.6) 0%,rgba(0,0,0,.22) 40%,rgba(0,0,0,.04) 70%,transparent 100%)}
.category-card--text-only{padding:20px;background:var(--card);border:1px solid var(--border);justify-content:center;align-items:center;text-align:center}
.category-card--text-only .category-card__body{width:100%}
.category-card__title{font-size:1.15rem;font-weight:700;line-height:1.25}
.category-card--with-image .category-card__title{color:#fff;text-shadow:0 1px 8px rgba(0,0,0,.3)}
.category-card--text-only .category-card__title{color:var(--text)}
.category-card__icon{display:inline-block;margin-right:.35em;font-size:1.05em;line-height:1;vertical-align:-.05em}
.category-card__desc{font-size:.82rem;line-height:1.35;margin-top:4px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.category-card--with-image .category-card__desc{color:rgba(255,255,255,.78)}
.category-card--text-only .category-card__desc{color:var(--text-sec)}
.category-card__count{position:absolute;top:8px;right:8px;background:rgba(0,0,0,.4);backdrop-filter:blur(8px);color:#fff;font-size:.65rem;font-weight:700;padding:3px 8px;border-radius:20px;z-index:3}
.breadcrumbs{padding:10px 0 6px}
.breadcrumbs ol{list-style:none;display:flex;flex-wrap:wrap;align-items:center;gap:0;font-size:.8rem;line-height:1.4}
.breadcrumbs li{display:flex;align-items:center}
.breadcrumbs li:not(:last-child)::after{content:'›';margin:0 8px;color:var(--text-sec);font-weight:300}
.breadcrumbs a{color:var(--primary);font-weight:500;transition:opacity .2s}
.breadcrumbs a:hover{opacity:.7}
.breadcrumb-current{color:var(--text-sec);font-weight:400}
.category-page-header{margin-bottom:16px}
.category-page-header h1{font-size:1.45rem;font-weight:800;letter-spacing:-.02em}
.category-desc{color:var(--text-sec);font-size:.88rem;margin-top:4px;line-height:1.5}
.products-list{display:flex;flex-direction:column;gap:12px;margin-top:16px;padding-bottom:24px}
.product-card{position:relative;background:var(--card);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-card);transition:all .3s var(--ease)}
.product-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.product-card--with-image{display:flex;flex-direction:column}
.product-card--text-only{padding:16px 18px}
.product-card__image{width:100%;height:160px;flex-shrink:0;overflow:hidden;position:relative}
.product-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.product-card:hover .product-card__image img{transform:scale(1.05)}
.product-card__image-overlay{position:absolute;inset:0;background:rgba(0,0,0,.35);z-index:1}
.product-card--unavailable{opacity:.5;pointer-events:none}
.product-card__body{padding:14px 16px;flex:1;min-width:0;display:flex;flex-direction:column;position:relative}
.product-card__header{display:flex;justify-content:space-between;align-items:flex-start;gap:8px}
.product-card__name{font-size:1rem;font-weight:700;line-height:1.3;color:var(--text)}
.product-card__name a{color:inherit}
.product-card__price{flex-shrink:0;text-align:right}
.product-card__description{font-size:.85rem;color:var(--text-sec);margin-top:5px;line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card__allergens{display:flex;flex-wrap:wrap;gap:4px;margin-top:8px}
.allergen-badge{display:inline-flex;align-items:center;padding:2px 7px;background:rgba(0,0,0,.05);border-radius:var(--radius-xs);font-size:.7rem;font-weight:600;color:var(--text-sec)}
html.dark .allergen-badge{background:rgba(255,255,255,.08)}
.product-card__cta{display:none;margin-top:10px}
.product-card__cta .btn{width:100%;font-size:.88rem;padding:10px 16px;border-radius:var(--radius-sm)}
@media(min-width:481px){
.product-card--with-image{flex-direction:row}
.product-card__image{width:130px;height:auto;min-height:130px}
.product-card__name{font-size:.95rem}
.product-card__description{font-size:.82rem}
}
.orders-active .product-card__cta{display:block}
.product-badges{position:absolute;top:8px;left:8px;display:flex;flex-direction:column;gap:4px;z-index:3}
.badge-pill{display:inline-flex;align-items:center;padding:3px 9px;border-radius:20px;font-size:.7rem;font-weight:700;letter-spacing:.02em;color:#fff;line-height:1.3}
.badge-pill--new{background:var(--badge-new)}
.badge-pill--discount{background:var(--badge-discount)}
.badge-pill--featured{background:var(--badge-featured)}
.badge-pill--unavailable{background:rgba(0,0,0,.6)}
/* ═══ v45.36.21 — Piatto consigliato: trattamento premium ═══
   La 20 usava --badge-featured (#f59e0b, ambra fissa in questo file) e border-color
   sulla card. Due errori:
     1. il tema attivo è `luxury` (--primary #8B6914, oro scuro): l'ambra ci litigava;
     2. il tema fa `.product-card{border:none}` e viene caricato DOPO public.css →
        a parità di specificità il bordo spariva e restava solo un anello da 1px.
   Ora tutto deriva da var(--primary): oro qui, arancio sul tema default, coerente
   con qualunque palette. E il selettore è a doppia classe → batte .product-card per
   specificità, non per ordine di caricamento. */
.badge-pill--featured{
background:var(--primary);
color:#fff;
font-family:var(--font-heading,var(--font-h));
text-transform:uppercase;
letter-spacing:.12em;
font-size:.58rem;
font-weight:600;
padding:5px 12px 5px 10px;
border:none;
box-shadow:0 3px 12px rgba(0,0,0,.2)
}
.badge-pill--featured::before{content:"\2726";margin-right:.45em;font-size:.72rem;opacity:.95}
.badge-pill--new{
background:var(--badge-new);
font-family:var(--font-heading,var(--font-h));
text-transform:uppercase;
letter-spacing:.12em;
font-size:.58rem;
font-weight:600;
padding:5px 11px;
box-shadow:0 3px 12px rgba(0,0,0,.16)
}
/* Sfumature solo dove color-mix() è supportato: senza, restano i fondi pieni qui
   sopra — nessun degrado, solo meno profondità. */
@supports (background:color-mix(in srgb,red 50%,white)){
.badge-pill--featured{background:linear-gradient(135deg,color-mix(in srgb,var(--primary) 55%,#fff) 0%,var(--primary) 52%,color-mix(in srgb,var(--primary) 72%,#000) 100%)}
.badge-pill--new{background:linear-gradient(135deg,color-mix(in srgb,var(--badge-new) 72%,#fff) 0%,var(--badge-new) 55%,color-mix(in srgb,var(--badge-new) 78%,#000) 100%)}
}
/* Cornice sfumata: border trasparente + doppio background (padding-box per il fondo,
   border-box per la sfumatura). Il fondo usa var(--card) → identico in dark mode. */
.product-card.product-card--highlight{
border:1.5px solid var(--primary);
box-shadow:0 8px 26px rgba(0,0,0,.1)
}
@supports (background:color-mix(in srgb,red 50%,white)){
.product-card.product-card--highlight{
border-color:transparent;
background:linear-gradient(var(--card),var(--card)) padding-box,linear-gradient(135deg,color-mix(in srgb,var(--primary) 42%,#fff) 0%,var(--primary) 50%,color-mix(in srgb,var(--primary) 42%,#fff) 100%) border-box
}
}
/* L'alone respira, non lampeggia: 4.5s, ampiezza bassa. */
@media(prefers-reduced-motion:no-preference){
.product-card.product-card--highlight{animation:mdGlowSoft 4.5s var(--ease) infinite}
@keyframes mdGlowSoft{
0%,100%{box-shadow:0 6px 22px rgba(0,0,0,.08)}
50%{box-shadow:0 10px 32px rgba(0,0,0,.16)}
}
}
html.dark .product-card.product-card--highlight{box-shadow:0 8px 26px rgba(0,0,0,.5)}
@media(prefers-reduced-motion:no-preference){
html.dark .product-card.product-card--highlight{animation:mdGlowSoftDark 4.5s var(--ease) infinite}
@keyframes mdGlowSoftDark{
0%,100%{box-shadow:0 6px 22px rgba(0,0,0,.45)}
50%{box-shadow:0 10px 32px rgba(0,0,0,.65)}
}
}
/* Il nome del piatto consigliato prende il colore del brand: è il dettaglio che fa
   sembrare la card "scelta dallo chef" e non "una card con un bordo". */
.product-card--highlight .product-card__name,
.product-card--highlight .product-card__name a{color:var(--primary)}
.product-card--text-only .product-badges{position:static;flex-direction:row;margin-bottom:6px}
.service-badges{position:absolute;top:8px;right:8px;display:flex;flex-direction:column;gap:6px;z-index:3}
.service-badge{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.3)}
.service-badge svg{width:20px;height:20px}
.service-badge--restaurant{background:#7c1d1d;border:2px solid #991b1b}
.service-badge--restaurant svg{fill:#fff}
.service-badge--beach{background:#0ea5e9;border:2px solid #38bdf8}
.service-badge--beach svg{fill:#fff}
.product-card--text-only .service-badges{position:static;flex-direction:row;margin-bottom:6px}
.price-current,.price-discounted{font-family:var(--font-h);font-weight:800;font-size:.92rem;color:var(--primary)}
.price-original{font-size:.75rem;color:var(--text-sec);text-decoration:line-through;margin-right:4px}
.price-discounted{color:var(--badge-discount)}
.price-variants{display:flex;flex-direction:column;gap:3px}
.price-variant-item{display:flex;justify-content:space-between;gap:6px;font-size:.82rem}
.price-variant-label{color:var(--text-sec);font-weight:500}
.product-detail{padding-bottom:32px}
.product-hero-img{border-radius:var(--radius);margin-bottom:20px;box-shadow:var(--shadow-card)}
.product-gallery{display:flex;gap:10px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;margin-bottom:20px;padding-bottom:8px}
.gallery-img{border-radius:var(--radius);min-width:85%;scroll-snap-align:start;box-shadow:var(--shadow-card)}
.product-detail h1{font-size:1.45rem;font-weight:800;letter-spacing:-.02em}
.product-detail .product-badges{position:static;flex-direction:row;margin-bottom:10px}
.product-detail .service-badges{position:static;flex-direction:row;margin-bottom:10px}
.product-price-block{margin-top:8px;margin-bottom:16px}
.product-price-block .price-current,.product-price-block .price-discounted{font-size:1.15rem}
.product-desc{color:var(--text-sec);font-size:.9rem;line-height:1.65;margin-bottom:16px}
.product-ingredients{font-size:.85rem;color:var(--text-sec);margin-bottom:12px;line-height:1.5;padding:12px 16px;background:var(--card);border:1px solid var(--border);border-radius:var(--radius-sm)}
.product-allergens{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.product-allergens .allergen-badge{padding:4px 10px;font-size:.75rem}
/* v45.36.19 — allergeni impasto sulla pagina prodotto: tratteggiati come le pill
   della card (v45.36.18), così i due set restano distinguibili anche qui. */
.product-allergens--dough{margin-top:-8px}
.allergen-badge--dough{border:1px dashed rgba(180,83,9,.35);background:rgba(180,83,9,.06);color:#92400e}
html.dark .allergen-badge--dough{border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.06);color:var(--text-sec)}
.product-detail--unavailable{opacity:.55}
.site-footer{padding:24px 0 32px;margin-top:20px;border-top:1px solid var(--border);background:var(--card)}
.footer-info{display:flex;flex-direction:column;align-items:center;gap:10px;margin-bottom:14px}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-bottom:10px}
.footer-link{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;border-radius:var(--radius);font-size:.85rem;font-weight:500;color:var(--text);background:var(--bg);border:1px solid var(--border);transition:all .2s var(--ease)}
.footer-link:hover{border-color:var(--primary);color:var(--primary)}
.footer-link--booking{background:var(--primary);color:#fff;border-color:var(--primary);font-weight:600}
.footer-link--booking:hover{background:var(--primary-dark);color:#fff}
.footer-address{font-size:.8rem;color:var(--text-sec);text-align:center;line-height:1.4;margin-bottom:6px}
.footer-copy{text-align:center;font-size:.68rem;color:var(--text-sec);opacity:.45;margin-top:10px}
.popup-overlay{position:fixed;inset:0;z-index:2000;background:rgba(0,0,0,.55);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .3s var(--ease)}
.popup-overlay.popup-visible{opacity:1;pointer-events:auto}
.popup-overlay.popup-closing{opacity:0;pointer-events:none}
.popup-card{background:var(--card);border-radius:var(--radius);max-width:380px;width:100%;overflow:hidden;position:relative;box-shadow:0 24px 64px rgba(0,0,0,.25);animation:popupIn .35s var(--ease-bounce)}
@keyframes popupIn{from{opacity:0;transform:scale(.9) translateY(16px)}to{opacity:1;transform:scale(1) translateY(0)}}
.popup-card__hero{width:100%;max-height:200px;object-fit:cover}
.popup-card__body{padding:22px}
.popup-card__title{font-family:var(--font-h);font-size:1.1rem;font-weight:700;margin-bottom:8px}
.popup-card__body p{font-size:.88rem;color:var(--text-sec);line-height:1.5;margin-bottom:14px}
.popup-card__cta{display:block;width:100%;text-align:center}
.popup-card__close{position:absolute;top:10px;right:10px;width:32px;height:32px;border:none;background:rgba(0,0,0,.4);backdrop-filter:blur(8px);border-radius:50%;cursor:pointer;font-size:1rem;color:#fff;display:flex;align-items:center;justify-content:center;transition:all .2s;z-index:1}
.popup-card__close:hover{background:rgba(239,68,68,.9);transform:rotate(90deg)}
.anim-stagger{opacity:0;transform:translateY(12px);transition:opacity .4s var(--ease),transform .4s var(--ease)}
.anim-stagger.anim-visible{opacity:1;transform:translateY(0)}
.anim-stagger{transition-delay:calc(var(--stagger,0) * 50ms)}
.anim-fade-in{opacity:0;transform:translateY(8px);transition:opacity .4s var(--ease),transform .4s var(--ease)}
.anim-fade-in.anim-visible{opacity:1;transform:translateY(0)}
.ripple-effect{position:absolute;border-radius:50%;background:rgba(255,255,255,.3);width:0;height:0;transform:translate(-50%,-50%);animation:rippleAnim .6s var(--ease);pointer-events:none}
@keyframes rippleAnim{to{width:300px;height:300px;opacity:0}}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;font-family:var(--font-h);font-weight:600;border:none;cursor:pointer;border-radius:var(--radius-sm);transition:all .2s var(--ease);font-size:.88rem;padding:10px 18px;text-decoration:none}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(-1px)}
.btn-secondary{background:var(--card);color:var(--text);border:1px solid var(--border)}
.btn-secondary:hover{border-color:var(--primary);color:var(--primary)}
.btn-sm{padding:6px 12px;font-size:.8rem}
.btn-full{width:100%}
.btn-link{background:none;border:none;color:var(--primary);cursor:pointer;font-family:var(--font-b);text-decoration:underline;font-size:.85rem}
.md-modal-overlay{position:fixed;inset:0;z-index:1500;background:rgba(0,0,0,.5);backdrop-filter:blur(4px);display:flex;align-items:flex-end;justify-content:center;padding:0}
@media(min-width:481px){.md-modal-overlay{align-items:center;padding:20px}}
.md-modal{background:var(--card);border-radius:var(--radius) var(--radius) 0 0;max-width:420px;width:100%;padding:28px;position:relative;max-height:90dvh;overflow-y:auto;box-shadow:0 -8px 48px rgba(0,0,0,.2);animation:mdSlideUp .3s var(--ease)}
@media(min-width:481px){.md-modal{border-radius:var(--radius)}}
@keyframes mdSlideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.md-modal__close{position:absolute;top:14px;right:14px;width:34px;height:34px;border:none;background:var(--border);border-radius:50%;cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;transition:all .2s;color:var(--text)}
.md-modal__close:hover{background:#ef4444;color:#fff;transform:rotate(90deg)}
.md-modal--table{max-width:400px}
.modal-table-header{text-align:center;margin-bottom:16px}
.modal-table-icon{font-size:2rem;display:block;margin-bottom:4px}
.modal-subtitle{font-size:.82rem;color:var(--text-sec);margin-top:4px}
.md-field{margin-bottom:12px}
.md-field label{display:block;font-size:.82rem;font-weight:600;color:var(--text);margin-bottom:4px}
.md-input{width:100%;padding:12px 14px;border:2px solid var(--border);border-radius:var(--radius-sm);font-family:inherit;font-size:.88rem;color:var(--text);background:var(--bg);transition:border-color .2s;resize:vertical}
.md-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(230,126,34,.1)}
.md-input::placeholder{color:var(--text-sec);opacity:.6}
.md-input--big{font-size:1.6rem;text-align:center;font-weight:700;letter-spacing:4px;padding:14px}
.md-input--code{font-family:monospace}
.md-error{background:#fee2e2;color:#991b1b;padding:8px 12px;border-radius:var(--radius-xs);font-size:.82rem;margin-top:8px}
.session-code-display{text-align:center;padding:20px 0}
.session-code-label{font-size:.75rem;color:var(--text-sec);text-transform:uppercase;letter-spacing:1px;margin-bottom:8px;font-weight:600}
.session-code-value{font-family:monospace;font-size:2.6rem;font-weight:800;letter-spacing:10px;color:var(--primary);padding:14px 20px;background:var(--bg);border:3px dashed var(--primary);border-radius:var(--radius);display:inline-block;user-select:all;min-width:200px}
.session-code-hint{font-size:.75rem;color:var(--text-sec);margin-top:8px}
.session-info-row{display:flex;gap:16px;justify-content:center;font-size:.82rem;color:var(--text-sec)}
.cart-items{max-height:40vh;overflow-y:auto}
.cart-item{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-bottom:1px solid var(--border);gap:10px}
.cart-item:last-child{border-bottom:none}
.cart-item__info{flex:1;min-width:0}
.cart-item__info strong{font-size:.88rem;display:block;margin-bottom:2px}
.cart-item__price{font-size:.8rem;color:var(--text-sec)}
.cart-item__actions{display:flex;align-items:center;gap:4px;flex-shrink:0}
.cart-qty-btn{width:32px;height:32px;border-radius:10px;border:2px solid var(--border);background:var(--bg);cursor:pointer;font-size:1.1rem;font-weight:700;display:flex;align-items:center;justify-content:center;color:var(--text);transition:all .15s}
.cart-qty-btn:hover{border-color:var(--primary)}
.cart-qty{font-weight:700;min-width:24px;text-align:center;font-size:.88rem}
.cart-remove-btn{width:32px;height:32px;border:none;background:rgba(239,68,68,.08);cursor:pointer;font-size:.85rem;border-radius:10px;display:flex;align-items:center;justify-content:center;transition:all .15s}
.cart-remove-btn:hover{background:#ef4444;color:#fff}
.cart-total{display:flex;justify-content:space-between;align-items:center;padding:14px 0;border-top:2px solid var(--border);margin-top:8px;font-size:1rem}
.cart-total strong{font-size:1.2rem;font-weight:800;color:var(--primary)}
.cart-empty{text-align:center;color:var(--text-sec);padding:24px 0;font-size:.88rem}
.cart-loading{text-align:center;color:var(--text-sec);padding:20px}
.cart-fab{position:fixed;bottom:24px;right:24px;z-index:1050;width:58px;height:58px;border-radius:50%;background:var(--primary);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 28px rgba(230,126,34,.35);transition:all .25s var(--ease-bounce)}
.cart-fab:hover{transform:scale(1.1)}
.cart-fab:active{transform:scale(.95)}
.cart-fab__icon{display:flex;align-items:center;justify-content:center}
.cart-fab__icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.cart-fab__count{position:absolute;top:-4px;right:-4px;background:#ef4444;color:#fff;font-size:.68rem;font-weight:800;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 6px rgba(239,68,68,.4)}
.icon-svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;vertical-align:middle;display:inline-block;flex-shrink:0}
.md-add-detail{margin-top:16px}
.add-to-cart-detail{margin-top:16px;font-size:.95rem;width:100%}
.md-variant-picker,.variant-cart-picker{margin-top:16px;display:flex;flex-direction:column;gap:8px}
.btn-variant-add{width:100%;text-align:left;font-size:.85rem;padding:10px 16px}
.product-card__body{position:relative}
.orders-status-list{max-height:50vh;overflow-y:auto}
.order-status-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);padding:14px;margin-bottom:10px}
.order-status-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.order-status-time{font-size:.82rem;color:var(--text-sec)}
.order-status-badge{display:inline-block;padding:3px 10px;border-radius:12px;font-size:.72rem;font-weight:700;color:#fff}
.order-status-items{font-size:.82rem;color:var(--text-sec)}
.order-status-item{display:flex;justify-content:space-between;padding:2px 0}
.order-status-total{font-size:.88rem;margin-top:8px;padding-top:8px;border-top:1px solid var(--border);text-align:right}
.cart-toast--error{background:#ef4444}
.text-sec{color:var(--text-sec);font-size:.82rem}
@media(max-width:480px){
body{font-size:16px}
.container{padding:0 14px}
.hero{height:180px;border-radius:var(--radius-sm);margin-bottom:14px}
.categories-grid{gap:10px}
.category-card{border-radius:var(--radius-sm);aspect-ratio:16/8}
.category-card__title{font-size:1.1rem}
.product-card{border-radius:var(--radius-sm)}
.product-card__image{height:140px}
.product-card__name{font-size:1rem}
.product-card__description{font-size:.85rem}
.product-detail h1{font-size:1.3rem}
.product-desc{font-size:.92rem}
.cart-fab{bottom:80px;right:14px}
.md-modal{padding:22px}
.category-page-header h1{font-size:1.3rem}
.category-desc{font-size:.9rem}
}
@media(min-width:481px){
.categories-grid{gap:14px}
.category-card{aspect-ratio:16/6}
}
.md-unit-notice{background:#fffbeb;border:1px solid #fde68a;color:#92400e;border-radius:12px;padding:14px 18px;margin-bottom:16px;font-size:.9rem}
.md-unit-notice p{margin:0}
.md-empty-filtered{padding:32px 16px;text-align:center}
.session-top-bar{display:flex;align-items:center;justify-content:space-between;background:var(--primary,#2563eb);color:#fff;border-radius:14px;padding:10px 16px;margin-bottom:16px;box-shadow:0 2px 12px rgba(37,99,235,.25);animation:slideDown .3s ease}
.session-top-bar--beach{background:linear-gradient(135deg,#f59e0b,#d97706);box-shadow:0 2px 12px rgba(245,158,11,.3)}
.session-top-bar__info{display:flex;align-items:center;gap:8px;cursor:pointer;flex:1}
.session-top-bar__icon{font-size:1.3rem}
.session-top-bar__label{font-weight:700;font-size:.95rem}
.session-top-bar__actions{display:flex;gap:6px}
.session-top-bar__btn{background:rgba(255,255,255,.2);border:none;color:#fff;padding:6px 12px;border-radius:10px;font-size:.85rem;font-weight:600;cursor:pointer;transition:background .2s}
.session-top-bar__btn:hover{background:rgba(255,255,255,.35)}
@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}
.unit-type-toggle{display:flex;gap:4px;background:var(--bg-sec,#f3f4f6);border-radius:12px;padding:4px;margin-bottom:16px}
.unit-type-toggle__btn{flex:1;padding:10px 8px;border:none;border-radius:10px;font-size:.88rem;font-weight:600;cursor:pointer;background:transparent;color:var(--text-sec,#6b7280);transition:all .2s}
.unit-type-toggle__btn--active{background:#fff;color:var(--text,#111827);box-shadow:0 1px 4px rgba(0,0,0,.1)}
.dark .unit-type-toggle{background:var(--dark-bg,#1e293b)}
.dark .unit-type-toggle__btn--active{background:var(--dark-card,#334155);color:var(--dark-text,#f1f5f9)}
.back-to-menu{display:inline-flex;align-items:center;gap:4px;color:var(--primary);font-weight:600;font-size:.92rem;text-decoration:none;padding:10px 0 4px;transition:opacity .2s}
.back-to-menu:hover{opacity:.7}
.nav-back-row{padding:6px 0 0}
.beach-mode-banner{background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;text-align:center;font-weight:700;font-size:.92rem;padding:10px 16px;border-radius:var(--radius,12px);margin-bottom:16px;box-shadow:0 2px 12px rgba(245,158,11,.25)}
.zone-mode-banner{text-align:center;font-weight:700;font-size:.92rem;padding:10px 16px;border-radius:var(--radius,12px);margin-bottom:16px;background:linear-gradient(135deg,#6366f1,#4f46e5);color:#fff;box-shadow:0 2px 12px rgba(99,102,241,.25)}
.experience-disclaimer{
position:relative;
background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
color:#e8d5b7;
border-radius:var(--radius,12px);
padding:20px 20px 20px 70px;
margin-bottom:20px;
border:1px solid rgba(212,175,55,.25);
box-shadow:0 4px 20px rgba(0,0,0,.15),inset 0 1px 0 rgba(212,175,55,.1);
font-style:italic;
line-height:1.65
}
.experience-disclaimer__icon{
position:absolute;
left:16px;
top:50%;
transform:translateY(-50%);
font-size:2rem;
width:44px;
height:44px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(212,175,55,.12);
border-radius:50%;
border:1px solid rgba(212,175,55,.2)
}
.experience-disclaimer p{
margin:0;
font-size:.88rem;
letter-spacing:.015em
}
@media(max-width:480px){
.experience-disclaimer{padding:16px 14px 16px 58px}
.experience-disclaimer__icon{left:10px;font-size:1.6rem;width:38px;height:38px}
.experience-disclaimer p{font-size:.82rem}
}
.footer-info-block{
margin-top:16px;
padding-top:14px;
border-top:1px solid rgba(255,255,255,.08);
display:flex;
flex-direction:column;
gap:10px
}
.footer-info-item{
display:flex;
align-items:flex-start;
gap:10px;
font-size:.82rem;
color:rgba(255,255,255,.6);
line-height:1.5
}
.footer-info-icon{font-size:1.1rem;flex-shrink:0;margin-top:1px}
.footer-info-item p{margin:0}
.footer-info-item strong{color:rgba(255,255,255,.85)}
.footer-info-item small{font-size:.78rem;opacity:.75}
.footer-info-social{color:rgba(255,255,255,.7)}
.btn-back-menu{
display:inline-flex;
align-items:center;
gap:8px;
background:var(--primary);
color:#fff;
font-weight:600;
font-size:.88rem;
text-decoration:none;
padding:10px 20px;
border-radius:var(--radius,12px);
margin:12px 0 8px;
transition:all .2s var(--ease);
box-shadow:0 2px 8px rgba(0,0,0,.12)
}
.btn-back-menu:hover{background:var(--primary-dark,#1a3fcf);transform:translateY(-1px);box-shadow:0 4px 16px rgba(0,0,0,.18)}
.btn-back-menu__arrow{font-size:1.1rem;line-height:1}
.btn-back-menu__text{letter-spacing:.01em}
.back-to-menu,.breadcrumbs,.nav-back-row{display:none!important}
.section-divider{
margin:24px 0 8px;
padding:0 4px
}
.section-divider__title{
font-family:var(--font-h);
font-size:1rem;
font-weight:700;
color:var(--text);
letter-spacing:.02em;
padding-bottom:6px;
border-bottom:2px solid var(--primary);
display:inline-block
}
.section-divider:first-child{margin-top:8px}
.experience-disclaimer{
position:relative;
background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
color:#e8d5b7;
border-radius:var(--radius,12px);
padding:20px 20px 20px 70px;
margin-bottom:20px;
border:1px solid rgba(212,175,55,.25);
box-shadow:0 4px 20px rgba(0,0,0,.15),inset 0 1px 0 rgba(212,175,55,.1);
font-style:italic;
line-height:1.65
}
.experience-disclaimer__icon{
position:absolute;left:16px;top:50%;transform:translateY(-50%);
font-size:2rem;width:44px;height:44px;
display:flex;align-items:center;justify-content:center;
background:rgba(212,175,55,.12);border-radius:50%;
border:1px solid rgba(212,175,55,.2)
}
.experience-disclaimer p{margin:0;font-size:.88rem;letter-spacing:.015em}
@media(max-width:480px){
.experience-disclaimer{padding:16px 14px 16px 58px}
.experience-disclaimer__icon{left:10px;font-size:1.6rem;width:38px;height:38px}
.experience-disclaimer p{font-size:.82rem}
}
.footer-info-block{
margin-top:16px;
padding:16px;
background:linear-gradient(135deg,#1b2838 0%,#1e3548 100%);
border-radius:var(--radius,12px);
display:flex;
flex-direction:column;
gap:12px
}
.footer-info-item{
display:flex;
align-items:flex-start;
gap:10px;
font-size:.82rem;
color:rgba(255,255,255,.75);
line-height:1.6
}
.footer-info-icon{font-size:1.1rem;flex-shrink:0;margin-top:1px}
.footer-info-item p{margin:0}
.footer-info-item strong{color:#fff}
.footer-info-item small{font-size:.78rem;opacity:.7}
.footer-info-social{color:rgba(255,255,255,.85)}
.zone-mode-banner{text-align:center;font-weight:700;font-size:.92rem;padding:10px 16px;border-radius:var(--radius,12px);margin-bottom:16px;background:linear-gradient(135deg,#6366f1,#4f46e5);color:#fff;box-shadow:0 2px 12px rgba(99,102,241,.25)}
.anim-stagger{opacity:1!important;transform:none!important;transition:none!important;transition-delay:0ms!important}
.btn-back-menu{display:flex;width:fit-content;margin:12px auto 8px}
.section-divider{
margin:28px 0 12px;
text-align:center
}
.section-divider__title{
font-family:var(--font-h);
font-size:.95rem;
font-weight:700;
color:var(--text);
letter-spacing:.04em;
text-transform:uppercase;
padding:8px 24px;
display:inline-block;
position:relative;
border-bottom:none
}
.section-divider__title::before,
.section-divider__title::after{
content:'';
position:absolute;
top:50%;
width:40px;
height:1px;
background:linear-gradient(90deg,transparent,var(--primary))
}
.section-divider__title::before{right:100%;background:linear-gradient(90deg,transparent,var(--primary))}
.section-divider__title::after{left:100%;background:linear-gradient(90deg,var(--primary),transparent)}
.section-divider:first-child{margin-top:8px}
@media(max-width:480px){
.section-divider__title{font-size:.85rem;padding:6px 16px}
.section-divider__title::before,.section-divider__title::after{width:24px}
}
/* v45.36.15 — descrizione della sezione (3.2). Il CSS di Agape stava nel loro
   theme.css (branding, da non portare): qui usa le variabili di Primo Re. */
.section-divider__desc{
max-width:620px;
margin:4px auto 2px;
padding:0 14px;
text-align:center;
font-style:italic;
line-height:1.55;
color:var(--text-sec);
font-size:.82rem
}
@media(max-width:480px){
.section-divider__desc{font-size:.78rem;padding:0 10px}
}
.anim-stagger,.anim-fade-in{opacity:1!important;transform:none!important;transition:none!important;animation:none!important}
.site-header{
position:sticky;
top:0;
z-index:100;
background:var(--card);
backdrop-filter:blur(12px);
box-shadow:0 1px 8px rgba(0,0,0,.06);
padding:8px 0
}
.site-header .container{
display:flex;
align-items:center;
justify-content:space-between
}
.header-logo{flex-shrink:0}
.header-logo__img{
height:36px;
width:auto;
display:block
}
.header-controls{
display:flex;
align-items:center;
gap:8px
}
.btn-back-menu{
position:sticky;
top:56px;
z-index:90;
display:flex;
width:fit-content;
margin:0 auto 12px;
align-items:center;
gap:8px;
background:var(--primary);
color:#fff;
font-weight:600;
font-size:.88rem;
text-decoration:none;
padding:12px 28px;margin-top:16px;margin-bottom:16px;
border-radius:50px;
transition:all .2s;
box-shadow:0 2px 12px rgba(0,0,0,.15)
}
.btn-back-menu:hover{transform:translateY(-1px);box-shadow:0 4px 20px rgba(0,0,0,.2)}
.btn-back-menu__arrow{font-size:1.1rem;line-height:1}
.back-to-menu,.breadcrumbs,.nav-back-row{display:none!important}
.section-divider{
margin:28px 0 12px;
text-align:center
}
.section-divider__title{
font-family:var(--font-h);
font-size:.95rem;
font-weight:700;
color:var(--text);
letter-spacing:.04em;
text-transform:uppercase;
padding:8px 24px;
display:inline-flex;
align-items:center;
gap:8px;
position:relative;
border-bottom:none
}
.section-divider__title::before,
.section-divider__title::after{
content:'';
width:40px;
height:1.5px;
background:linear-gradient(90deg,transparent,var(--primary));
flex-shrink:0
}
.section-divider__title::after{background:linear-gradient(90deg,var(--primary),transparent)}
.section-divider:first-child{margin-top:8px}
@media(max-width:480px){
.section-divider__title{font-size:.82rem;padding:6px 12px}
.section-divider__title::before,.section-divider__title::after{width:20px}
}
.footer-info-block{
margin-top:16px;
padding:16px;
background:linear-gradient(135deg,#1b2838 0%,#1e3548 100%);
border-radius:var(--radius,12px);
display:flex;
flex-direction:column;
gap:12px
}
.footer-info-item{display:flex;align-items:flex-start;gap:10px;font-size:.82rem;color:rgba(255,255,255,.75);line-height:1.6}
.footer-info-icon{font-size:1.1rem;flex-shrink:0;margin-top:1px}
.footer-info-item p{margin:0}
.footer-info-item strong{color:#fff}
.footer-info-item small{font-size:.78rem;opacity:.7}
.experience-disclaimer{
position:relative;
background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
color:#e8d5b7;
border-radius:var(--radius,12px);
padding:20px 20px 20px 70px;
margin-bottom:20px;
border:1px solid rgba(212,175,55,.25);
box-shadow:0 4px 20px rgba(0,0,0,.15);
font-style:italic;
line-height:1.65
}
.experience-disclaimer__icon{
position:absolute;left:16px;top:50%;transform:translateY(-50%);
font-size:2rem;width:44px;height:44px;
display:flex;align-items:center;justify-content:center;
background:rgba(212,175,55,.12);border-radius:50%;
border:1px solid rgba(212,175,55,.2)
}
.experience-disclaimer p{margin:0;font-size:.88rem;letter-spacing:.015em}
@media(max-width:480px){
.experience-disclaimer{padding:16px 14px 16px 58px}
.experience-disclaimer__icon{left:10px;font-size:1.6rem;width:38px;height:38px}
}
.zone-mode-banner{text-align:center;font-weight:700;font-size:.92rem;padding:10px 16px;border-radius:var(--radius,12px);margin-bottom:16px;background:linear-gradient(135deg,#6366f1,#4f46e5);color:#fff}
.product-card{
cursor:pointer;
transition:box-shadow .2s,transform .15s;
position:relative
}
.product-card:hover{
box-shadow:0 4px 20px rgba(0,0,0,.1);
transform:translateY(-2px)
}
.product-card:active{transform:translateY(0);box-shadow:0 2px 8px rgba(0,0,0,.08)}
.product-card__name a{color:inherit;text-decoration:none}
.product-card__view-more{
display:flex;
justify-content:flex-end;
margin-top:6px
}
.product-card__view-link{
display:flex;
align-items:center;
justify-content:center;
width:28px;
height:28px;
border-radius:50%;
background:var(--primary);
color:#fff;
font-size:1.2rem;
font-weight:700;
line-height:1;
transition:transform .2s
}
.product-card:hover .product-card__view-link{transform:translateX(3px)}
.product-detail{
background:var(--card);
border-radius:var(--radius,12px);
overflow:hidden;
box-shadow:0 2px 16px rgba(0,0,0,.06)
}
.product-detail h1{
font-size:1.5rem;
padding:0 20px;
margin:16px 0 4px
}
.product-price-block{
padding:0 20px;
margin-bottom:12px
}
.product-desc{
padding:0 20px;
color:var(--text-sec);
line-height:1.7;
margin-bottom:12px
}
.product-ingredients{
padding:0 20px;
font-size:.88rem;
color:var(--text-sec);
margin-bottom:12px
}
.product-allergens{
padding:8px 20px 16px;
border-top:1px solid var(--border);
margin-top:8px
}
.product-allergens strong{
display:block;
font-size:.82rem;
color:var(--text-sec);
margin-bottom:6px
}
.product-hero-img{
width:100%;
max-height:300px;
object-fit:cover
}
.md-add-detail{padding:0 20px 20px}
.section-divider[data-section-toggle]{cursor:pointer;user-select:none}
.section-divider[data-section-toggle]:hover .section-divider__title{color:var(--primary)}
.section-divider__chevron{
display:inline-block;
font-size:.7rem;
margin-left:8px;
transition:transform .25s ease;
opacity:.5
}
.section-divider--collapsed .section-divider__chevron{transform:rotate(-90deg)}
.section-content{
overflow:hidden;
transition:max-height .35s ease,opacity .25s ease;
max-height:5000px;
opacity:1
}
.section-content--collapsed{
max-height:0!important;
opacity:0;
pointer-events:none
}
.price-range{color:var(--primary);font-weight:700;font-size:.95rem}
.price-variable{color:var(--text-sec);font-style:italic;font-size:.85rem}
.price-unit{color:var(--text-sec);font-size:.78rem;font-weight:400;font-style:italic}
.product-card--full{cursor:default}
.product-card--full:hover{box-shadow:none;transform:none}
.product-card--full:active{transform:none}
.product-card__view-more,.product-card__view-link{display:none!important}
.product-card__ingredients{
font-size:.8rem;
color:var(--text-sec,#666);
margin-top:4px;
line-height:1.5;
font-style:italic
}
.product-card__label{
font-weight:600;
font-style:normal;
color:var(--text,#333)
}
.product-card__allergens{margin-top:6px}
.allergen-badge{font-size:.72rem;padding:2px 6px;border-radius:4px;background:rgba(180,83,9,.08);display:inline-block;margin:2px 2px 2px 0}
.product-card__description{display:block!important;-webkit-line-clamp:unset!important;overflow:visible!important}
.product-card--full{
cursor:default;
background:var(--card);
border-radius:14px;
border:1px solid rgba(0,0,0,.04);
box-shadow:0 1px 4px rgba(0,0,0,.04);
transition:none;
margin-bottom:6px;
overflow:hidden
}
.product-card--full:hover{transform:none;box-shadow:0 1px 4px rgba(0,0,0,.04)}
.product-card--full .product-card__header{
display:flex;
justify-content:space-between;
align-items:baseline;
gap:12px;
padding-bottom:6px;
border-bottom:1px solid rgba(0,0,0,.05)
}
.product-card--full .product-card__name{
font-family:var(--font-h,'Outfit',sans-serif);
font-size:1.05rem;
font-weight:700;
color:var(--text);
letter-spacing:-.01em;
line-height:1.3
}
.product-card--full .product-card__price{
font-family:var(--font-h,'Outfit',sans-serif);
font-weight:700;
font-size:1.05rem;
color:var(--primary);
white-space:nowrap;
flex-shrink:0
}
.product-card__desc-full{
font-size:.85rem;
color:var(--text-sec,#555);
line-height:1.6;
margin-top:8px
}
.product-card__ingr{
font-size:.78rem;
color:var(--text-sec,#888);
line-height:1.5;
margin-top:6px;
padding:6px 10px;
background:rgba(0,0,0,.02);
border-radius:8px;
border-left:3px solid var(--primary);
}
.product-card__ingr-label{
font-weight:700;
color:var(--text,#333);
text-transform:uppercase;
font-size:.7rem;
letter-spacing:.04em
}
.product-card__allergens-full{
display:flex;
flex-wrap:wrap;
gap:5px;
margin-top:8px;
padding-top:8px;
border-top:1px dashed rgba(0,0,0,.06)
}
.allergen-pill{
display:inline-flex;
align-items:center;
gap:3px;
font-size:.72rem;
font-weight:500;
padding:3px 8px;
border-radius:20px;
background:linear-gradient(135deg,rgba(180,83,9,.08),rgba(180,83,9,.04));
color:#92400e;
border:1px solid rgba(180,83,9,.12);
line-height:1.3
}
/* v45.36.18 — allergeni impasto (3.5). Su Agape stava nel loro theme.css con l'oro
   del brand: qui riuso la palette delle pill di Primo Re. Le pill tratteggiate le
   distinguono a colpo d'occhio da quelle del piatto. */
.product-card__dough-allergens{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:6px;
margin-top:7px
}
.dough-allergens__label{
font-size:.6rem;
font-weight:700;
letter-spacing:.1em;
text-transform:uppercase;
color:#92400e;
background:rgba(180,83,9,.10);
border:1px solid rgba(180,83,9,.12);
border-radius:999px;
padding:3px 9px;
line-height:1.3
}
.allergen-pill--dough{border-style:dashed}
.product-card--full .product-card__body{
padding:16px 18px
}
.product-card--full .price-range{font-size:1rem}
.product-card--full .price-variable{font-size:.85rem;color:var(--text-sec)}
@media(max-width:480px){
.product-card--full .product-card__name{font-size:.95rem}
.product-card--full .product-card__price{font-size:.95rem}
.product-card__desc-full{font-size:.82rem}
.product-card__ingr{font-size:.75rem;padding:5px 8px}
.allergen-pill{font-size:.68rem;padding:2px 6px}
.dough-allergens__label{font-size:.55rem;padding:2px 7px}
.product-card--full .product-card__body{padding:14px 14px}
}
.product-card__view-more,.product-card__view-link{display:none!important}
.product-card__description,.product-card__ingredients,.product-card__allergens{display:none!important}
body{
background:#FAF6F1;
color:#2C1810;
font-family:'DM Sans',-apple-system,sans-serif
}
.site-header{
background:linear-gradient(135deg,#2C1810 0%,#3D2B1F 100%);
box-shadow:0 2px 16px rgba(44,24,16,.12);
border-bottom:1px solid rgba(139,105,20,.2)
}
.site-header .header-controls .lang-switcher a,
.site-header .header-controls .lang-switcher span{
color:#E8DDD0;
border-color:rgba(196,163,90,.35);
background:rgba(250,246,241,.08)
}
.site-header .header-controls .lang-switcher a:hover,
.site-header .header-controls .lang-switcher span:hover{
background:rgba(250,246,241,.15);
border-color:rgba(196,163,90,.5)
}
.site-header .header-controls .lang-switcher a.active,
.site-header .header-controls .lang-switcher span.active{
background:#8B6914;color:#FAF6F1;border-color:#8B6914
}
.btn-back-menu{
background:linear-gradient(135deg,#8B6914,#A0784C);
color:#FAF6F1;
border:none;
box-shadow:0 2px 12px rgba(139,105,20,.25);
font-family:'DM Sans',sans-serif;
font-weight:600;
letter-spacing:.02em
}
.btn-back-menu:hover{
background:linear-gradient(135deg,#A0784C,#8B6914);
box-shadow:0 4px 20px rgba(139,105,20,.35)
}
.category-card{
background:#fff;
border:1px solid #E8DDD0;
border-radius:14px;
overflow:hidden;
box-shadow:0 2px 12px rgba(44,24,16,.04)
}
.category-card__title{
font-family:'Cormorant Garamond',Georgia,serif;
font-weight:600;
font-size:1.15rem;
color:#2C1810;
letter-spacing:.02em
}
.category-card__desc{
color:#6B5744;
font-size:.82rem
}
.section-divider__title{
font-family:'Cormorant Garamond',Georgia,serif!important;
font-weight:600!important;
color:#8B6914!important;
font-size:1rem!important;
letter-spacing:.08em!important
}
.section-divider__title::before,
.section-divider__title::after{
background:linear-gradient(90deg,transparent,#C4A35A)!important
}
.section-divider__title::after{
background:linear-gradient(90deg,#C4A35A,transparent)!important
}
.product-card--full{
background:#FFFFFF;
border:1px solid #E8DDD0;
border-radius:14px;
box-shadow:0 1px 8px rgba(44,24,16,.03);
margin-bottom:8px
}
.product-card--full .product-card__body{
padding:18px 20px
}
.product-card--full .product-card__name{
font-family:'Cormorant Garamond',Georgia,serif!important;
font-weight:600;
font-size:1.15rem;
color:#2C1810;
letter-spacing:.01em
}
.product-card--full .product-card__price,
.product-card--full .price-current,
.product-card--full .price-range{
font-family:'DM Sans',sans-serif;
font-weight:700;
color:#8B6914!important;
font-size:1rem
}
.product-card--full .product-card__header{
border-bottom:1px solid #E8DDD0;
padding-bottom:8px;
margin-bottom:4px
}
.product-card__desc-full{
color:#6B5744;
font-size:.85rem;
line-height:1.65;
margin-top:8px
}
.product-card__ingr{
background:rgba(139,105,20,.04);
border-left:3px solid #C4A35A;
border-radius:0 8px 8px 0;
padding:8px 12px;
margin-top:8px;
font-size:.78rem;
color:#6B5744;
line-height:1.55
}
.product-card__ingr-label{
color:#8B6914;
font-weight:700;
text-transform:uppercase;
font-size:.68rem;
letter-spacing:.06em
}
.product-card__allergens-full{
border-top:1px dashed #E8DDD0;
padding-top:8px;
margin-top:10px
}
.allergen-pill{
background:linear-gradient(135deg,rgba(139,105,20,.08),rgba(160,82,45,.06));
color:#7C4A1A;
border:1px solid rgba(139,105,20,.15);
border-radius:20px;
font-size:.72rem;
padding:3px 9px;
font-weight:500
}
.experience-disclaimer{
background:linear-gradient(135deg,#2C1810 0%,#3D2B1F 50%,#4A3728 100%);
border:1px solid rgba(196,163,90,.3);
color:#E8DDD0
}
.experience-disclaimer__icon{
background:rgba(196,163,90,.15);
border:1px solid rgba(196,163,90,.25)
}
.beach-mode-banner{
background:linear-gradient(135deg,#C4A35A,#8B6914);
color:#FAF6F1
}
.zone-mode-banner{
background:linear-gradient(135deg,#3D2B1F,#2C1810);
color:#E8DDD0;
border:1px solid rgba(196,163,90,.2)
}
.site-footer{
background:linear-gradient(135deg,#2C1810,#1A0F08);
border-top:1px solid rgba(196,163,90,.15)
}
.footer-info-block{
background:linear-gradient(135deg,#3D2B1F,#2C1810);
border:1px solid rgba(196,163,90,.1)
}
.footer-info-social a{color:#C4A35A!important}
.footer-copy{color:rgba(232,221,208,.5)}
.hero{position:relative}
.hero-overlay{
background:linear-gradient(180deg,rgba(44,24,16,.3),rgba(44,24,16,.7))
}
.hero-text{text-align:center}
.hero-text h1{
font-family:'Cormorant Garamond',Georgia,serif;
color:#FAF6F1;
text-shadow:0 2px 20px rgba(0,0,0,.3)
}
.category-page-header h1{
font-family:'Cormorant Garamond',Georgia,serif;
font-weight:600;
color:#2C1810;
font-size:1.6rem;
letter-spacing:.02em
}
.category-desc{color:#6B5744}
.section-divider__chevron{color:#8B6914}
.section-divider[data-section-toggle]:hover .section-divider__title{color:#A0784C!important}
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#FAF6F1}
::-webkit-scrollbar-thumb{background:#C4A35A;border-radius:3px}
.price-variable{color:#6B5744!important}
.allergens--no-content{border-top:none!important;padding-top:2px!important;margin-top:2px!important}

/* ── Beach Umbrella Picker ── */
.bp-umb{width:28px;display:flex;flex-direction:column;align-items:center;cursor:pointer;padding:4px 1px 2px;border-radius:6px;transition:all .15s;touch-action:manipulation}
.bp-umb:active{transform:scale(.88)}
.bp-umb__top{width:22px;height:11px;border-radius:22px 22px 0 0;box-shadow:0 1px 4px rgba(0,0,0,.15);transition:all .15s}
.bp-umb__num{font-size:.5rem;font-weight:800;color:#5a4a2a;margin-top:1px;line-height:1}
.bp-umb--free .bp-umb__top{background:linear-gradient(135deg,#4ade80,#22c55e)}
.bp-umb--busy .bp-umb__top{background:linear-gradient(135deg,#3b82f6,#2563eb)}
.bp-umb--busy{opacity:.5;cursor:default}
.bp-umb--selected{background:rgba(37,99,235,.15);outline:2px solid #2563eb;outline-offset:1px}
.bp-umb--selected .bp-umb__top{background:linear-gradient(135deg,#f97316,#ea580c)!important;box-shadow:0 2px 8px rgba(249,115,22,.4)}
@media(min-width:380px){.bp-umb{width:32px}.bp-umb__top{width:26px;height:13px}.bp-umb__num{font-size:.55rem}}
