/* Magic Shop – Alchemical Bistrot | style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c9a227;
  --gold-light:  #e8c45a;
  --gold-dim:    #8a6b14;
  --purple-deep: #0c0618;
  --purple-mid:  #1a0933;
  --purple-glow: #7B3FA0;
  --neon-violet: #cc44ff;
  --neon-pink:   #e060f0;
  --neon-glow:   #b830ee;
  --navy:        #050a1a;
  --text-light:  #f0e8d0;
  --text-muted:  #a89060;
  --border-gold: rgba(201,162,39,0.3);
  --sidebar-w:   240px;
  --radius:      12px;
}

html, body { height: 100%; }
/* Desktop — layout fisso */
@media (min-width: 769px) {
  body:not(.evento-page):not(.menu-page) { overflow: hidden; }
}
/* Pagine secondarie e mobile — scroll libero */
body.evento-page, body.menu-page { overflow-y: auto; overflow-x: hidden; height: auto; min-height: 100%; }
@media (max-width: 768px) {
  body:not(.evento-page):not(.menu-page) { overflow-y: auto; overflow-x: hidden; height: auto; }
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--purple-deep);
  color: var(--text-light);
}

/* ── Starfield ── */
#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── Particles ── */
.particles { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  animation: floatUp linear infinite; opacity: 0;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* ── Layout ── */
.layout {
  position: relative; z-index: 2;
  display: flex; height: 100vh; width: 100vw; overflow: hidden;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.sidebar {
  width: var(--sidebar-w); min-width: var(--sidebar-w);
  height: 100vh; display: flex; flex-direction: column;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(10,4,24,0.97) 0%, rgba(5,2,16,0.99) 100%);
  border-right: 1px solid var(--border-gold);
  position: relative; z-index: 10;
}
.sidebar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(180,48,238,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Sidebar brand — Magic Shop Alchemical Bistrot ── */
.sidebar-brand { margin-bottom: 2.2rem; text-align: center; }

.sidebar-brand-name {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  position: relative; padding-bottom: 0.7rem;
}
.sidebar-brand-name::after {
  content: '';
  position: absolute; bottom: 0; left: 15%; width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sidebar-magic {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: 1.55rem; line-height: 1;
  background: linear-gradient(180deg, #f5e07a 0%, #e8c45a 30%, #c9a227 60%, #f0d060 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.35));
}

.sidebar-alchemical {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-muted); line-height: 1;
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 4px #fff, 0 0 10px #e060f0, 0 0 22px #cc44ff, 0 0 42px #9910cc;
  }
  20%, 24%, 55% { text-shadow: none; color: #c080d0; }
}

/* ── Sidebar nav ── */
.sidebar-nav { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.nav-link {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem; letter-spacing: 0.08em;
  font-weight: 600; text-transform: uppercase;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.nav-link::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,162,39,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.nav-link:hover { color: var(--gold-light); border-color: var(--border-gold); }
.nav-link:hover::before { opacity: 1; }
.nav-link.active { color: var(--gold); border-color: var(--border-gold); background: rgba(201,162,39,0.06); }
.nav-icon { width: 22px; height: 22px; flex-shrink: 0; }
.nav-icon svg { width: 100%; height: 100%; stroke: currentColor; }

/* ── Sidebar footer ── */
.sidebar-footer { text-align: center; padding-top: 1.5rem; }
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin-bottom: 1rem;
}
.sidebar-motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.72rem;
  color: var(--text-muted); letter-spacing: 0.05em; line-height: 1.5;
}

/* ══════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════ */
.main-content {
  flex: 1; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.5rem 3rem;
  position: relative; overflow: hidden; gap: 1.4rem;
}
.main-content::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(123,63,160,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(5,20,60,0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Hero header ── */
.hero-header { text-align: center; position: relative; z-index: 2; margin-bottom: 0.2rem; }

/* ── Magic Shop title — gothic gold, poster-faithful ── */
.brand-title {
  font-family: 'UnifrakturMaguntia', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;

  /* Layered gold gradient matching the poster */
  background: linear-gradient(
    180deg,
    #f5e07a 0%,
    #e8c45a 20%,
    #c9a227 45%,
    #a07c10 65%,
    #c9a227 80%,
    #f0d060 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.8))
    drop-shadow(0 0 20px rgba(201,162,39,0.45));
}

/* ── S ibrida in IM Fell English ── */
.brand-s {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.12em;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
  letter-spacing: 0.01em;
}
.sidebar-s {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.15em;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* ── Alchemical Bistrot subtitle ── */
.brand-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 0.25rem;
  opacity: 0.9;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   ICON CARDS GRID
══════════════════════════════════════ */
.icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.1rem;
  width: 100%; max-width: 500px;
  position: relative; z-index: 2;
}
.icons-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  max-width: 600px;
}

/* 2 icone grandi affiancate */
.icons-grid--2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  max-width: 560px;
}

.icon-card {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.6rem 0.9rem 1.4rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: rgba(10, 4, 30, 0.6);
  backdrop-filter: blur(8px);
  cursor: pointer; overflow: visible;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: cardIn 0.7s ease both;
}
.icon-card[data-index="0"] { animation-delay: 0.10s; }
.icon-card[data-index="1"] { animation-delay: 0.22s; }
.icon-card[data-index="2"] { animation-delay: 0.34s; }
.icon-card[data-index="3"] { animation-delay: 0.46s; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.icon-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(ellipse at 50% 0%, rgba(180,48,238,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.icon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.7);
  box-shadow: 0 10px 36px rgba(123,63,160,0.28), 0 0 0 1px rgba(201,162,39,0.15);
}
.icon-card:hover::before { opacity: 1; }
.icon-card:hover .icon-glow { opacity: 1; transform: translate(-50%,-50%) scale(1.6); }
.icon-card:hover .icon-svg { filter: drop-shadow(0 0 10px rgba(201,162,39,0.7)); }

/* Icona evento — bordo neon viola */
.icon-card--evento { border-color: rgba(204,68,255,0.35); }
.icon-card--evento:hover {
  border-color: rgba(204,68,255,0.85);
  box-shadow: 0 10px 36px rgba(180,48,238,0.35), 0 0 0 1px rgba(204,68,255,0.2);
}
.icon-card--evento:hover .icon-svg { filter: drop-shadow(0 0 12px rgba(204,68,255,0.7)); }

/* Badge LIVE */
.evento-live-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #cc44ff; color: #fff;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.58rem; letter-spacing: 0.2em;
  padding: 2px 8px; border-radius: 10px;
  box-shadow: 0 0 10px #cc44ff, 0 0 20px #9910cc;
  animation: livePulse 1.8s ease-in-out infinite;
  z-index: 3; white-space: nowrap;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.55; transform: translateX(-50%) scale(0.88); }
}

/* Nav live dot */
.nav-live-dot {
  width: 7px; height: 7px; border-radius: 50%; margin-left: auto;
  background: #cc44ff; flex-shrink: 0;
  box-shadow: 0 0 6px #cc44ff, 0 0 12px #9910cc;
  animation: livePulse 1.8s ease-in-out infinite;
}

.icon-glow {
  position: absolute; width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,48,238,0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  opacity: 0; transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.icon-glow--neon {
  background: radial-gradient(circle, rgba(204,68,255,0.4) 0%, transparent 70%);
  width: 110px; height: 110px;
}

.icon-figure { width: 72px; height: 72px; position: relative; z-index: 1; }
.icon-figure--lg { width: 92px; height: 92px; }
.icon-svg { width: 100%; height: 100%; transition: filter 0.4s; }
.icon-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-align: center; line-height: 1.4;
  position: relative; z-index: 1;
}
.icon-label--evento { color: #e0aaff; }
.icon-label-sub {
  display: block; font-size: 0.6rem;
  color: var(--text-muted); letter-spacing: 0.06em;
  margin-top: 0.2rem; text-transform: none; font-style: italic;
}

/* ── Inauguration banner ── */
.inauguration-banner {
  width: 100%; max-width: 500px;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  background: rgba(5,2,16,0.7); position: relative; z-index: 2;
}
.banner-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0.85rem 1.5rem;
}
.banner-sparkle { color: var(--gold); font-size: 1rem; opacity: 0.7; }
.banner-text { text-align: center; }
.banner-label {
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.15rem;
}
.banner-date {
  font-family: 'Cinzel', serif; font-size: 0.95rem;
  font-weight: 700; color: var(--text-light); letter-spacing: 0.06em;
}
.banner-time {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.2em; margin-top: 0.1rem;
}

/* ══════════════════════════════════════
   OVERLAY + SECTION PANELS
══════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(5,2,16,0.72); z-index: 20;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease; backdrop-filter: blur(4px);
}
.overlay.active { opacity: 1; pointer-events: all; }

.content-section {
  position: fixed; top: 0;
  left: var(--sidebar-w); right: 0; bottom: 0;
  z-index: 30; overflow-y: auto;
  background: linear-gradient(160deg, #0e0622 0%, #07031a 100%);
  border-left: 1px solid var(--border-gold);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 3rem 3.5rem;
}
.content-section.open { transform: translateX(0); }
.section-inner { max-width: 700px; }

.close-section {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.close-section:hover { background: rgba(201,162,39,0.1); }

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.7rem; margin-bottom: 0.6rem; letter-spacing: 0.05em;
  background: linear-gradient(135deg, #f0d060, #c9a227, #f5e07a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-intro {
  font-style: italic; font-size: 1rem;
  color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6;
}

/* ── Menu list (cocktail / cucina) ── */
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.3rem;
}
.menu-item-name {
  font-family: 'Cinzel', serif; font-size: 0.95rem;
  font-weight: 600; color: var(--text-light); letter-spacing: 0.04em;
}
.menu-item-price {
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  color: var(--gold); font-weight: 700;
}
.menu-item-desc {
  font-style: italic; font-size: 0.88rem;
  color: var(--text-muted); line-height: 1.5;
}

/* ── Service cards (divinazione / astrologia) ── */
.service-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-bottom: 2rem;
}
.service-card {
  padding: 1.5rem 1.2rem;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  background: rgba(10,4,30,0.5);
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: rgba(201,162,39,0.6); transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 {
  font-family: 'Cinzel', serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.service-card p {
  font-style: italic; font-size: 0.9rem;
  color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem;
}
.service-price {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  color: var(--gold-light); font-weight: 700; letter-spacing: 0.05em;
}
.service-cta {
  border-top: 1px solid var(--border-gold); padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.service-cta p { font-style: italic; color: var(--text-muted); font-size: 0.9rem; }

/* ── Forms ── */
.form-wrapper { display: flex; flex-direction: column; gap: 1.2rem; max-width: 480px; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold); border-radius: 8px;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  padding: 0.65rem 1rem; outline: none; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(201,162,39,0.7); background: rgba(255,255,255,0.06);
}
input::placeholder, textarea::placeholder { color: rgba(168,144,96,0.5); }
select option { background: #1a0933; }
textarea { resize: vertical; min-height: 80px; }

.submit-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border: 1px solid var(--gold-dim); color: var(--gold-light);
  font-family: 'Cinzel', serif; font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 8px; cursor: pointer;
  transition: all 0.3s; margin-top: 0.5rem;
}
.submit-btn:hover {
  background: linear-gradient(135deg, rgba(201,162,39,0.25), rgba(201,162,39,0.1));
  border-color: var(--gold); transform: translateY(-1px);
}

/* ── Location ── */
.location-info { display: flex; flex-direction: column; gap: 2rem; }
.address-block { display: flex; align-items: center; gap: 1rem; }
.address-block svg { stroke: var(--gold); flex-shrink: 0; }
.address-main { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--text-light); font-weight: 600; }
.address-sub { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.2rem; }
.hours-block h3 {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.hours-table { border-collapse: collapse; width: 100%; max-width: 380px; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid rgba(201,162,39,0.08); font-size: 0.95rem; }
.hours-table td:first-child { color: var(--text-light); }
.hours-table td:last-child { color: var(--gold); text-align: right; font-family: 'Cinzel', serif; font-size: 0.85rem; }
.map-placeholder {
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  min-height: 160px; display: flex; align-items: center; justify-content: center;
  background: rgba(5,2,16,0.5);
}
.map-inner { text-align: center; }
.map-inner p { font-size: 0.9rem; color: var(--text-muted); margin: 0.5rem 0; }
.maps-link {
  color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-decoration: none;
  border-bottom: 1px solid var(--border-gold); padding-bottom: 2px; transition: color 0.2s;
}
.maps-link:hover { color: var(--gold-light); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --sidebar-w: 200px; }
  .main-content { padding: 1.5rem; }
  .icons-grid { max-width: 380px; gap: 0.85rem; }
  .icons-grid--3 { max-width: 480px; gap: 0.8rem; }
  .icons-grid--2 { max-width: 440px; }
  .service-grid { grid-template-columns: 1fr; }
  .content-section { padding: 2rem 1.5rem; left: 0; }
}
@media (max-width: 540px) {
  :root { --sidebar-w: 175px; }
  .tarot-room-label { font-size: 1.1rem; }
  .brand-title { font-size: 2.2rem; }
  .icons-grid { max-width: 320px; gap: 0.7rem; }
  .icons-grid--3 { max-width: 380px; gap: 0.6rem; }
  .icons-grid--2 { max-width: 340px; }
  .icon-figure { width: 54px; height: 54px; }
  .icon-figure--lg { width: 66px; height: 66px; }
  .icon-label { font-size: 0.6rem; }
}

/* ══════════════════════════════════════
   EVENTO BANNER (home)
══════════════════════════════════════ */
.evento-banner {
  width: 100%; max-width: 560px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(204,68,255,0.4); border-radius: var(--radius);
  background: rgba(10,4,30,0.75); padding: 0.9rem 1.3rem;
  text-decoration: none; position: relative; z-index: 2; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.evento-banner:hover { border-color: rgba(204,68,255,0.8); transform: translateY(-2px); }
.evento-banner-pulse {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(180,48,238,0.1) 0%, transparent 70%);
  animation: pulseBanner 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseBanner {
  0%,100% { opacity: 0.5; } 50% { opacity: 1; }
}
.evento-banner-left { display: flex; flex-direction: column; gap: 0.2rem; }
.evento-banner-live {
  font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.3em;
  color: #cc44ff; text-transform: uppercase;
  text-shadow: 0 0 8px #cc44ff;
}
.evento-banner-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.15em;
  color: #f0aaff;
  text-shadow: 0 0 8px #e060f0, 0 0 18px #cc44ff;
}
.evento-banner-sub {
  font-style: italic; font-size: 0.75rem;
  color: var(--text-muted); letter-spacing: 0.02em;
}
.evento-banner-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem;
}
.evento-banner-date {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  font-weight: 700; color: var(--text-light); letter-spacing: 0.05em;
}
.evento-banner-time {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.15em;
}
.evento-banner-cta {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  color: #cc44ff; letter-spacing: 0.1em; margin-top: 0.2rem;
  text-shadow: 0 0 6px #cc44ff;
}

/* ══════════════════════════════════════
   MENU INNER TABS
══════════════════════════════════════ */
.menu-tabs-inner {
  display: flex; gap: 0.5rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.menu-inner-tab {
  background: none; border: 1px solid var(--border-gold);
  color: var(--text-muted); font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; border-radius: 20px; cursor: pointer;
  transition: all 0.25s;
}
.menu-inner-tab:hover { color: var(--gold-light); border-color: rgba(201,162,39,0.5); }
.menu-inner-tab.active {
  color: var(--gold); border-color: var(--gold);
  background: rgba(201,162,39,0.07);
}

/* ── QR strip ── */
.qr-strip {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  margin-top: 1.5rem; padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-gold); border-radius: 8px;
  background: rgba(5,2,16,0.5);
}
.qr-icon { font-size: 1.2rem; flex-shrink: 0; }
.qr-text { font-style: italic; font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.qr-link {
  font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--border-gold); padding-bottom: 1px;
  transition: color 0.2s; white-space: nowrap;
}
.qr-link:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   SOCIAL LINKS (sidebar)
══════════════════════════════════════ */
.social-links {
  display: flex; justify-content: center; gap: 1rem; margin-top: 0.9rem;
}
.social-link {
  color: var(--text-muted); transition: color 0.2s;
  display: flex; align-items: center;
}
.social-link:hover { color: var(--gold); }

/* ══════════════════════════════════════
   COMING SOON BLOCKS
══════════════════════════════════════ */
.coming-soon-block {
  text-align: center;
  padding: 2rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.cs-icon { font-size: 3rem; }
.cs-title {
  font-family: 'Cinzel Decorative', serif; font-size: 1.1rem;
  background: linear-gradient(135deg,#f0d060,#c9a227,#f5e07a);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.cs-text {
  font-style: italic; font-size: 0.95rem;
  color: var(--text-muted); line-height: 1.7; max-width: 420px;
}
.cs-divider {
  color: var(--gold); font-size: 0.75rem;
  letter-spacing: 0.5em; opacity: 0.6;
}
.cs-cta-text {
  font-style: italic; font-size: 0.88rem; color: var(--text-muted);
}

/* ── Evento card preview (sezione eventi) ── */
.event-card-preview {
  display: flex; align-items: center; gap: 1.2rem;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 1rem 1.4rem; background: rgba(10,4,30,0.5);
  width: 100%; max-width: 420px; text-align: left;
}
.event-preview-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 48px; border-right: 1px solid var(--border-gold); padding-right: 1rem;
}
.ep-day {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 2rem; color: #f0aaff;
  text-shadow: 0 0 8px #cc44ff; line-height: 1;
}
.ep-month {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase;
}
.event-preview-info h4 {
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  font-weight: 700; color: var(--text-light); margin-bottom: 0.3rem;
}
.event-preview-info p {
  font-style: italic; font-size: 0.78rem;
  color: var(--text-muted); line-height: 1.5;
}

/* ══════════════════════════════════════
   CONTACT BLOCK (dove siamo)
══════════════════════════════════════ */
.contact-block { margin-top: 0.5rem; }
.contact-block h3 {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.contact-row {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted);
}
.contact-row svg { stroke: var(--gold); flex-shrink: 0; }
.contact-link {
  color: var(--text-light); text-decoration: none;
  font-style: italic; transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }

/* ── Closed day in hours table ── */
.hours-table td.closed { color: rgba(255,100,100,0.7); }

/* ══════════════════════════════════════
   MAP EMBED
══════════════════════════════════════ */
.map-embed {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.map-embed iframe {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border-gold);
}

/* ══════════════════════════════════════
   ICONA CUCINA — COMING SOON
══════════════════════════════════════ */
.icon-card--coming {
  cursor: default;
  pointer-events: none;
  opacity: 0.72;
  position: relative;
}
.icon-card--coming:hover {
  transform: none;
  border-color: var(--border-gold);
  box-shadow: none;
}
.icon-card--coming::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: rgba(10,4,30,0.25);
  pointer-events: none;
}
.coming-soon-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0.7; position: relative; z-index: 2;
  border: 1px solid var(--border-gold);
  border-radius: 20px; padding: 2px 8px;
}

