/* =========================================================
   BANGLA BAZAR — MASTER CSS
   Versione consolidata e deduplicata
========================================================= */

/* =========================================================
   1. BASE E COLORI
========================================================= */
:root {
  --green: #0a6b2e;
  --green-dark: #08591d;
  --green-soft: #e8f2ec;
  --red: #d4322b;
  --red-dark: #a8231d;
  --cream: #fbf6ec;
  --cream-2: #f6efde;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --radius: 20px;
  --container: 1280px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--ink); background: #fff; line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--green); margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin: 0 auto 40px; }

section { padding: 80px 0; }
.bg-cream { background: var(--cream); padding: 80px 0; }

.ico-emoji { display: inline-block; transform: translateY(1px); }

html { zoom: 0.9; }

/* =========================================================
   2. HEADER
========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.06); }

.site-header-top {
  display: flex; justify-content: center; align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
}

.brand-seal { display: inline-flex; align-items: center; gap: 10px; }
.seal-ring {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-soft); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.seal-leaf { font-size: 1.15rem; display: inline-block; animation: dondolio 3s infinite ease-in-out; }
@keyframes dondolio { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(15deg); } }
.brand-text-block { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--green-dark); letter-spacing: .3px; }
.brand-sub { font-weight: 700; font-size: .65rem; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; }

.site-nav { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.site-nav ul { list-style: none; display: flex; justify-content: center; margin: 0; padding: 0; gap: 4px; }
.site-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 14px;
  font-weight: 700; font-size: .95rem; color: var(--green-dark);
  opacity: .8; position: relative;
  transition: opacity .2s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a.active { opacity: 1; }
.site-nav a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2.5px; background: var(--green); border-radius: 2px;
}
@media (hover: none) { .site-nav a:active { opacity: .6; } }
@media (max-width: 380px) {
  .brand-sub { display: none; }
  .site-nav a { padding: 0 10px; font-size: .85rem; }
}

.logo {
  display: inline-flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 2px solid var(--green); border-radius: 16px;
  padding: 12px 28px; line-height: 1.2;
  box-shadow: 0 8px 24px rgba(10,107,46,.15);
  transition: transform .3s ease;
}
.logo:hover { transform: translateY(-2px); }
.logo .bn { color: var(--green); font-size: .8rem; font-weight: 600; margin-bottom: 4px; }
.logo .nm { color: var(--green); font-weight: 900; font-size: 1.25rem; letter-spacing: 1px; }
.logo .sub { color: var(--red); font-weight: 700; font-size: .7rem; letter-spacing: 1.5px; margin-top: 4px; }
.foot-logo { background: #fff; }

/* =========================================================
   3. HERO
========================================================= */
.hero { background: var(--cream); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; padding: 80px 24px; }
.hero .open-pill { display: none !important; }

.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(10, 107, 46, 0.15); border-radius: 50px; padding: 8px 18px; font-size: .85rem; font-weight: 700; color: var(--green); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease; margin-bottom: 24px; }
.chip:hover { transform: translateY(-2px); }
.hero h1 { line-height: 1.1; margin-bottom: 16px; }
.hero h1 .red { color: var(--red); }
.hero p { color: #4b5563; max-width: 520px; font-size: 1.1rem; line-height: 1.7; margin-bottom: 24px; }

.hero-greeting { font-size: 1rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.hero-greeting span { color: var(--green-dark); font-weight: 800; }

.bn-title {
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--red);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 4px 0 10px;
  letter-spacing: .5px;
}
.loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--green-dark); background: var(--green-soft);
  padding: 6px 14px; border-radius: 50px; font-size: .85rem;
  letter-spacing: 1px; margin: 16px 0 20px;
}

.google-rating-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); border: 1px solid rgba(10,107,46,.15);
  border-radius: 50px; padding: 9px 18px;
  font-size: .88rem; font-weight: 700; color: var(--green-dark);
  margin: 14px 0 22px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.google-rating-chip:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(10,107,46,.12); }
