@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a2535;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== TOKENS — BLUE PALETTE ===== */
:root {
  --navy:        #0d1f3c;   /* blu scurissimo */
  --blue-dark:   #1a3560;   /* blu scuro */
  --blue-mid:    #1e4fa0;   /* blu principale */
  --blue-bright: #3a7bd5;   /* blu chiaro */
  --blue-accent: #5b9cf6;   /* accento azzurro */
  --orange:      #e8510a;   /* arancio fiamma (dal logo) */
  --orange-light:#f4894a;
  --blue-pale:   #eaf1fb;
  --blue-surface:#f4f7fd;
  --blue-border: #c5d6f0;
  --white:       #ffffff;
  --text-dark:   #0d1f3c;
  --text-body:   #2d3f5a;
  --text-muted:  #6a7e9a;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 4px rgba(13,31,60,0.07);
  --shadow-md: 0 4px 20px rgba(13,31,60,0.12);

  --nav-h:    80px;
  --topbar-h: 36px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
}
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 34px); }
h3 { font-size: clamp(17px, 2.5vw, 21px); }
p  { color: var(--text-body); line-height: 1.7; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: #a8bcd6;
  font-size: 12px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  letter-spacing: 0.04em;
}
.topbar a {
  color: var(--blue-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 16px;
  transition: opacity 0.15s;
}
.topbar a:hover { opacity: 0.8; }
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--blue-border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  display: block;
}
.nav-links a:hover,
.nav-links a.active { background: var(--blue-pale); color: var(--blue-mid); }
.nav-cta {
  background: var(--blue-mid);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue-dark); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DROPDOWN */
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(13,31,60,0.14);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--blue-border);
  border-top: 1px solid var(--blue-border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background 0.12s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--blue-pale); color: var(--blue-mid); }
.nav-dropdown-arrow { font-size: 10px; margin-left: 3px; transition: transform 0.18s; display: inline-block; }
.nav-links li:hover .nav-dropdown-arrow { transform: rotate(180deg); }

/* MOBILE MENU */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--blue-border);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.nav-mobile-menu a:hover { background: var(--blue-pale); }
.nav-mobile-menu .nav-cta { margin-top: 8px; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--blue-mid);
  opacity: 0.15;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: 60px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--blue-accent);
  opacity: 0.08;
  pointer-events: none;
}
.hero > *:not(.hero-bg-img) { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--blue-accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--blue-accent); }
.hero-sub {
  font-size: 16px;
  color: #a8bcd6;
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--orange-light); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  background: transparent;
  color: var(--blue-accent);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--blue-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(91,156,246,0.12); }
.hero-visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(91,156,246,0.25);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  z-index: 1;
}
.hero-card-label { font-size: 11px; color: #a8bcd6; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.hero-card-val { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--blue-accent); line-height: 1; }
.hero-card-sub { font-size: 13px; color: #a8bcd6; margin-top: 4px; margin-bottom: 16px; }
.hero-badges { display: flex; flex-direction: column; gap: 8px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #dce8f9; }
.hero-badge::before { content: ''; display: block; width: 6px; height: 6px; background: var(--blue-accent); border-radius: 50%; flex-shrink: 0; }

/* ===== TICKER STRIP ===== */
.strip {
  background: var(--blue-surface);
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border);
  padding: 14px 32px;
  overflow: hidden;
  white-space: nowrap;
}
.strip-inner {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  animation: ticker 22s linear infinite;
}
.strip:hover .strip-inner { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.strip-item { font-size: 13px; font-weight: 500; color: var(--blue-dark); display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; }
.strip-sep { color: var(--blue-accent); font-size: 18px; }

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--navy);
  padding: 72px 32px;
  text-align: center;
}
.video-section .section-label { color: var(--blue-accent); }
.video-section h2 { color: var(--white); margin-bottom: 10px; }
.video-section p { color: #a8bcd6; margin-bottom: 32px; font-weight: 300; }
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,31,60,0.4);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
}
.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3560 100%);
  color: #a8bcd6;
  gap: 16px;
  font-size: 14px;
  border: 2px dashed rgba(91,156,246,0.3);
}
.video-placeholder svg { opacity: 0.4; }
.video-placeholder strong { color: var(--blue-accent); font-size: 16px; }

