/* ===========================
   EAT PINK — BRAND IDENTITY
   Rosa: #E87A9A  |  Teal: #4ECDC4
   =========================== */

@font-face {
  font-family: 'Rawles';
  src: url('/fonts/Rawles-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink:         #E87A9A;
  --pink-dark:    #c75a7a;
  --pink-light:   #f5b8cb;
  --pink-pale:    #fdeef3;
  --pink-blush:   #fff5f8;
  --teal:         #4ECDC4;
  --teal-dark:    #38b2aa;
  --teal-light:   #a8ebe7;
  --teal-pale:    #e8faf9;
  --white:        #ffffff;
  --off-white:    #f9f9f9;
  --dark:         #1c1c1c;
  --text:         #333333;
  --text-muted:   #888888;
  --shadow-pink:  0 8px 30px rgba(232,122,154,0.25);
  --shadow-teal:  0 8px 30px rgba(78,205,196,0.25);
  --shadow-dark:  0 8px 30px rgba(0,0,0,0.12);
  --radius:       14px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --transition:   0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Rawles', sans-serif;
  line-height: 1.2;
}
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; }
em { font-style: italic; color: var(--pink); }
strong { color: var(--pink-dark); font-weight: 700; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-family: 'Rawles', sans-serif;
}
.section-label.light {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Rawles', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--pink-pale); transform: translateY(-2px); box-shadow: var(--shadow-pink); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.75);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }

.btn-recipe {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 9px 20px;
  font-size: 0.85rem;
  margin-top: 12px;
}
.btn-recipe:hover { background: var(--pink); color: var(--white); }

.btn-submit {
  background: var(--white);
  color: var(--pink-dark);
  font-size: 1rem;
  align-self: flex-start;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-submit:hover { background: var(--pink-pale); transform: translateY(-2px); }

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(232,122,154,0.15);
}
.nav-logo img {
  height: 52px; width: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform var(--transition);
}
.nav-logo img:hover { transform: scale(1.05); }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-family: 'Rawles', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--pink); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.navbar.scrolled .nav-toggle { color: var(--dark); }

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #d4607e 0%, var(--pink) 45%, #c85878 100%);
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

.geo { position: absolute; pointer-events: none; }
.geo-circle-white { width: 620px; height: 620px; border-radius: 50%; background: rgba(255,255,255,0.10); top: -180px; right: -160px; animation: geo-float-tr 9s ease-in-out infinite; }
.geo-ring-white { width: 400px; height: 400px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.18); background: transparent; top: -60px; right: -60px; animation: geo-float 11s ease-in-out infinite reverse; }
.geo-circle-teal { width: 320px; height: 320px; border-radius: 50%; background: rgba(78,205,196,0.22); bottom: -80px; left: -80px; animation: geo-float-bl 10s ease-in-out infinite 2s; }
.geo-ring-teal { width: 220px; height: 220px; border-radius: 50%; border: 2.5px solid rgba(78,205,196,0.35); background: transparent; bottom: 60px; left: 60px; animation: geo-float 8s ease-in-out infinite 1s reverse; }
.geo-diagonal { width: 200%; height: 72px; background: rgba(78,205,196,0.28); top: 50%; left: -50%; transform: translateY(-50%) rotate(-8deg); }
.geo-diagonal-2 { width: 200%; height: 2px; background: rgba(255,255,255,0.25); top: calc(50% + 52px); left: -50%; transform: rotate(-8deg); }
.geo-dot { border-radius: 50%; background: rgba(255,255,255,0.3); }
.dot-1 { width: 12px; height: 12px; top: 18%; left: 8%; animation: geo-pulse 4s ease-in-out infinite; }
.dot-2 { width: 8px; height: 8px; top: 30%; left: 14%; animation: geo-pulse 5s ease-in-out infinite 1s; }
.dot-3 { width: 16px; height: 16px; top: 12%; right: 28%; animation: geo-pulse 4.5s ease-in-out infinite 0.5s; }
.dot-4 { width: 10px; height: 10px; bottom: 20%; right: 12%; background: rgba(78,205,196,0.6); animation: geo-pulse 6s ease-in-out infinite 2s; }
.dot-5 { width: 6px; height: 6px; bottom: 32%; left: 22%; animation: geo-pulse 3.5s ease-in-out infinite 1.5s; }
.geo-arc-top { width: 300px; height: 150px; border: 3px solid rgba(255,255,255,0.15); border-bottom: none; border-radius: 150px 150px 0 0; top: 6%; left: 50%; transform: translateX(-50%); }
.geo-arc-bottom { width: 260px; height: 130px; border: 2px solid rgba(255,255,255,0.12); border-top: none; border-radius: 0 0 130px 130px; bottom: 90px; left: 50%; transform: translateX(-50%); }

