/* ============================================================
   MAGAZZINI RUBINO · Design System v2
   Font: Playfair Display (display/headings) · DM Sans (body)
   Palette: oklch, ruby · cream · ink
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --ruby:       oklch(38% 0.19 15);
  --ruby-light: oklch(50% 0.19 15);
  --ruby-pale:  oklch(93% 0.04 15);
  --cream:      oklch(97% 0.012 65);
  --cream-dark: oklch(93% 0.015 60);
  --ink:        oklch(13% 0.02 30);
  --ink-mid:    oklch(40% 0.015 30);
  --ink-light:  oklch(65% 0.01 30);
  --terra:      oklch(62% 0.10 55);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --header-h:  72px;
  --radius:    4px;
  --transition: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Dark mode */
body.dark {
  --cream:      oklch(10% 0.015 30);
  --cream-dark: oklch(14% 0.018 30);
  --ink:        oklch(94% 0.01 60);
  --ink-mid:    oklch(75% 0.01 60);
  --ink-light:  oklch(55% 0.01 60);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--header-h);
  background: var(--cream);
  border-bottom: 1px solid oklch(88% 0.01 60);
  transition: background 0.3s, box-shadow 0.3s;
}
body.dark .nav { border-bottom-color: oklch(20% 0.015 30); }
.nav.scrolled  { box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08); }

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}
.nav-logo-top {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.nav-logo-main {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ruby);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-mid);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ruby); }

/* ── LANGUAGE DROPDOWN (desktop) ───────────────────────── */
.nav-lang { display: flex; align-items: center; margin-left: auto; }

.lang-dropdown-wrap { position: relative; }

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border: 1px solid oklch(80% 0.01 60);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-dropdown-btn:hover {
  border-color: var(--ruby);
  color: var(--ruby);
}
.lang-dropdown-btn svg { flex-shrink: 0; }
.lang-dropdown-btn[aria-expanded="true"] { border-color: var(--ruby); color: var(--ruby); }
.lang-dropdown-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-chevron { transition: transform var(--transition); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 148px;
  background: var(--cream);
  border: 1px solid oklch(85% 0.01 60);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08);
  list-style: none;
  padding: 4px 0;
  z-index: 200;
}
body.dark .lang-menu {
  background: oklch(18% 0.015 30);
  border-color: oklch(28% 0.015 30);
}
.lang-menu.open { display: block; }

.lang-option {
  display: block;
  width: 100%;
  padding: 8px 14px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lang-option:hover { background: oklch(93% 0.01 60); color: var(--ink); }
.lang-option.active { color: var(--ruby); font-weight: 600; }
body.dark .lang-option:hover { background: oklch(24% 0.015 30); }

/* ── LANGUAGE BUTTONS (mobile only, .nav-mobile-lang) ───── */
.lang-btn {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border: 1px solid oklch(80% 0.01 60);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--ruby);
  color: white;
  border-color: var(--ruby);
}

/* ── DIVIDER (between lang dropdown and WhatsApp) ─────────── */
.nav-divider {
  width: 1px;
  height: 20px;
  background: oklch(82% 0.01 60);
  margin: 0 12px;
  flex-shrink: 0;
}
body.dark .nav-divider { background: oklch(30% 0.015 30); }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--ruby) !important;
  color: white !important;
  border-radius: var(--radius);
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform 0.15s !important;
  white-space: nowrap;
}
.nav-whatsapp:hover {
  background: var(--ruby-light) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* ── HAMBURGER ──────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.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); }