/* ── Spritz Azzurino wind SVG emoji ── */
.wind-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

/* ══════════════════════════════════════
   COCKTAIL ALCHEMICI — stile speciale
══════════════════════════════════════ */
.menu-item--alchemico .menu-item-name {
  font-size: 1rem;
  color: #e0aaff;
  letter-spacing: 0.04em;
}
.menu-item--alchemico .menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.65;
  font-style: italic;
}
.menu-item--alchemico {
  border-bottom-color: rgba(204,68,255,0.15);
}

/* ── Categoria header nel menù vini ── */
.menu-category-header {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
  margin: 1.2rem 0 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-gold);
}
.menu-category-header:first-child { margin-top: 0; }

/* ══════════════════════════════════════
   MOBILE HEADER & HAMBURGER
══════════════════════════════════════ */
.mobile-header {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  height: 56px; z-index: 1000;
  background: #08031a;
  border-bottom: 1px solid rgba(201,162,39,0.3);
  align-items: center; justify-content: space-between;
  padding: 0 1.2rem;
}
.mobile-brand {
  display: flex; flex-direction: column; line-height: 1.1;
}
.mobile-brand-magic,
.mobile-brand-shop {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: 0.95rem;
  background: linear-gradient(180deg,#f5e07a,#c9a227,#f0d060);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; width: 36px; height: 36px;
}
.hamburger span {
  display: block; height: 2px; width: 22px;
  background: var(--gold); border-radius: 2px;
  transition: all 0.28s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU FULLSCREEN ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  z-index: 999;
  /* Colore solido garantito su iOS Safari */
  background-color: #08031a;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  padding: 2rem 2rem 4rem;
}
.mobile-menu.open {
  display: flex;
}

.mobile-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  width: 100%;
}
.mobile-nav-link {
  display: block; width: 100%;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: color 0.2s;
}
.mobile-nav-link:first-child { border-top: 1px solid rgba(201,162,39,0.15); }
.mobile-nav-link:hover, .mobile-nav-link:active { color: var(--gold); }