@keyframes geo-float { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-12px,-18px)} 66%{transform:translate(8px,-8px)} }
@keyframes geo-float-tr { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-14px,14px)} }
@keyframes geo-float-bl { 0%,100%{transform:translate(0,0)} 50%{transform:translate(12px,-12px)} }
@keyframes geo-pulse { 0%,100%{opacity:0.3;transform:scale(1)} 50%{opacity:0.8;transform:scale(1.4)} }

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 760px;
}
.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 0 0 12px rgba(255,255,255,0.08);
}
.hero-tagline {
  font-family: 'Rawles', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.hero-flag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 36px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  background: var(--white);
  padding: 6px 16px 6px 8px;
  gap: 8px;
}
.hero-flag > span.flag-bar, .footer-flag > span.flag-bar {
  display: inline-block; width: 14px; height: 14px; border-radius: 2px;
}
.flag-bar.green  { background: #009246; }
.flag-bar.white  { background: #ffffff; border: 1px solid #ddd; }
.flag-bar.red    { background: #ce2b37; }
.hero-flag .flag-label {
  font-family: 'Rawles', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-transform: uppercase;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   CLAIMS BAR
   =========================== */

.claims-bar { background: var(--white); border-bottom: 1px solid var(--pink-pale); }
.claims-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.claim-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 22px;
  font-family: 'Rawles', sans-serif;
  font-weight: 700; font-size: 0.88rem; color: var(--text);
}
.claim-icon { font-size: 1.2rem; }
.claim-sep { width: 1px; height: 28px; background: var(--pink-light); }

/* ===========================
   CHI SIAMO
   =========================== */

.about { padding: 100px 0; background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-text h2 { margin-bottom: 22px; color: var(--dark); }
.about-text > p {
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 15px; font-size: 1.02rem;
}
.about-philosophy {
  background: var(--pink-blush);
  border-left: 4px solid var(--pink);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.about-philosophy h4 {
  font-family: 'Rawles', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 8px;
}
.about-philosophy p { color: var(--text); font-size: 0.97rem; line-height: 1.7; }

.about-values { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.value-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: var(--pink-pale); padding: 16px 10px;
  border-radius: var(--radius); flex: 1; min-width: 80px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-pink); }
.value-icon { font-size: 1.5rem; }
.value-item span {
  font-family: 'Rawles', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  color: var(--pink-dark);
  text-align: center; text-transform: uppercase; letter-spacing: 0.04em;
}

.about-image-wrap { position: relative; }
.about-product-img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark); display: block;
  object-fit: contain;
}
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--teal); color: var(--white);
  font-family: 'Rawles', sans-serif; font-weight: 900;
  font-size: 0.85rem; line-height: 1.3; text-align: center;
  padding: 18px 20px; border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-teal);
}

/* ===========================
   PRODOTTI
   =========================== */