/* ── MOBILE NAV ─────────────────────────────────────────── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid oklch(88% 0.01 60);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 12px 0;
  border-bottom: 1px solid oklch(90% 0.01 60);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-mobile-menu a:hover { color: var(--ruby); }
.nav-mobile-wa {
  margin-top: 12px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 20px !important;
  background: var(--ruby) !important;
  color: white !important;
  border-radius: var(--radius);
  justify-content: center;
  border-bottom: none !important;
  font-size: 13px !important;
}
.nav-mobile-lang {
  display: flex;
  gap: 6px;
  padding-top: 12px;
  flex-wrap: wrap;
}

/* ── HERO (Homepage) ────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  margin-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, oklch(0% 0 0 / 0.15) 0%, oklch(0% 0 0 / 0.65) 100%),
    repeating-linear-gradient(
      45deg,
      oklch(15% 0.04 30) 0px,
      oklch(15% 0.04 30) 1px,
      transparent 1px,
      transparent 32px
    );
  background-size: cover, 45px 45px;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, oklch(0% 0 0 / 0.2) 0%, oklch(0% 0 0 / 0.72) 70%),
    url('../images/negozio-interno.jpg') center/cover no-repeat;
  opacity: 0;
  animation: heroFadeIn 1.2s 0.3s forwards;
}
@keyframes heroFadeIn { to { opacity: 1; } }

.hero-year {
  position: absolute;
  top: 48px; right: 52px;
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  color: oklch(100% 0 0 / 0.05);
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 56px;
  max-width: 760px;
  animation: heroSlideUp 0.9s 0.5s both;
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f5ebe0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: '★';
  font-size: 10px;
  color: var(--ruby);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 28px;
}
.hero-title em { font-style: normal; color: var(--ruby-light); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: oklch(90% 0 0 / 0.85);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  margin-top: var(--header-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0% 0 0 / 0.15) 0%, oklch(0% 0 0 / 0.72) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  color: white;
}
.page-hero-breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(70% 0 0);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a { opacity: 0.7; }
.page-hero-breadcrumb a:hover { opacity: 1; }
.page-hero-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-hero-title em { font-style: normal; color: #b03050; color: var(--ruby-light); }
.page-hero-sub {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.8;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ruby);
  color: white;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform 0.15s;
}
.btn-primary:hover { background: var(--ruby-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid oklch(100% 0 0 / 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: white; background: oklch(100% 0 0 / 0.08); }

.btn-store-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 10px 16px;
  background: var(--ruby);
  color: white;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-store-primary:hover { background: var(--ruby-light); }

.btn-store-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid oklch(82% 0.01 60);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-store-outline:hover { border-color: var(--ruby); color: var(--ruby); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: oklch(55% 0.18 145);
  color: white;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform 0.15s;
}
.wa-btn:hover { background: oklch(62% 0.2 145); transform: translateY(-2px); }

/* ── SECTION COMMON ─────────────────────────────────────── */
.section     { padding: 100px 56px; }
.section-sm  { padding: 64px 56px; }
.section-xs  { padding: 32px 56px; }

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ruby);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ruby);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: #7a1525; color: var(--ruby); }

.section-body {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px;
}

/* ── STORE CARDS + MAPS COMBINED GRID ──────────────────── */
.stores-maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
/* Desktop: col 1 = negozio 1 (card + mappa), col 2 = negozio 2 (card + mappa) */
.stores-maps-grid > :nth-child(1) { grid-column: 1; grid-row: 1; }
.stores-maps-grid > :nth-child(2) { grid-column: 1; grid-row: 2; }
.stores-maps-grid > :nth-child(3) { grid-column: 2; grid-row: 1; }
.stores-maps-grid > :nth-child(4) { grid-column: 2; grid-row: 2; }

.store-card {
  border: 1px solid oklch(88% 0.01 60);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: transform var(--transition), box-shadow var(--transition);
}
body.dark .store-card {
  background: var(--cream-dark);
  border-color: oklch(22% 0.015 30);
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px oklch(0% 0 0 / 0.1);
}

.store-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.store-card:hover .store-img img { transform: scale(1.04); }

.store-body { padding: 28px 30px; }

.store-number {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ruby);
  margin-bottom: 8px;
}
.store-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.store-info {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 4px;
}
.store-phone {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ruby);
  margin: 14px 0;
  text-decoration: none;
  transition: color var(--transition);
}
.store-phone:hover { color: var(--ruby-light); }

.store-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 13px;
  margin-bottom: 20px;
}
.store-hours dt { font-weight: 500; color: var(--ink); }
.store-hours dd { color: var(--ink-mid); }

.store-actions { display: flex; gap: 10px; }

/* ── MAPS ───────────────────────────────────────────────── */
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid oklch(88% 0.01 60);
  background: white;
}
body.dark .map-card {
  background: var(--cream-dark);
  border-color: oklch(22% 0.015 30);
}

.map-embed {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
  filter: grayscale(15%);
}
.map-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream-dark);
  color: var(--ink-light);
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
}
.map-placeholder:hover { background: oklch(90% 0.01 60); }

.map-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.map-addr { font-size: 12px; color: var(--ink-light); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--ruby);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.map-link:hover { background: var(--ruby-light); }