/* ===== SLIDER ===== */
.slider-section { padding: 72px 32px; background: var(--blue-surface); }
.slider-section .section-label { color: var(--blue-mid); }
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 40px rgba(13,31,60,0.15);
}
.slider-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
}
.slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-surface) 100%);
  border: 2px dashed var(--blue-border);
  border-radius: var(--radius-xl);
}
.slide-placeholder strong { color: var(--blue-mid); font-size: 15px; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s, transform 0.15s;
  color: var(--blue-mid);
}
.slider-btn:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-50%) scale(1.05); }
.slider-btn-prev { left: 12px; }
.slider-btn-next { right: 12px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-border); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; padding: 0; }
.slider-dot.active { background: var(--blue-mid); transform: scale(1.3); }
.slider-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1.5px dashed var(--blue-border);
  color: var(--blue-mid);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.slider-add-btn:hover { background: var(--blue-pale); border-color: var(--blue-mid); }

/* ===== SECTIONS ===== */
.section { padding: 72px 32px; }
.section-dark { background: var(--navy); }
.section-surface { background: var(--blue-surface); }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--blue-mid);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label-light { color: var(--blue-accent); }
.section h2 { margin-bottom: 10px; }
.section-dark h2 { color: var(--white); }
.section-intro { font-size: 15px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.65; max-width: 520px; }
.section-dark .section-intro { color: #a8bcd6; }
.container { max-width: 1100px; margin: 0 auto; }

/* ===== PRODUCT GRID ===== */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prod-card {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.prod-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prod-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.prod-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.prod-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.prod-link { font-size: 13px; color: var(--blue-mid); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.prod-link svg { width: 14px; height: 14px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--blue-mid);
  opacity: 0.12;
}
.page-hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; color: var(--blue-accent); text-transform: uppercase; margin-bottom: 10px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-sub { font-size: 16px; color: #a8bcd6; font-weight: 300; max-width: 600px; line-height: 1.65; }
.breadcrumb { font-size: 12px; color: #a8bcd6; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; opacity: 0.7; }
.breadcrumb a { color: var(--blue-accent); }

/* ===== PRODUCT DETAIL ===== */
.prod-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.prod-detail-img { background: var(--blue-pale); border-radius: var(--radius-xl); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 96px; }
.prod-detail-content h2 { margin-bottom: 16px; }
.prod-detail-content p { margin-bottom: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag { background: var(--blue-pale); color: var(--blue-dark); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 20px; border: 1px solid var(--blue-border); }
.cta-box { background: var(--navy); border-radius: var(--radius-lg); padding: 24px; margin-top: 24px; }
.cta-box p { color: #a8bcd6; font-size: 14px; margin-bottom: 16px; }
.cta-box .btn-primary { width: 100%; justify-content: center; }

/* ===== BBQ PAGE ===== */
.bbq-page-img {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--blue-border);
  aspect-ratio: 4/3;
  background: #fff;
}
.bbq-page-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
  margin-top: 20px;
}
.catalog-btn:hover { background: var(--orange-light); }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.brand-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.brand-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(91,156,246,0.25); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: #dce8f9; font-weight: 500; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(91,156,246,0.15); border-radius: var(--radius-lg); padding: 20px; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: var(--blue-accent); line-height: 1; }
.stat-label { font-size: 13px; color: #a8bcd6; margin-top: 4px; }

/* ===== ORARI + CONTATTI ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius-lg); padding: 28px; }
.info-card-dark { background: var(--navy); border: 1px solid rgba(91,156,246,0.2); border-radius: var(--radius-lg); padding: 28px; }
.info-card h3, .info-card-dark h3 { font-size: 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.info-card h3 { color: var(--text-dark); }
.info-card-dark h3 { color: var(--white); }
.info-card-dot { width: 8px; height: 8px; background: var(--blue-accent); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.orari-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--blue-border); font-size: 14px; }
.orari-row:last-child { border-bottom: none; }
.orari-day { color: var(--text-muted); }
.orari-time { font-weight: 500; color: var(--blue-dark); }
.orari-closed { color: #aaa; font-style: italic; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 38px; height: 38px; background: rgba(30,79,160,0.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--blue-accent); font-size: 17px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: #a8bcd6; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-val { font-size: 14px; color: var(--white); font-weight: 500; }

/* ===== MAP ===== */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--blue-border); height: 320px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 40px 32px 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(91,156,246,0.12); margin-bottom: 24px; }
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 10px; display: block; }
.footer-tagline { font-size: 13px; color: #a8bcd6; line-height: 1.6; font-weight: 300; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #a8bcd6; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(168,188,214,0.7); transition: color 0.15s; }
.footer-links a:hover { color: var(--blue-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(91,156,246,0.4); flex-wrap: wrap; gap: 8px; }

/* ===== LIDO PAGE LAYOUT ===== */
.lido-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.lido-main-content h2 { margin: 28px 0 12px; font-size: 22px; }
.lido-main-content h2:first-of-type { margin-top: 0; }
.lido-main-content p { margin-bottom: 14px; color: var(--text-body); line-height: 1.75; }
.lido-main-content ul { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.lido-main-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); line-height: 1.5; }
.lido-main-content ul li::before { content: ''; display: block; width: 7px; height: 7px; background: var(--blue-accent); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.lido-sidebar { position: sticky; top: calc(var(--nav-h) + 16px); }
.lido-sidebar-card { background: var(--navy); border-radius: var(--radius-xl); padding: 28px; margin-bottom: 16px; }
.lido-sidebar-card h3 { font-size: 17px; color: var(--white); margin-bottom: 16px; }
.lido-sidebar-card p { font-size: 13px; color: #a8bcd6; line-height: 1.65; font-weight: 300; margin-bottom: 16px; }
.lido-sidebar-orari { background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius-lg); padding: 20px; }
.lido-sidebar-orari h3 { font-size: 15px; color: var(--text-dark); margin-bottom: 14px; }
.lido-taglist { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.lido-tag { background: rgba(91,156,246,0.15); color: var(--blue-accent); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.05em; }

/* ===== BOMBOLE SIZES WITH ICON ===== */
.lido-bombole-sizes { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.lido-size-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  padding: 12px 10px 8px;
  min-width: 68px;
  transition: border-color 0.15s, transform 0.15s;
}
.lido-size-badge:hover { border-color: var(--blue-mid); transform: translateY(-2px); }
.lido-size-badge-img { width: 36px; height: 44px; object-fit: contain; display: block; }
.lido-size-badge-kg { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.lido-size-badge-unit { font-size: 10px; font-weight: 400; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }

/* ===== BBQ CARD IN LIDO PAGES ===== */
.bbq-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--blue-surface);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin: 28px 0;
}
.bbq-card-img { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--blue-border); width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.bbq-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; display: block; }
.bbq-card-body h3 { font-size: 20px; margin-bottom: 10px; color: var(--text-dark); }
.bbq-card-body p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.bbq-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--blue-accent);
  font-size: 13px; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-md);
  text-decoration: none; transition: background 0.15s;
}
.bbq-card-link:hover { background: var(--blue-dark); }
.bbq-card-link svg { width: 14px; height: 14px; flex-shrink: 0; }