.products { padding: 100px 0; background: var(--pink); position: relative; overflow: hidden; }
.products::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 5% 95%, rgba(255,255,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 5%, rgba(255,255,255,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.products-title { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.products-title em { color: rgba(255,255,255,0.75); }
.products-intro {
  color: rgba(255,255,255,0.82); font-size: 1rem;
  margin-bottom: 52px; line-height: 1.6;
  max-width: 640px; position: relative; z-index: 1;
}

.products-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
  align-items: start;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.product-card.featured {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.product-card.featured:hover { transform: translateY(-18px); }

.product-featured-badge {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-family: 'Rawles', sans-serif; font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
  white-space: nowrap; z-index: 2;
}

.product-card-img {
  background: var(--pink-pale);
  padding: 28px 28px 0;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.product-card-img img {
  max-height: 200px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-body { padding: 24px 24px 28px; }

.product-size-tag {
  display: inline-block;
  font-family: 'Rawles', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--pink-pale); color: var(--pink-dark);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.product-size-tag.teal { background: var(--teal-pale); color: var(--teal-dark); }

.product-card-body h3 {
  font-size: 1.25rem; font-weight: 800;
  color: var(--dark); margin-bottom: 16px; line-height: 1.2;
}
.product-card-body h3 em { color: var(--pink); }

.product-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.product-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.4;
}
.feat-dot {
  display: block; width: 7px; height: 7px;
  border-radius: 50%; flex-shrink: 0;
}
.feat-dot.pink { background: var(--pink); }
.feat-dot.teal { background: var(--teal); }

.product-cooking {
  display: flex; gap: 8px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.cooking-item {
  flex: 1; min-width: 72px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.4;
}
.cooking-icon { font-size: 1.1rem; display: block; margin-bottom: 4px; }
.cooking-item strong { color: var(--dark); display: block; font-size: 0.82rem; }

.btn-nutrition {
  width: 100%;
  background: none;
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: 'Rawles', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  color: var(--pink-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--transition);
}
.btn-nutrition:hover { background: var(--pink-pale); border-color: var(--pink); }
.btn-nutrition .arrow { transition: transform 0.25s; }
.btn-nutrition.open .arrow { transform: rotate(180deg); }

.nutrition-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.nutrition-panel.open { max-height: 300px; }

.nutrition-table {
  width: 100%; border-collapse: collapse;
  margin-top: 12px; font-size: 0.82rem;
}
.nutrition-table th {
  background: var(--pink-pale); color: var(--pink-dark);
  font-family: 'Rawles', sans-serif; font-weight: 800;
  text-transform: uppercase; font-size: 0.68rem;
  letter-spacing: 0.08em; padding: 8px 10px;
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: left;
}
.nutrition-table td {
  padding: 7px 10px; border-bottom: 1px solid var(--pink-pale);
  color: var(--text);
}
.nutrition-table td:last-child { text-align: right; font-weight: 700; color: var(--dark); }
.nutrition-table tr.sub td { padding-left: 22px; color: var(--text-muted); font-size: 0.78rem; }
.nutrition-table tr:last-child td { border-bottom: none; }

/* ===========================
   RICETTE
   =========================== */

.recipes { padding: 100px 0; background: var(--off-white); }
.recipes-title { color: var(--dark); margin-bottom: 14px; }
.recipes-title em { color: var(--pink); }
.recipes-intro { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 40px; line-height: 1.6; }

.recipes-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  background: var(--white);
  border: 2px solid var(--pink-pale);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: 'Rawles', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink-dark); }
.filter-btn.active { background: var(--pink); border-color: var(--pink); color: var(--white); }
.filter-btn.active .filter-count { background: rgba(255,255,255,0.3); color: var(--white); }
.filter-count {
  background: var(--pink-pale); color: var(--pink-dark);
  font-size: 0.72rem; font-weight: 900;
  padding: 2px 7px; border-radius: 50px;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1.5px solid var(--pink-pale);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pink); }
.recipe-card.hidden { display: none; }

.recipe-img {
  height: 200px;
  overflow: hidden;
  background: var(--pink-pale);
}
.recipe-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.recipe-card:hover .recipe-img img { transform: scale(1.05); }

.recipe-body {
  padding: 18px 20px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.recipe-meta-row { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }

.recipe-tag {
  display: inline-block;
  font-family: 'Rawles', sans-serif;
  font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.recipe-tag.pulled    { background: var(--pink-pale); color: var(--pink-dark); }
.recipe-tag.bacon     { background: #fff3e0; color: #b25e00; }
.recipe-tag.erbe      { background: var(--teal-pale); color: var(--teal-dark); }

.recipe-diff {
  display: inline-block;
  font-family: 'Rawles', sans-serif;
  font-size: 0.63rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 50px;
}
.recipe-diff.facile    { background: #e8f5e9; color: #2e7d32; }
.recipe-diff.media     { background: #fff8e1; color: #f57f17; }
.recipe-diff.difficile { background: #fce4ec; color: #c62828; }

.recipe-body h3 {
  font-size: 0.97rem; font-weight: 800;
  color: var(--dark); margin-bottom: 8px; line-height: 1.3;
  flex: 1;
}
.recipe-info {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 0;
}

/* ===========================
   CONTACT
   =========================== */

.contact { padding: 100px 0; background: var(--pink); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start; position: relative; z-index: 1;
}
.contact-simple {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.contact-simple h2 { color: var(--white); margin-bottom: 14px; }
.contact-simple h2 em { color: rgba(255,255,255,0.75); }
.contact-simple > p { color: rgba(255,255,255,0.8); font-size: 0.97rem; line-height: 1.7; margin-bottom: 36px; }
.contact-simple .contact-details { flex-direction: row; justify-content: center; gap: 40px; flex-wrap: wrap; }
.contact-simple .contact-detail-item { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.contact-info h2 { color: var(--white); margin-bottom: 14px; }
.contact-info h2 em { color: rgba(255,255,255,0.75); }
.contact-info > p { color: rgba(255,255,255,0.8); font-size: 0.97rem; line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.detail-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail-item strong {
  display: block; font-family: 'Rawles', sans-serif;
  font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 2px;
}
.contact-detail-item p, .contact-detail-item a { color: var(--white); font-size: 0.93rem; line-height: 1.5; text-decoration: none; }
.contact-detail-item a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 15px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif; font-size: 0.97rem;
  background: rgba(255,255,255,0.15); color: var(--white);
  outline: none; resize: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.55); }
.contact-form select { color: rgba(255,255,255,0.75); cursor: pointer; }
.contact-form select option { background: var(--pink-dark); color: var(--white); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.22);
}

/* ===========================
   FOOTER
   =========================== */

.footer { background: var(--dark); }
.footer-top {
  padding: 44px 48px;
  display: flex; align-items: center; gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.footer-info { flex: 1; }
.footer-tag { font-family: 'Rawles', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--pink-light); }
.footer-opas { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 3px; }
.footer-flag { display: flex; gap: 4px; align-items: center; margin-left: auto; }
.footer-flag .flag-bar { display: inline-block; width: 22px; height: 12px; border-radius: 2px; }
.footer-bottom { padding: 18px 48px; text-align: center; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-copy a:hover { color: var(--pink-light); }

/* ===========================
   MODAL
   =========================== */

.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 780px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalIn 0.28s ease;
  display: flex; flex-direction: column;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.93) translateY(16px)} to{opacity:1;transform:scale(1) translateY(0)} }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.15); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; font-size: 0.95rem; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 3;
}
.modal-close:hover { background: rgba(0,0,0,0.35); }

.modal-recipe-img-wrap {
  height: 260px; overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  flex-shrink: 0;
}
.modal-recipe-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

.modal-content-body { padding: 28px 36px 36px; }
.modal-header-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.modal h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 10px; }
.modal-meta { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.modal-meta span {
  background: var(--pink-pale); color: var(--pink-dark);
  font-family: 'Rawles', sans-serif; font-size: 0.78rem;
  font-weight: 800; padding: 4px 12px; border-radius: 50px;
}
.modal-sections { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.modal-col h4 {
  font-family: 'Rawles', sans-serif; font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink-dark); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--pink-pale);
}
#modalIngredients { list-style: none; display: flex; flex-direction: column; gap: 8px; }
#modalIngredients li {
  font-size: 0.9rem; color: var(--text);
  padding-left: 16px; position: relative; line-height: 1.5;
}
#modalIngredients li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; background: var(--pink); border-radius: 50%;
}
#modalSteps {
  list-style: none; counter-reset: steps;
  display: flex; flex-direction: column; gap: 12px; padding: 0;
}
#modalSteps li {
  font-size: 0.9rem; color: var(--text); line-height: 1.65;
  padding-left: 34px; position: relative; counter-increment: steps;
}
#modalSteps li::before {
  content: counter(steps);
  position: absolute; left: 0; top: 1px;
  background: var(--pink); color: var(--white);
  width: 22px; height: 22px; border-radius: 50%;
  font-family: 'Rawles', sans-serif; font-size: 0.72rem;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .products-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-6px); }
  .product-featured-badge { top: 12px; }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .modal-sections { grid-template-columns: 1fr; }
  .claims-inner { justify-content: flex-start; }
  .footer-top { padding: 32px 24px; }
  .footer-bottom { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px; gap: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open a { color: var(--text); }
  .nav-toggle { display: block; }
  .recipes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal { border-radius: var(--radius-lg); }
  .modal-content-body { padding: 22px 20px 28px; }
  .modal-recipe-img-wrap { height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .hero-logo { width: 120px; height: 120px; }
  .hero-tagline { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-submit { align-self: stretch; text-align: center; }
  .about-badge { width: 80px; height: 80px; font-size: 0.72rem; bottom: -12px; right: -8px; }
  .claim-sep { display: none; }
  .claim-item { padding: 10px 14px; }
  .footer-flag { display: none; }
  .recipes-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
}

/* ===========================
   OVERRIDE TEMA ATTIVO
   (evita conflitti con stili del tema WordPress)
   =========================== */
body .btn-white {
  background: #ffffff !important;
  color: #c75a7a !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15) !important;
}
body .btn-white:hover {
  background: #fdeef3 !important;
}
body .btn-outline-white {
  background: transparent !important;
  color: #ffffff !important;
  border: 2.5px solid rgba(255,255,255,0.75) !important;
}
body .btn-outline-white:hover {
  background: rgba(255,255,255,0.15) !important;
}
body .btn-recipe {
  background: transparent !important;
  color: #E87A9A !important;
  border: 2px solid #E87A9A !important;
}
body .btn-recipe:hover {
  background: #E87A9A !important;
  color: #ffffff !important;
}

body .btn-nutrition {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
}