.mobile-menu-footer {
  margin-top: 2.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
.mobile-motto {
  font-style: italic; font-size: 0.8rem;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.mobile-ig {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none;
  font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.1em; border: 1px solid var(--border-gold);
  border-radius: 20px; padding: 6px 14px;
}
.mobile-ig svg { stroke: currentColor; }

/* ── Brand title su due righe ── */
.brand-title {
  display: flex; flex-direction: column;
  align-items: center; line-height: 1.05;
}
.brand-line1, .brand-line2 { display: block; }

/* ── Instagram link desktop ── */
.social-link--ig {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted); text-decoration: none;
  border: 1px solid var(--border-gold); border-radius: 20px;
  padding: 5px 12px; transition: all 0.25s; margin-top: 0.5rem;
}
.social-link--ig:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,162,39,0.06); }
.social-link--ig svg { stroke: currentColor; flex-shrink: 0; }
.ig-handle { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.08em; color: inherit; }

/* ══════════════════════════════════════
   RESPONSIVE MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .mobile-header { display: flex; }

  /* Sidebar desktop nascosta su mobile */
  .sidebar { display: none; }

  /* Layout senza sidebar */
  .layout {
    flex-direction: column;
    height: auto; min-height: 100vh;
    overflow-y: auto;
    padding-top: 56px;
  }

  .main-content {
    width: 100%; flex: none;
    padding: 1.5rem 1rem 3rem;
    min-height: calc(100vh - 56px);
    justify-content: flex-start;
    padding-top: 1.5rem;
    gap: 1rem;
    overflow-y: auto;
  }

  .content-section {
    left: 0; top: 56px;
    z-index: 500;
    padding: 1.5rem 1rem;
  }

  .brand-title { font-size: clamp(2rem, 10vw, 3rem); }
  .icons-grid--2 { max-width: 100%; gap: 0.8rem; }
  .icon-figure--lg { width: 72px; height: 72px; }
  .evento-banner { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brand-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .icon-card { padding: 1.2rem 0.7rem 1rem; }
  .icon-label { font-size: 0.62rem; }
}