/* ── OFFER CARDS ────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.offer-card {
  background: white;
  border: 1px solid oklch(90% 0.008 60);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
body.dark .offer-card {
  background: var(--cream-dark);
  border-color: oklch(22% 0.015 30);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px oklch(0% 0 0 / 0.1);
}

.offer-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.offer-card:hover .offer-img img { transform: scale(1.05); }
.offer-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-light);
  font-size: 12px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    oklch(85% 0.008 60 / 0.4) 8px,
    oklch(85% 0.008 60 / 0.4) 9px
  );
}

.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ruby);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.offer-body { padding: 20px 22px 24px; }

.offer-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.offer-name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.offer-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 16px;
}
.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.offer-price {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ruby);
}
.offer-price-old {
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: line-through;
}
.offer-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ruby);
  text-decoration: none;
  border-bottom: 1px solid var(--ruby-pale);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color var(--transition);
}
.offer-cta:hover { border-color: var(--ruby); }

/* ── WHATSAPP SECTION ───────────────────────────────────── */
.wa-section {
  background: var(--cream-dark);
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
body.dark .wa-section { background: var(--cream-dark); }

.wa-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.wa-title span { color: #7a1525; color: var(--ruby); }

.wa-body {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.wa-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.wa-info-item {
  padding: 28px;
  background: white;
  border: 1px solid oklch(88% 0.01 60);
}
body.dark .wa-info-item { background: oklch(13% 0.02 30); }

.wa-info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.wa-info-value {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.wa-info-value.highlight { color: var(--ruby); }

/* ── CHI SIAMO ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-quote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--ruby);
  background: var(--ruby-pale);
  font-family: var(--f-display);
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
body.dark .about-quote { background: oklch(18% 0.04 15); }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img {
  border-radius: 3px;
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 3/4;
}
.about-img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── KPI BAR ────────────────────────────────────────────── */
.kpi-bar {
  background: var(--ruby);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.kpi-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid oklch(100% 0 0 / 0.15);
}
.kpi-item:last-child { border-right: none; }
.kpi-stat {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.kpi-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(100% 0 0 / 0.7);
}

/* ── VALUES GRID ────────────────────────────────────────── */
.values-section { padding: 32px 0 0; }
.values-label   { padding: 0 56px 20px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-item {
  padding: 40px 32px;
  background: var(--cream-dark);
  text-align: center;
  transition: background var(--transition);
}
.value-item:hover { background: var(--ruby-pale); }
body.dark .value-item { background: var(--cream-dark); }
body.dark .value-item:hover { background: oklch(18% 0.04 15); }

.value-icon  { font-size: 36px; margin-bottom: 16px; line-height: 1; display: block; }
.value-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.65; }

/* ── OFFERTE PAGE ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid oklch(82% 0.01 60);
  background: white;
  color: var(--ink-mid);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ruby);
  color: white;
  border-color: var(--ruby);
}

.offers-callout {
  margin-top: 60px;
  padding: 32px 40px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.offers-callout-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.offers-callout-sub { font-size: 14px; color: var(--ink-mid); }

/* ── CONTATTI PAGE ──────────────────────────────────────── */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
.contatti-card {
  border: 1px solid oklch(88% 0.01 60);
  border-radius: var(--radius);
  padding: 36px;
  background: white;
}
body.dark .contatti-card {
  background: var(--cream-dark);
  border-color: oklch(22% 0.015 30);
}
.contatti-wa-cta {
  margin-top: 32px;
  padding: 36px 40px;
  background: var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contatti-wa-title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-style: italic;
  margin-bottom: 8px;
}
.contatti-wa-title em { font-style: normal; color: #b03050; color: var(--ruby-light); }
.contatti-wa-sub { font-size: 14px; color: oklch(70% 0 0); line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 64px 56px 40px;
  color: oklch(65% 0 0);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 52px; width: auto; }
.footer-tagline { font-size: 13px; line-height: 1.65; max-width: 280px; }

.footer-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: oklch(45% 0 0);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: oklch(65% 0 0);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-piva { margin-top: 24px; font-size: 12px; color: oklch(45% 0 0); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid oklch(20% 0 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: oklch(10% 0.015 30 / 0.97);
  color: rgba(255,255,255,0.88);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden  { display: none; }
.cookie-banner p { font-size: 0.85rem; line-height: 1.5; flex: 1; min-width: 220px; }
.cookie-banner a { color: oklch(60% 0.19 15); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}
.cookie-btn-accept { background: var(--ruby); color: white; }
.cookie-btn-accept:hover { background: var(--ruby-light); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  background: oklch(55% 0.18 145);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px oklch(55% 0.18 145 / 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.whatsapp-float .tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .tooltip { opacity: 1; }

/* ── SKELETON ───────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 3px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── UTILITIES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── MEDIA QUERIES ──────────────────────────────────────── */
@media (max-width: 860px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-lang  { display: none; }
  .nav-hamburger { display: flex; }

  .section     { padding: 64px 24px; }
  .section-sm  { padding: 48px 24px; }
  .section-xs  { padding: 24px 24px; }
  .hero-content    { padding: 40px 28px; }
  .page-hero-content { padding: 36px 28px; }
  .wa-section  { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .footer      { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-label { padding: 0 24px 20px; }
  .values-section { padding: 32px 0 0; }

  /* Mobile: colonna singola, ordine naturale = card1, mappa1, card2, mappa2 */
  .stores-maps-grid {
    grid-template-columns: 1fr;
  }
  .stores-maps-grid > :nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .kpi-bar     { grid-template-columns: 1fr 1fr; }
  .kpi-item    { border-right: none; border-bottom: 1px solid oklch(100% 0 0 / 0.15); }
  .kpi-item:nth-child(odd) { border-right: 1px solid oklch(100% 0 0 / 0.15); }
  .kpi-item:nth-child(3),
  .kpi-item:nth-child(4) { border-bottom: none; }
  .contatti-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-title  { font-size: clamp(40px, 12vw, 72px); }
  .hero-actions { flex-direction: column; }
  .offers-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .wa-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .kpi-bar { grid-template-columns: 1fr 1fr; }
}