.lido-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.lido-other-card { background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius-md); padding: 14px 12px; text-align: center; text-decoration: none; transition: border-color 0.15s, transform 0.15s; display: block; }
.lido-other-card:hover { border-color: var(--blue-mid); transform: translateY(-2px); }
.lido-other-card-icon { font-size: 22px; margin-bottom: 6px; }
.lido-other-card-name { font-size: 11px; font-weight: 600; color: var(--text-dark); }

/* ===== MOBILE FLOATING BUTTONS ===== */
.mobile-float-btns {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0; right: 0;
  z-index: 999;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.mobile-float-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 0.15s;
}
.mobile-float-btn:active { transform: scale(0.92); }
.mobile-float-btn-call { background: var(--blue-mid); color: var(--white); }
.mobile-float-btn-wa   { background: #25D366;       color: var(--white); }
.mobile-float-btn svg  { width: 26px; height: 26px; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .topbar { display: none; }
  :root { --topbar-h: 0px; }
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 48px 20px; min-height: auto; text-align: center; }
  .hero::before, .hero::after { display: none; }
  .hero-sub { max-width: 100%; margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-visual-card { max-width: 320px; margin: 0 auto; text-align: left; }

  .section { padding: 48px 20px; }
  .video-section { padding: 48px 20px; }
  .slider-section { padding: 48px 20px; }
  .strip { padding: 12px 20px; }

  .prod-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .prod-detail-grid { grid-template-columns: 1fr; }
  .prod-detail-img { max-width: 280px; margin: 0 auto; }
  .lido-layout { grid-template-columns: 1fr; }
  .lido-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 40px 20px; }

  .bbq-card { grid-template-columns: 1fr; gap: 20px; }
  .bbq-card-img { max-width: 200px; margin: 0 auto; }
  .bbq-card-link { width: 100%; justify-content: center; }

  .mobile-float-btns { display: flex; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .lido-other-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-float-btns { bottom: 14px; padding: 0 12px; }
  .mobile-float-btn { width: 56px; height: 56px; }
}
/* footer logo already defined above */

/* ===== BOMBOLE PAGE RESPONSIVE ===== */
@media (max-width: 900px) {
  /* layout 2 colonne → 1 colonna */
  .section > div[style*="grid-template-columns:1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
  /* griglia bombole 3 col → 2 col */
  .section div[style*="repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 420px) {
  /* griglia bombole → 3 col piccola su telefoni stretti */
  .section div[style*="repeat(3,1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ===== 3-COL INFO GRID RESPONSIVE ===== */
@media (max-width: 900px) {
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