.grc-stars { color: #f5a623; letter-spacing: 1px; }
@media (hover: none) { .google-rating-chip:active { transform: scale(.97); transition: transform .12s ease; } }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(10, 107, 46, 0.25); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(10, 107, 46, 0.35); }
.btn-outline { background: #fff; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green-soft); transform: translateY(-3px); }

.hero-img { position: relative; border-radius: 24px; overflow: visible; }
.hero-img img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
.halal-badge { position: absolute; bottom: -20px; right: -20px; background: #fff; border-radius: 50%; width: 130px; height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: .75rem; font-weight: 800; color: var(--green); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); transition: transform 0.4s ease; }
.hero-img:hover .halal-badge { transform: scale(1.05) rotate(-5deg); }
.halal-badge .ar { font-size: 1.6rem; color: var(--red); font-family: 'Amiri', serif; margin: 2px 0; }

.tick { list-style: none; margin: 18px 0 0; padding: 0; }
.tick li { position: relative; padding-left: 36px; margin-bottom: 16px; font-size: 1.05rem; color: #444; text-align: left; }
.tick li:before { content: "✓"; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: .85rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* =========================================================
   4. STORE INFO BAR
========================================================= */
.store-info-bar {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 30px 0;
  overflow: hidden;
}
.store-info-bar::before {
  content: ''; position: absolute; top: -70px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.store-info-bar::after {
  content: ''; position: absolute; bottom: -90px; left: 8%;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.store-info-bar .container {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px 48px;
}

.info-group { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.info-item {
  color: inherit; font-weight: 600; font-size: .98rem; line-height: 1.45;
  display: flex; align-items: flex-start; gap: 6px; text-align: left;
}
.store-info-bar .info-item { color: #fff; }
.store-info-bar .copy-target::after { display: none !important; }

.social-icons { display: inline-flex; align-items: center; gap: 10px; }
.store-info-bar .social-icons { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.25); }
.social-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255, 255, 255, 0.15); color: #fff; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.3); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(8px); }
.social-btn:hover { transform: translateY(-4px) scale(1.05); background: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.social-btn.fb:hover { color: #1877F2; border-color: #1877F2; }
.social-btn.insta:hover { color: #E1306C; border-color: #E1306C; }
.store-info-bar .social-btn { width: 38px; height: 38px; }

.action-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.open-pill { display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line); border-radius:999px; padding:11px 18px; min-height:44px; font-weight:700; font-size:.9rem; color:var(--green); }
.open-pill .dot { width:9px; height:9px; border-radius:50%; background:#16a34a; box-shadow:0 0 0 4px rgba(22,163,74,.15); }
.open-pill.closed { color:var(--red); }
.open-pill.closed .dot { background:var(--red); box-shadow:0 0 0 4px rgba(212,50,43,.15); }
.store-info-bar .open-pill {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.3); box-shadow: none;
  padding: 12px 20px; font-size: .88rem; white-space: nowrap;
}
.store-info-bar .open-pill .dot { box-shadow: 0 0 0 4px rgba(255,255,255,.18); }

.btn-directions {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--green-dark); border: none;
  border-radius: 999px;
  font-weight: 800; padding: 12px 22px; min-height: 44px;
  white-space: nowrap; text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .25s ease, background .25s ease;
}
.btn-directions:hover { background: var(--cream); transform: translateY(-2px); }

@media (max-width: 640px) {
  .store-info-bar { padding: 26px 0; }
  .store-info-bar .container { flex-direction: column; align-items: stretch; gap: 18px; }

  .info-group { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
  .info-item { font-size: .92rem; }
  .store-info-bar .social-icons { padding-left: 0; border-left: none; }

  .action-group { width: 100%; }
  .store-info-bar .open-pill,
  .action-group .btn-directions { flex: 1; justify-content: center; }
}
@media (max-width: 420px) {
  .action-group { flex-direction: column; }
  .store-info-bar .open-pill,
  .action-group .btn-directions { width: 100%; }
}
@media (hover: none) {
  .btn-directions:active, .social-btn:active { transform: scale(.96); transition: transform .12s ease; }
}

/* =========================================================
   5. STATISTICHE
========================================================= */
.stats-section { padding-top: 32px; padding-bottom: 32px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin: 0 auto;
}
.stat { background: #fff; border: 1px solid rgba(10,107,46,0.1); border-radius: var(--radius); padding: 32px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,107,46,0.08); border-color: var(--green); }
.stat b { display: block; font-family: 'Poppins', sans-serif; font-size: 2.4rem; color: var(--green); line-height: 1; margin-bottom: 8px;}
.stat span { font-size: 1rem; color: var(--muted); font-weight: 500; }

@media (max-width: 640px) {
  .stats-section { padding-top: 20px; padding-bottom: 20px; }
  .stats { margin: 0; gap: 14px; padding: 0 4px; }
}

/* =========================================================
   6. LA NOSTRA STORIA
========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-top: 24px; padding-bottom: 24px; }
.story-image-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.08); width: 100%; margin: 0 auto; }
.story-image-wrap img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
.story-text-wrap { display: flex; flex-direction: column; justify-content: center; }

/* =========================================================
   7. SERVIZI & DIPARTIMENTI
========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: var(--container); margin: 0 auto; padding-bottom: 16px; }
.why { background: #fff; border: 1px solid rgba(10, 107, 46, 0.08); border-radius: 20px; padding: 40px 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.why::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.why:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 107, 46, 0.08); border-color: rgba(10, 107, 46, 0.2); }
.why:hover::before { transform: scaleX(1); }
.why .ico { width: 64px; height: 64px; background: var(--cream-2); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid #fff; transform: rotate(-4deg); transition: all 0.4s ease; }
.why:hover .ico { transform: rotate(5deg) scale(1.1); background: var(--green-soft); }
.why .tag { display: inline-block; background: rgba(212, 50, 43, 0.08); color: var(--red); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.why h3 { font-size: 1.45rem; color: var(--green-dark); margin: 0 0 12px 0; line-height: 1.2; }
.why p { color: #555; font-size: 1.05rem; line-height: 1.6; margin: 0; }
.why, .post-card { overflow: hidden; }
.why img, .post-card img { transition: transform 0.5s ease; }
.why:hover img, .post-card:hover img { transform: scale(1.05); }

.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 16px; }
.dept { background: #fff; border: 1px solid rgba(10,107,46,0.1); border-radius: 20px; padding: 32px 24px; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.02); }
.dept:hover { background: var(--green-soft); transform: translateY(-6px); border-color: var(--green); box-shadow: 0 12px 32px rgba(10,107,46,0.08); }
.dept h4 { color: var(--green-dark); font-size: 1.2rem; margin-bottom: 12px; }
.dept p { color: #555; font-size: 1rem; margin: 0; line-height: 1.5; }

@media (max-width: 900px) {
  .dept-grid {
    display: flex; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .dept-grid::-webkit-scrollbar { display: none; }
  .dept { flex: 0 0 78%; scroll-snap-align: start; }
}
@media (min-width: 480px) and (max-width: 900px) {
  .dept { flex: 0 0 45%; }
}

@media (max-width: 640px) {
  .why-grid { gap: 16px; }
  .why { flex-direction: row; flex-wrap: wrap; align-items: center; padding: 22px 20px; gap: 8px 12px; }
  .why::before { display: none; }
  .why .ico { width: 44px; height: 44px; font-size: 1.4rem; margin-bottom: 0; order: 1; flex-shrink: 0; }
  .why .tag { order: 2; margin-bottom: 0; font-size: .68rem; padding: 5px 10px; }
  .why h3 { order: 3; flex: 0 0 100%; font-size: 1.15rem; margin: 2px 0 2px; }
  .why p { order: 4; flex: 0 0 100%; font-size: .92rem; line-height: 1.5; margin: 0; }
}

/* =========================================================
   8. TEASER REPARTI (Home)
========================================================= */
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.teaser-card {
  background: #fff; border: 1px solid rgba(10,107,46,.08); border-radius: 18px;
  padding: 24px 12px; text-align: center; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
  transition: transform .3s ease, box-shadow .3s ease;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(10,107,46,.08); }
.tc-ico { font-size: 2rem; display: block; margin-bottom: 10px; }
.teaser-card h4 { margin: 0; font-size: .95rem; color: var(--green-dark); }
@media (max-width: 640px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (hover: none) { .teaser-card:active { transform: scale(0.97); opacity: 0.85; transition: transform .12s ease, opacity .12s ease; } }

/* =========================================================
   9. FASCIA DI FIDUCIA (Home)
========================================================= */
.trust-strip { background: #fff; padding: 24px 0; border-bottom: 1px solid var(--line); }
.trust-track {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.trust-track::-webkit-scrollbar { display: none; }
.trust-item {
  flex: 0 0 auto; scroll-snap-align: start;
  display: flex; align-items: center; gap: 8px;
  background: var(--cream-2); border: 1px solid rgba(10,107,46,.1);
  padding: 10px 16px; border-radius: 50px;
  font-weight: 600; font-size: .85rem; color: var(--green-dark);
  white-space: nowrap;
}
.ti-ico { font-size: 1rem; }
@media (min-width: 900px) { .trust-track { flex-wrap: wrap; justify-content: center; overflow: visible; } }

/* =========================================================
   10. VISIT & MAPPA & SOCIAL
========================================================= */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 12px; }
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; margin-bottom: 0; }

/* Mappa: contenitore con posizione stabilita, il contenuto (mappa vera o fallback) riempie sempre tutto lo spazio */
.map-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 32px rgba(0,0,0,0.08); border: none; height: 100%; min-height: 400px; }
.map-wrap .gmap-embed { position: absolute; inset: 0; }
.map-wrap iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; }

.info-stack { display: flex; flex-direction: column; gap: 24px; }
.info-card { background: #fff; border: 1px solid rgba(10, 107, 46, 0.08); border-radius: 20px; padding: 32px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10, 107, 46, 0.08); }
.info-card h3 { margin-top: 0; margin-bottom: 18px; font-size: 1.4rem; color: var(--green-dark); text-align: center; }
.info-card .open-pill { margin-left: auto; margin-right: auto; width: fit-content; display: flex; }
.info-card .cta-row { justify-content: center; }

.mini-card { padding: 26px 32px; background: linear-gradient(145deg, #fff, var(--cream-2)); border: 2px solid var(--green-soft); }
.brand-box strong { display: block; font-size: 1.1rem; color: var(--green); margin-bottom: 8px; }
.brand-box p { font-size: 0.95rem; color: #555; margin: 0 0 16px 0; line-height: 1.5; }

.hours { width: 100%; border-collapse: collapse; font-size: 1.05rem; color: #444; }
.hours td { padding: 14px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.hours tr.today td { color: var(--green-dark); font-weight: 800; background: var(--green-soft); border-bottom: none; }
.hours tr.today td:first-child { border-top-left-radius: 12px; border-bottom-left-radius: 12px; padding-left: 16px; }
.hours tr.today td:last-child { border-top-right-radius: 12px; border-bottom-right-radius: 12px; padding-right: 16px; }
.hours tr:has(+ tr.today) td { border-bottom: none; }

.info-list { list-style: none; margin: 0; padding: 0; font-size: 1rem; color: #444; }
.info-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--line); align-items: flex-start; line-height: 1.4; }
.info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.info-list .k { width: 28px; flex: none; font-size: 1.3rem; text-align: center; }

.social-list li { padding: 0; border-bottom: 1px dashed var(--line); }
.social-list li:last-child { border-bottom: none; }
.social-row { display: flex; gap: 16px; align-items: center; padding: 12px 0; text-decoration: none; color: var(--ink); transition: transform 0.2s ease, color 0.2s ease; }
.social-row:hover { transform: translateX(6px); color: var(--green-dark); }
.social-row .k { background: #fff; border: 1px solid var(--line); border-radius: 50%; width: 38px; height: 38px; display: flex; justify-content: center; align-items: center; color: var(--green); transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.social-row:hover .insta { background: #E1306C; color: #fff; border-color: #E1306C; }
.social-row:hover .fb { background: #1877F2; color: #fff; border-color: #1877F2; }
.social-name { font-weight: 600; font-size: 0.95rem; }

/* Fallback mappa (quando l'utente ha scelto "Solo necessari") */
.gmap-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: var(--cream-2); padding: 24px; text-align: center;
}
.gmap-fallback-ico { font-size: 1.8rem; }
.gmap-fallback-text { font-size: .9rem; color: var(--muted); margin: 0; max-width: 320px; }
.gmap-fallback-link { font-weight: 700; color: var(--green); text-decoration: underline; font-size: .95rem; }

/* =========================================================
   11. RECENSIONI GOOGLE
========================================================= */
.reviews-score { text-align: center; margin-bottom: 40px; }
.score-number { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.score-stars { color: #f5a623; font-size: 1.4rem; letter-spacing: 2px; margin: 6px 0; }
.score-count { color: var(--muted); font-weight: 600; }

.reviews-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 280px; scroll-snap-align: start;
  background: #fff; border: 1px solid rgba(10,107,46,.08);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  display: flex; flex-direction: column; gap: 12px;
}
.rc-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.review-card p { color: #444; font-size: .95rem; line-height: 1.55; margin: 0; flex-grow: 1; }
.rc-author { font-weight: 700; color: var(--green-dark); font-size: .85rem; }

@media (min-width: 900px) {
  .reviews-track { flex-wrap: wrap; justify-content: center; overflow: visible; }
  .review-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (hover: none) { .review-card:active { transform: scale(0.98); transition: transform .12s ease; } }

/* =========================================================
   12. FAQ
========================================================= */
.faq details { background: #fff; border: 1px solid rgba(10, 107, 46, 0.1); border-radius: 16px; padding: 20px 24px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: all 0.3s ease; }
.faq details:hover { box-shadow: 0 8px 24px rgba(10,107,46,0.06); border-color: rgba(10,107,46,0.2); }
.faq summary { font-size: 1.15rem; color: var(--green-dark); font-weight: 700; outline: none; cursor: pointer; list-style: none;}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "＋"; float: right; color: var(--green); font-size: 1.2rem; transition: transform 0.3s; }
.faq details[open] summary:after { content: "−"; transform: rotate(180deg); }
.faq p { color: #555; line-height: 1.6; margin-top: 16px; font-size: 1.05rem; }

/* =========================================================
   13. BLOG
========================================================= */
.page-head { background: linear-gradient(135deg, var(--cream-2), var(--cream)); padding: 80px 24px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.03); }
.page-head h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--green-dark); margin-bottom: 12px; line-height: 1.1; }
.page-head .lead { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

.blog-list-section { padding: 64px 0 96px; background: #fff; }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: #fff; border: 1px solid rgba(10, 107, 46, 0.08); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.04); transition: all 0.4s ease; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.post-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 107, 46, 0.08); border-color: rgba(10, 107, 46, 0.2); }
.post-img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.post-card:hover .post-img img { transform: scale(1.06); }
.post-body { padding: 32px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.post-date { color: var(--green); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.post-card h3 { margin: 0 0 12px 0; font-size: 1.35rem; color: var(--green-dark); line-height: 1.3; }
.post-card p { color: #555; font-size: 1.05rem; line-height: 1.6; margin: 0 0 24px 0; flex-grow: 1; }
.read-more { font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.read-more span { transition: transform 0.3s ease; }
.post-card:hover .read-more span { transform: translateX(6px); }

@media (max-width: 900px) {
  .posts-scroll {
    display: flex; gap: 20px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .posts-scroll::-webkit-scrollbar { display: none; }
  .posts-scroll .post-card { flex: 0 0 82%; scroll-snap-align: start; }
}
@media (min-width: 480px) and (max-width: 900px) {
  .posts-scroll .post-card { flex: 0 0 60%; }
}

.reading-progress-bar {
  position: fixed; top: 0; left: 0; height: 5px;
  background: var(--green); width: 100%;
  transform: scaleX(0); transform-origin: left;
  z-index: 9999;
  border-top-right-radius: 5px; border-bottom-right-radius: 5px;
  box-shadow: 0 1px 5px rgba(10, 107, 46, 0.4);
  will-change: transform;
}
.blog-article-section { padding: 64px 0 96px; background: #fff; }
.article-container { max-width: 840px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; text-decoration: none; margin-bottom: 40px; transition: color 0.3s ease; }
.back-link span { transition: transform 0.3s ease; }
.back-link:hover { color: var(--green); }
.back-link:hover span { transform: translateX(-4px); }
.article-header { text-align: center; margin-bottom: 48px; }
.post-meta { display: inline-block; color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 16px; }
.article-header h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--green-dark); line-height: 1.2; margin: 0; }
.article-hero { margin-bottom: 56px; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.article-hero img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body { font-size: 1.15rem; line-height: 1.8; color: #444; }
.article-body p { margin-bottom: 24px; }
.article-body h3 { font-size: 1.8rem; color: var(--green-dark); margin: 48px 0 20px; }
.lead-paragraph { font-size: 1.3rem; color: var(--green-dark); font-weight: 500; line-height: 1.6; margin-bottom: 40px; }

.article-actions { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); text-align: center; }
.share-title { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 24px; }
.share-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; min-height: 44px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; color: #fff; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; }
.share-btn:hover { transform: translateY(-3px); }
.share-btn.wa { background: #25D366; box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3); }
.share-btn.fb { background: #1877F2; box-shadow: 0 6px 16px rgba(24, 119, 242, 0.3); }
.share-btn.print { background: var(--ink); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); }
.share-btn.bookmark { background: var(--red); box-shadow: 0 6px 16px rgba(212, 50, 43, 0.3); }
.share-btn.bookmark.saved { background: var(--green-dark); box-shadow: 0 6px 16px rgba(10, 107, 46, 0.3); }

.read-next-section { padding: 64px 0; border-top: 1px solid var(--line); }
.read-next-title { font-size: 1.6rem; color: var(--green-dark); margin-bottom: 32px; }
.read-next-section .posts { grid-template-columns: repeat(2, 1fr); }

.meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.meta-row .post-meta { margin-bottom: 0; }
.meta-divider { color: var(--muted); font-size: 1.2rem; line-height: 1; opacity: 0.5; }
.reading-time {
  display: inline-flex; align-items: center;
  background: var(--green-soft); color: var(--green-dark);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(10, 107, 46, 0.08);
  border: 1px solid rgba(10, 107, 46, 0.15);
}

@media print {
  .site-header, .mobile-cta-bar, .cookie-banner, .reading-progress-bar, .back-link, .article-actions, .read-next-section, footer { display: none !important; }
  .blog-article-section { padding: 0; }
  .article-hero { box-shadow: none; border-radius: 0; }
  body { background: #fff; color: #000; }
}

@media (max-width: 640px) {
  .blog-list-section { padding: 32px 0 64px; }
  .blog-list-section .posts { gap: 14px; }
  .blog-list-section .post-card { flex-direction: row; align-items: stretch; border-radius: 16px; }
  .blog-list-section .post-img { flex: 0 0 100px; aspect-ratio: 1 / 1; }
  .blog-list-section .post-body { padding: 14px 16px; justify-content: center; gap: 4px; }
  .blog-list-section .post-date { margin-bottom: 2px; font-size: .68rem; }
  .blog-list-section .post-card h3 {
    font-size: 1rem; margin-bottom: 4px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .blog-list-section .post-card p { display: none; }
  .blog-list-section .read-more { font-size: .8rem; }
}

/* Indice articolo (per articoli lunghi) */
.article-toc {
  background: var(--cream-2); border: 1px solid rgba(10,107,46,.1);
  border-radius: 16px; padding: 20px 24px; margin-bottom: 40px;
}
.article-toc h4 { margin: 0 0 12px; font-size: .95rem; color: var(--green-dark); text-transform: uppercase; letter-spacing: .5px; }
.article-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.article-toc a { color: #444; font-size: .95rem; font-weight: 600; }
.article-toc a:hover { color: var(--green); }

/* Lista della spesa interattiva (sotto le ricette) */
.shopping-list-box {
  background: #fff; border: 2px solid var(--green-soft); border-radius: 20px;
  padding: 28px 24px; margin: 40px 0;
}
.shopping-list-box h4 { color: var(--green-dark); margin: 0 0 6px; font-size: 1.2rem; }
.shopping-list-box .sl-sub { color: var(--muted); font-size: .9rem; margin: 0 0 18px; }
.shopping-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.shopping-list li { border-bottom: 1px dashed var(--line); }
.shopping-list li:last-child { border-bottom: none; }
.shopping-list label {
  display: flex; align-items: center; gap: 12px; padding: 12px 4px;
  cursor: pointer; font-size: 1rem; color: #333;
}
.shopping-list input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--green); flex-shrink: 0; }
.shopping-list input:checked ~ span { text-decoration: line-through; color: var(--muted); }
.sl-cta { margin-top: 18px; text-align: center; }

/* CTA WhatsApp a fine articolo */
.article-wa-cta {
  background: var(--green-soft); border-radius: 20px; padding: 28px 24px;
  text-align: center; margin-top: 48px;
}
.article-wa-cta p { color: var(--green-dark); font-weight: 600; margin: 0 0 16px; font-size: 1.05rem; }

/* =========================================================
   14. CTA BAND
========================================================= */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; text-align: center; padding: 80px 24px; margin-top: 40px; }
.cta-band::before {
  content: ''; position: absolute; top: -60px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -80px; right: 6%;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 16px; line-height: 1.2;}
.cta-band p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 36px; opacity: 0.95; line-height: 1.6; }
.cta-band .cta-row { justify-content: center; gap: 16px; }
.cta-band .btn-white { background: #fff; color: var(--green-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.15); border: 2px solid #fff; }
.cta-band .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.cta-band .btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }

/* =========================================================
   15. FOOTER
========================================================= */
footer { background: #082f15; color: #cfe7d6; padding: 80px 0 24px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 64px; }

.foot-brand .foot-desc { margin-top: 24px; font-size: 1.05rem; line-height: 1.6; max-width: 380px; opacity: 0.85; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social .social-btn { width: 40px; height: 40px; }
@media (hover: none) { .foot-social .social-btn:active { transform: scale(.94); transition: transform .12s ease; } }

footer h4 { color: #fff; margin: 0 0 24px; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.5px; position: relative; padding-bottom: 12px; }
footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 3px; border-radius: 2px; background: var(--red); }

.foot-links ul, .foot-contact ul { list-style: none; padding: 0; margin: 0; }
.foot-links li, .foot-contact li { margin-bottom: 16px; }
.foot-links a { color: #cfe7d6; text-decoration: none; font-size: 1.05rem; transition: all 0.3s ease; display: inline-block; }
.foot-links a:hover { color: #fff; transform: translateX(6px); }

.foot-contact li { font-size: 1.05rem; line-height: 1.6; display: flex; gap: 14px; align-items: flex-start; opacity: 0.9; }
.foot-contact .icon { font-size: 1.2rem; }
.foot-contact ul li { border-bottom: none; }

.foot-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding-top: 20px;
  text-align: center; font-size: .82rem; color: #9fbfa8;
}
.foot-legal a { color: #9fbfa8; text-decoration: underline; }

.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 24px; padding-top: 24px; text-align: center; font-size: 0.95rem; opacity: 0.7; }
.foot-bottom-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.foot-bottom-links a, .foot-bottom-links button { color: #cfe7d6; font-size: .85rem; text-decoration: underline; opacity: .85; }
.foot-bottom-links button { cursor: pointer; }

@media (max-width: 640px) {
  footer { padding: 56px 0 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-brand .foot-desc { margin-top: 16px; font-size: 1rem; }
  footer h4 { font-size: 1.05rem; margin-bottom: 16px; }
  .foot-links li { margin-bottom: 12px; }
  .foot-links a { font-size: 1rem; }
  .foot-contact li { margin-bottom: 0; padding-bottom: 18px; border-bottom: 1px dashed rgba(255,255,255,.12); }
  .foot-contact li:last-child { border-bottom: none; padding-bottom: 0; }
  .foot-links, .foot-contact { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 640px) {
  .logo { padding: 8px 12px; flex-shrink: 0; }
  .logo .nm { font-size: 0.9rem; }
  .logo .bn { font-size: 0.75rem; }
  .logo .sub { font-size: 0.65rem; }
}

/* =========================================================
   16. FORM CONTATTI
========================================================= */
.contact-section { padding: 64px 0 96px; background: #fff; }
.contact-wrapper {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px;
  max-width: 1100px; margin: 0 auto; align-items: flex-start;
}

.contact-form-box { padding-top: 16px; }
.contact-title-box h2 { font-size: 2.2rem; color: var(--green-dark); margin-bottom: 8px; }
.contact-title-box p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; }

.modern-form { display: flex; flex-direction: column; gap: 34px; }
.modern-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.field { display: flex; flex-direction: column; gap: 12px; }
.field-label { font-size: .82rem; font-weight: 800; color: var(--green-dark); text-transform: uppercase; letter-spacing: .5px; display: flex; justify-content: space-between; align-items: baseline; }
.field-hint { font-weight: 600; color: var(--muted); text-transform: none; letter-spacing: 0; font-size: .78rem; }
.field-hint.field-hint-ok { color: var(--green); }
.field-hint.field-hint-warn { color: var(--red); }

.field-input { position: relative; display: flex; align-items: center; }
.field-icon { position: absolute; left: 16px; color: var(--muted); pointer-events: none; display: flex; }
.field-input-textarea .field-icon { top: 16px; }

.field-input input,
.field-input textarea,
.field-input select {
  width: 100%;
  padding: 17px 18px 17px 48px;
  font-size: 1rem; font-family: inherit; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  outline: none;
  appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field-input select { cursor: pointer; }
.field-input .select-arrow { position: absolute; right: 18px; color: var(--muted); pointer-events: none; }
.field-input textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field-input input::placeholder, .field-input textarea::placeholder { color: #a8adb5; }
.field-input input:focus, .field-input textarea:focus, .field-input select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(10,107,46,.1); }
.field-input input:focus ~ .field-icon, .field-input textarea:focus ~ .field-icon, .field-input select:focus ~ .field-icon { color: var(--green); }
.field-input input.error, .field-input textarea.error, .field-input select.error { border-color: var(--red); animation: shake .4s; }
.field-input input.valid { border-color: var(--green); }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-10px); } 75% { transform: translateX(10px); } }

.premium-btn {
  width: 100%; display: flex; align-items: center; justify-content: center;
  padding: 18px; font-size: 1.1rem; min-height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: none; font-weight: 800; cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 10px 26px rgba(10, 107, 46, 0.22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.premium-btn span { transition: transform .3s ease; display: inline-block; margin-left: 10px; }
.premium-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(10, 107, 46, 0.32); }
.premium-btn:hover span { transform: translateX(6px); }
@media (hover: none) { .premium-btn:active { transform: scale(.98); } }

.contact-info-box { background: var(--green-dark); color: #fff; padding: 48px 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(10, 107, 46, 0.2); position: relative; overflow: hidden; }
.contact-info-box::after { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; pointer-events: none; }
.contact-info-box h3 { color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.info-subtitle { color: #cfe7d6; font-size: 1.05rem; margin-bottom: 32px; }
.dark-info-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.dark-info-list li { display: flex; gap: 18px; margin-bottom: 32px; align-items: flex-start; border-bottom: none; padding-bottom: 0; }
.dark-info-list .ico { font-size: 1.4rem; background: rgba(255, 255, 255, 0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.dark-info-list .txt { display: flex; flex-direction: column; gap: 4px; }
.dark-info-list .title { color: #fff; font-size: 1.15rem; font-weight: 700; line-height: 1.2; letter-spacing: 0.3px; }
.dark-info-list .desc { color: #cfe7d6; font-size: 1.05rem; line-height: 1.5; }
.quick-contact-btns { margin-bottom: 32px; }
.chat-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 16px; font-weight: 700; font-size: 1.05rem; text-decoration: none; color: #fff; transition: all 0.3s ease; }
.chat-btn:hover { transform: translateY(-3px); }
.wa-btn { background: #25D366; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.contact-map { position: relative; height: 180px; border-radius: 16px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }
.contact-map .gmap-embed { position: absolute; inset: 0; }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.contact-map .gmap-fallback { background: rgba(255,255,255,.06); }
.contact-map .gmap-fallback-text, .contact-map .gmap-fallback-link { color: #cfe7d6; }
.contact-map .gmap-fallback-link { color: #fff; }

@media (max-width: 1024px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .contact-section { padding: 40px 0 64px; }
  .page-head { padding: 48px 20px; }
  .contact-title-box h2 { font-size: 1.6rem; }
  .contact-title-box p { font-size: 1rem; margin-bottom: 28px; }
  .modern-form { gap: 26px; }
  .modern-form .form-row { grid-template-columns: 1fr; gap: 34px; }
  .field-input input, .field-input textarea, .field-input select { padding: 15px 16px 15px 44px; font-size: .98rem; }
  .field-icon { left: 14px; }
  .field-icon svg { width: 18px; height: 18px; }
  .premium-btn { padding: 18px; font-size: 1.05rem; }

  .contact-info-box { padding: 32px 24px; border-radius: 20px; }
  .contact-info-box h3 { font-size: 1.4rem; }
  .info-subtitle { font-size: .95rem; margin-bottom: 24px; }
  .dark-info-list li { margin-bottom: 22px; gap: 14px; }
  .dark-info-list .ico { width: 40px; height: 40px; font-size: 1.15rem; flex-shrink: 0; }
  .dark-info-list .title { font-size: 1rem; }
  .dark-info-list .desc { font-size: .95rem; }
  .contact-map { height: 160px; }
}

/* =========================================================
   17. MICRO-UX
========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
  background: var(--green); color: white; border: none; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; box-shadow: 0 8px 24px rgba(10,107,46,0.3);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.3s ease; z-index: 1000; display: flex; align-items: center; justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-4px) scale(1.08); box-shadow: 0 12px 32px rgba(10,107,46,0.4); }

.copy-toast {
  position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 12px 24px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.copy-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.copy-target { cursor: pointer; position: relative; transition: opacity 0.2s; }
.copy-target:hover { opacity: 0.6; }
.copy-target::after {
  content: 'Clicca per copiare'; position: absolute; bottom: -25px; left: 0; font-size: 0.7rem;
  background: var(--green); color: #fff; padding: 2px 8px; border-radius: 4px;
  opacity: 0; visibility: hidden; transition: 0.2s; white-space: nowrap;
}
.copy-target:hover::after { opacity: 1; visibility: visible; }
@media (max-width: 640px) {
  .copy-target::after {
    content: 'Tocca per copiare'; position: static; display: block;
    background: none; color: var(--muted); padding: 2px 0 0;
    font-size: 0.72rem; opacity: 0.6; visibility: visible;
  }
}

.ripple-btn { position: relative; overflow: hidden; }
.ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-anim 0.6s linear; background: rgba(255, 255, 255, 0.4); pointer-events: none; }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

.success-box { display: none; text-align: center; background: var(--green-soft); border: 2px solid var(--green); padding: 40px 24px; border-radius: 20px; margin-top: 16px; animation: fadeInSlide 0.5s ease forwards; }
.success-box.show { display: block; }
.success-icon { width: 72px; height: 72px; background: var(--green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 24px; box-shadow: 0 10px 24px rgba(10, 107, 46, 0.3); }
.success-box h3 { color: var(--green-dark); font-size: 1.8rem; margin-bottom: 12px; }
.success-box p { color: var(--ink); font-size: 1.1rem; }
@keyframes fadeInSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   18. BARRA CTA FISSA MOBILE
========================================================= */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1002;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mcta-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 14px; font-weight: 700; font-size: 0.95rem; text-decoration: none;
  }
  .mcta-whatsapp { background: #25D366; color: #fff; }
  .mcta-directions { background: var(--green); color: #fff; }
  .mcta-ico { font-size: 1.1rem; }

  body { padding-bottom: 76px; }
  .back-to-top { bottom: 92px; right: 16px; width: 46px; height: 46px; font-size: 1.3rem; }
}

/* =========================================================
   19. FEEDBACK AL TOCCO
========================================================= */
@media (hover: none) {
  .btn:active, .mcta-btn:active, .why:active, .dept:active, .info-card:active,
  .post-card:active, .social-row:active, .social-btn:active, .chat-btn:active,
  .share-btn:active, .btn-directions:active, .open-pill:active, .copy-target:active {
    transform: scale(0.97); opacity: 0.85; transition: transform 0.12s ease, opacity 0.12s ease;
  }
}

/* =========================================================
   20. ACCESSIBILITÀ DI BASE
========================================================= */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   21. BLOG — teaser in Home
========================================================= */
.from-blog { padding: 80px 0; background: #fff; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.title-group h2 { margin-bottom: 6px; }
.title-group p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green); white-space: nowrap; padding: 8px 4px; }
.link-arrow span { transition: transform .3s ease; }
.link-arrow:hover span { transform: translateX(6px); }
@media (hover: none) { .link-arrow:active span { transform: translateX(4px); } }
@media (max-width: 640px) { .section-head-row { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 28px; } }

/* =========================================================
   22. RESPONSIVE GENERALE
========================================================= */
@media (max-width: 1024px) {
  .hero .container, .split, .visit { grid-template-columns: 1fr; gap: 48px; }
  .stats, .posts { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap { height: 320px; min-height: 320px; }

  .hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero h1, .hero p { text-align: center; }
  .hero-content .tick { display: inline-block; text-align: left; margin: 0 auto 32px auto; }
  .cta-row { justify-content: center; }

  .halal-badge { right: 10px; bottom: -15px; width: 110px; height: 110px; }
  .halal-badge .ar { font-size: 1.3rem; }

  .story-text-wrap { text-align: left; }
  .story-text-wrap .section-head { text-align: left; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: span 2; }
  .foot-brand .foot-desc { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.2rem; }
  .stats, .why-grid, .posts { grid-template-columns: 1fr; }
  .info-card, .mini-card { padding: 24px; }
  .hours, .info-list li { font-size: 0.95rem; }
  .cta-band { padding: 50px 20px; }

  .foot-grid { grid-template-columns: 1fr; }
  .foot-brand { grid-column: span 1; }

  .story-image-wrap { margin-bottom: 24px; border-radius: 20px; }
  .story-text-wrap, .story-text-wrap .section-head { text-align: left !important; }
  .story-text-wrap .tick { display: inline-block; text-align: left; margin: 16px 0; }

  .blog-article-section { padding: 40px 0 64px; }
  .article-header { margin-bottom: 32px; text-align: left; }
  .article-hero { margin-bottom: 32px; border-radius: 16px; }
  .article-body { font-size: 1.05rem; }

  .btn { width: 100%; justify-content: center; }

  .social-icons { display: flex; justify-content: center; margin-top: 16px; width: 100%; }
  section { padding: 48px 0; }
  .section-head { text-align: center; margin-bottom: 40px; }
  .section-head p { color: var(--muted); margin-top: 6px; }

  .bg-cream, .from-blog { padding: 48px 0; }
  .hero .container { padding: 40px 20px 32px; gap: 28px; }
  .chip { margin-bottom: 16px; }
  .hero-greeting { margin-bottom: 6px; }
  .bn-title { margin: 2px 0 6px; font-size: 1.4rem; }
  .hero h1 { margin-bottom: 10px; }
  .loc { margin: 10px 0 14px; }
  .hero p { margin-bottom: 16px; }
}

/* =========================================================
   23. PAGINA LEGALE (Privacy / Cookie)
========================================================= */
.legal-section { padding: 56px 0 96px; background: #fff; }
.legal-container { max-width: 780px; margin: 0 auto; }
.legal-updated { color: var(--muted); font-size: .9rem; margin-bottom: 40px; }
.legal-container h2 { font-size: 1.4rem; color: var(--green-dark); margin: 40px 0 14px; }
.legal-container h2:first-of-type { margin-top: 0; }
.legal-container p { color: #444; line-height: 1.7; margin-bottom: 16px; }
.legal-container a { color: var(--green); font-weight: 700; text-decoration: underline; }
.legal-list { margin: 0 0 16px; padding-left: 22px; color: #444; line-height: 1.8; }
.legal-list li { margin-bottom: 6px; }

/* =========================================================
   24. COOKIE BANNER — card flottante moderna
========================================================= */
.cookie-banner {
  position: fixed; left: 24px; bottom: 24px; z-index: 2000;
  max-width: 400px; width: calc(100% - 48px);
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.04);
  opacity: 0; transform: translateY(24px) scale(.98);
  transition: opacity .35s ease, transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.cookie-banner.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.cookie-banner-inner { padding: 24px; }
.cookie-banner-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cookie-ico { font-size: 1.4rem; }
.cookie-banner-head strong { font-family: 'Poppins', sans-serif; font-size: 1.05rem; color: var(--green-dark); }
.cookie-text { font-size: .88rem; color: #555; line-height: 1.55; margin: 0 0 20px; }
.cookie-text a { color: var(--green); font-weight: 700; }
.cookie-actions { display: flex; flex-direction: column; gap: 10px; }
.cookie-actions .btn { padding: 13px 20px; font-size: .92rem; justify-content: center; width: 100%; }

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 88px; width: auto; max-width: none; }
}

/* =========================================================
   BANNER EVENTI SPECIALI (Ramadan e futuri eventi)
========================================================= */
.event-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.event-banner.show { max-height: 80px; }
.event-banner-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 48px 12px 16px; position: relative;
  font-size: .92rem; font-weight: 600; text-align: center;
}
.event-ico { font-size: 1.2rem; }
.event-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border-radius: 50%;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; cursor: pointer;
}
@media (max-width: 640px) {
  .event-banner-inner { padding: 12px 40px 12px 12px; font-size: .85rem; gap: 8px; }
}

/* =========================================================
   CONDIVISIONE NATIVA + LISTA SPESA (pulsanti extra)
========================================================= */
.share-btn.native-share { background: var(--green-dark); box-shadow: 0 6px 16px rgba(10,107,46,.3); }
.sl-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.sl-cta .btn { flex: 1; min-width: 180px; }

/* =========================================================
   25. FUNZIONALITÀ AGGIUNTIVE (numeri animati, offline, form)
========================================================= */

/* Stato "chiude tra poco" — piccola enfasi visiva */
.open-pill.closing-soon { color: var(--red-dark); }
.open-pill.closing-soon .dot { background: var(--red); box-shadow: 0 0 0 4px rgba(212,50,43,.15); animation: pulseDot 1.4s infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* Avviso offline */
.offline-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 3000;
  background: var(--ink); color: #fff; text-align: center;
  font-size: .85rem; font-weight: 600; padding: 10px 16px;
  transform: translateY(-100%); transition: transform .3s ease;
}
.offline-bar.show { transform: translateY(0); }

/* Freccia select personalizzata (menu a tendina oggetto contatti) */
.field-input select { padding-right: 44px; }

/* Bottone salva articolo (segnalibro) */
.bookmark-label { display: inline; }

/* Badge "Salvato" sulle card del blog */
.post-img { position: relative; }
.post-saved-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(8,89,29,.92); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 5px 10px; border-radius: 50px;
  backdrop-filter: blur(4px);
}