/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --orange:       #FF5A1F;
  --orange-light: #FFE0D0;
  --orange-mid:   #FF7A3D;
  --orange-deep:  #D94511;
  --green:        #5BC25A;
  --green-light:  #D6F5D4;
  --green-dark:   #1F5A1B;
  --blue:         #2EC4F1;
  --blue-light:   #C5EEFF;
  --blue-deep:    #0C8FBA;
  --yellow:       #FFCB05;
  --yellow-light: #FFF0A8;
  --pink:         #FF3D7F;
  --dark:         #0C0C0C;
  --white:        #FFFFFF;
  --gray-light:   #F4F4F2;
  --grad-hero:    linear-gradient(135deg, #FFCB05 0%, #FF5A1F 100%);
  --grad-pop:     linear-gradient(120deg, #FF5A1F 0%, #FF3D7F 100%);
  --grad-fresh:   linear-gradient(135deg, #2EC4F1 0%, #5BC25A 100%);
  --serif:   'DM Serif Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --r:       0.75rem;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans); background: var(--white); color: var(--dark);
  line-height: 1.6; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 35%, var(--green) 65%, var(--blue) 100%) 1;
  transition: all var(--transition);
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  height: 60px;
}
.nav-logo img { height: 36px; transition: height var(--transition); }
nav.scrolled .nav-logo img { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--dark);
  opacity: 0.8; transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: center;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.lang-switcher { display: flex; gap: 0.25rem; }
.lang-btn {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem; border: none; background: transparent;
  color: var(--dark); opacity: 0.55; border-radius: 4px;
  transition: all var(--transition);
}
.lang-btn:hover { opacity: 0.9; }
.lang-btn.active { opacity: 1; background: var(--orange-light); }
.btn-amazon {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #FF9900; color: white;
  padding: 0.55rem 1.2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-amazon:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,153,0,0.4);
  background: #E68A00;
}
.nav-mobile-toggle { display: none; background: none; border: none; padding: 0.5rem; }

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem; font-weight: 500; color: var(--dark);
  opacity: 0.8; transition: opacity var(--transition);
}
.mobile-menu a:hover { opacity: 1; }

/* ─── ENTRANCE ANIMATIONS ────────────────────────────────── */
.anim-in {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s var(--ease-out-expo) forwards;
}
.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.45s; }
.anim-d4 { animation-delay: 0.6s; }
.anim-d5 { animation-delay: 0.8s; }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
  background: #0C0C0C;
}

/* Grain overlay — lightweight */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04;
  background: repeating-conic-gradient(rgba(0,0,0,0.03) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
}

/* Floating blobs — use will-change for GPU acceleration */
.hero-blob {
  position: absolute; border-radius: 50%; z-index: 0;
  will-change: transform;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,203,5,0.35) 0%, transparent 70%);
  top: -10%; right: 5%;
  animation: blobDrift1 20s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,90,31,0.25) 0%, transparent 70%);
  bottom: -5%; left: -5%;
  animation: blobDrift2 25s ease-in-out infinite;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,61,127,0.15) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: blobDrift3 18s ease-in-out infinite 3s;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.08); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 20px) scale(1.05); }
  66% { transform: translate(35px, -15px) scale(0.92); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

.hero-content {
  position: relative; z-index: 3;
  padding-top: 1rem;
  max-width: 580px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255,90,31,0.15);
  border-radius: 100px;
  border: 1.5px solid rgba(255,90,31,0.3);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  background: var(--grad-pop);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem; font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-pop); color: white;
  padding: 1rem 2.4rem; border-radius: 100px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 8px 32px rgba(255,90,31,0.35);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(255,61,127,0.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #FFFFFF; font-size: 0.95rem; font-weight: 600;
  border: none; background: none;
  opacity: 0.7; transition: all var(--transition);
}
.btn-secondary:hover { opacity: 1; color: var(--orange); }
.hero-badges {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem; border-radius: 100px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.badge.green { background: rgba(91,194,90,0.15); color: #82C07C; border-color: rgba(91,194,90,0.3); }
.badge.blue  { background: rgba(46,196,241,0.15); color: #54BFED; border-color: rgba(46,196,241,0.3); }

/* Hero image — full-bleed background */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bottle {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
  animation: none;
  filter: none;
}
/* Gradient overlay for text readability */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.6) 40%, transparent 70%),
    linear-gradient(180deg, rgba(12,12,12,0.3) 0%, transparent 30%, transparent 70%, rgba(12,12,12,0.5) 100%);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
.hero-scroll-indicator span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(12,12,12,0.4);
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
section {
  padding: 8rem 5vw;
  position: relative;
}
.section-eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--dark);
  margin-bottom: 1rem; display: block;
  opacity: 0.55;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1.05rem; color: rgba(12,12,12,0.82);
  max-width: 540px; line-height: 1.75;
}

/* ─── WAVE DIVIDERS ─────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  margin-top: -8px;
  margin-bottom: -8px;
  position: relative;
  z-index: 5;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (min-width: 768px) {
  .wave-divider svg { height: 80px; }
}
@media (min-width: 1200px) {
  .wave-divider svg { height: 100px; }
}

/* ─── DOSING (PT02) ──────────────────────────────────────── */
#dosing {
  background: var(--orange); color: white;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 6rem;
  position: relative; overflow: hidden;
}
#dosing::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,203,5,0.3), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(217,69,17,0.4), transparent 50%);
  pointer-events: none;
}
#dosing > * { position: relative; z-index: 1; }
#dosing .section-title { color: white; }
#dosing .section-body { color: rgba(255,255,255,0.92); }
.dosing-features {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 2.5rem;
}
.dosing-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  transition: transform var(--transition);
}
.dosing-feature:hover { transform: translateX(6px); }
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.dosing-feature:hover .feature-icon {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}
.feature-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.feature-text span { font-size: 0.88rem; color: rgba(255,255,255,0.92); line-height: 1.5; }
.dosing-image {
  display: flex; align-items: center; justify-content: center;
}
.dosing-image img {
  width: 100%; max-width: 560px;
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.35);
  transition: transform 0.6s var(--ease-out-expo);
}
.dosing-image img:hover {
  transform: scale(1.04) rotate(-1deg);
}

/* ─── SECTION EYEBROW CONTEXTUAL COLORS ─────────────────── */
#dosing .section-eyebrow  { color: var(--yellow); opacity: 1; }
#quality .section-eyebrow { color: var(--green-dark); opacity: 1; }
#origin .section-eyebrow  { color: var(--yellow); opacity: 1; }
#compare .section-eyebrow { color: var(--yellow); opacity: 1; }
#refill .section-eyebrow  { color: var(--blue-deep); opacity: 1; }
#buy .section-eyebrow     { color: var(--dark); opacity: 0.6; }
#aromatizzati .section-eyebrow { color: rgba(255,255,255,0.5); opacity: 1; }
#channels .section-eyebrow { color: var(--yellow); opacity: 1; }

/* ─── QUALITY (PT04) ─────────────────────────────────────── */
#quality {
  background: var(--green-light);
  position: relative; overflow: hidden;
}
#quality::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 90%, rgba(91,194,90,0.2), transparent 50%);
  pointer-events: none;
}
.quality-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  position: relative; z-index: 1;
}
.quality-image img {
  width: 100%; border-radius: 24px;
  box-shadow: 0 24px 64px rgba(31,90,27,0.15);
  transition: transform 0.6s var(--ease-out-expo);
}
.quality-image img:hover { transform: scale(1.02); }
.specs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2.5rem;
}
.spec-card {
  background: white; border-radius: 20px;
  padding: 1.5rem; border: 2px solid rgba(91,194,90,0.3);
  transition: all var(--transition);
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(91,194,90,0.15);
  border-color: var(--green);
}
.spec-value {
  font-family: var(--serif);
  font-size: 1.6rem; color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.spec-label { font-size: 0.8rem; color: rgba(12,12,12,0.65); font-weight: 500; }
.lab-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem; padding: 0.65rem 1.1rem;
  background: var(--green); border-radius: 100px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: white;
  box-shadow: 0 4px 16px rgba(91,194,90,0.3);
  transition: all var(--transition);
}
.lab-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,194,90,0.4); }

/* ─── ORIGIN (Mod03) ─────────────────────────────────────── */
#origin {
  position: relative; overflow: hidden;
  background: var(--green);
  color: white;
}
#origin::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,203,5,0.25), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(31,90,27,0.5), transparent 50%);
  pointer-events: none;
}
#origin .section-title { color: white; }
#origin .section-body  { color: rgba(255,255,255,0.92); max-width: 600px; }
#origin .italy-flag { color: rgba(255,255,255,0.9); }
.origin-bg {
  position: absolute; inset: 0;
  background-image: url('../images/olive-trees-bg.jpg');
  background-size: cover; background-position: center 40%;
  opacity: 0.08;
}
.origin-inner {
  position: relative; z-index: 1;
  max-width: 900px;
}
.origin-image {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.15);
}
.origin-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.origin-image:hover img {
  transform: scale(1.03);
}
.origin-points {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.origin-point {
  background: rgba(255,255,255,0.12); border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.origin-point:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.origin-point-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.origin-point strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; color: white; }
.origin-point span { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.italy-flag {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 2rem;
  font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.95);
  letter-spacing: 0.01em;
}
.italy-flag span:first-child { font-size: 2rem; }

/* ─── COMPARE (PT07) ─────────────────────────────────────── */
#compare {
  background: linear-gradient(135deg, #0C8FBA 0%, #064D68 100%);
  color: white;
  position: relative; overflow: hidden;
}
#compare::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(46,196,241,0.3), transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(255,203,5,0.12), transparent 50%);
}
#compare > * { position: relative; z-index: 1; }
#compare .section-title { color: white; }
.compare-table {
  width: 100%; border-collapse: collapse;
  margin-top: 3rem; font-size: 0.95rem;
  background: rgba(255,255,255,0.06);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.compare-table thead th {
  padding: 1.2rem 1.5rem; text-align: left;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: #FFFFFF;
  background: rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.compare-table thead th.highlight {
  color: var(--yellow); font-size: 1.05rem;
  background: rgba(0,0,0,0.45);
}
.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.compare-table tbody tr:hover { background: rgba(255,255,255,0.06); }
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.compare-table tbody tr:nth-child(even):hover { background: rgba(255,255,255,0.08); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td { padding: 1.1rem 1.5rem; vertical-align: middle; }
.compare-table td:first-child { color: #FFFFFF; font-size: 0.9rem; font-weight: 600; }
.compare-table td.qubi-val {
  color: #FFFFFF; font-weight: 700;
  background: rgba(255,203,5,0.1);
}
.compare-table td.other-val { color: rgba(255,255,255,0.65); }
.check {
  color: var(--yellow); margin-right: 0.45rem; font-weight: 900;
  text-shadow: 0 0 8px rgba(255,203,5,0.5);
}
.cross { color: rgba(255,255,255,0.45); margin-right: 0.45rem; font-weight: 700; }

/* ─── REFILL (PT08) ──────────────────────────────────────── */
#refill {
  background: var(--blue-light);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 6rem;
  position: relative; overflow: hidden;
}
#refill::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(46,196,241,0.2), transparent 50%);
  pointer-events: none;
}
#refill > * { position: relative; z-index: 1; }
/* refill eyebrow set in contextual block above */
#refill .refill-bullets li::before { background: var(--blue-deep); }
#refill .section-title { color: var(--dark); }
.refill-image {
  display: flex; align-items: center; justify-content: center;
}
.refill-image img {
  width: 85%; max-width: 480px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
  transition: transform 0.6s var(--ease-out-expo);
}
.refill-image img:hover {
  transform: scale(1.04) rotate(1deg);
}
.refill-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}
.refill-bullets li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; font-weight: 500;
  transition: transform var(--transition);
}
.refill-bullets li:hover { transform: translateX(6px); }
.refill-bullets li::before {
  content: '\2713'; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue); color: white;
  font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46,196,241,0.3);
}

/* ─── AROMATIZZATI / FLAVORED OILS ───────────────────────── */
#aromatizzati {
  background: var(--dark);
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
#aromatizzati::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(229,62,62,0.12), transparent 40%),
    radial-gradient(circle at 40% 70%, rgba(91,194,90,0.08), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(45,42,62,0.15), transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(255,203,5,0.08), transparent 40%);
  pointer-events: none;
}
#aromatizzati > * { position: relative; z-index: 1; }
#aromatizzati .section-eyebrow {
  letter-spacing: 0.18em;
}
#aromatizzati .section-title {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}
#aromatizzati .section-body {
  max-width: 580px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}

/* Cap color per flavor */
.flavored-card.peperoncino { --cap-color: #DC2626; --glow-color: rgba(220,38,38,0.35); }
.flavored-card.basilico    { --cap-color: #22C55E; --glow-color: rgba(34,197,94,0.3); }
.flavored-card.tartufo     { --cap-color: #C5A55A; --glow-color: rgba(197,165,90,0.25); }
.flavored-card.limone      { --cap-color: #FBBF24; --glow-color: rgba(251,191,36,0.3); }

.flavored-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.flavored-card {
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
}
.flavored-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.flavored-card.peperoncino { background: linear-gradient(160deg, #E53E3E 0%, #C53030 40%, #9B2C2C 100%); }
.flavored-card.basilico    { background: linear-gradient(160deg, #48BB78 0%, #38A169 40%, #276749 100%); }
.flavored-card.tartufo     { background: linear-gradient(160deg, #4A4560 0%, #2D2A3E 40%, #1A1A2E 100%); }
.flavored-card.limone      { background: linear-gradient(160deg, #ECC94B 0%, #D69E2E 40%, #B7791F 100%); }

/* Light shimmer on cards */
.flavored-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, rgba(255,255,255,0.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.flavored-card:hover::before {
  opacity: 0.7;
}

.flavored-img {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 320px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

/* Glow removed — AI-generated product images don't need it */

/* Cap overlay removed — using AI-generated bottle images with colored caps */

.flavored-img img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
  position: relative;
  z-index: 2;
}
.flavored-card:hover .flavored-img img {
  transform: scale(1.06) translateY(-4px);
}

/* Flavor icons removed — AI-generated bottles have flavor elements in label */
.flavored-info {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.flavored-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  background: rgba(255,255,255,0.18);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}
.flavored-tag.pep { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.2); }
.flavored-tag.bas { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.15); }
.flavored-tag.tar { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.1); }
.flavored-tag.lim { background: rgba(0,0,0,0.12); color: #FFFFF0; border-color: rgba(0,0,0,0.15); }

.flavored-info h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.flavored-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.flavored-size {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.flavored-cta {
  text-align: center;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.flavored-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow);
  background: rgba(255,203,5,0.12);
  padding: 0.45rem 1.4rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,203,5,0.2);
}

/* ─── CHANNELS / PER CHI ─────────────────────────────────── */
#channels {
  background: var(--dark); color: white;
  text-align: center;
  position: relative; overflow: hidden;
}
#channels::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,90,31,0.2), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(46,196,241,0.18), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255,203,5,0.08), transparent 60%);
  pointer-events: none;
}
#channels > * { position: relative; z-index: 1; }
/* channels eyebrow set in contextual block above */
#channels .section-title { color: white; }
#channels .section-body { color: rgba(255,255,255,0.75); margin: 0 auto 3rem; text-align: center; }
.channels-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; margin-top: 3rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.channel-card {
  background: white; color: var(--dark);
  border-radius: 24px; padding: 2.25rem 1.75rem;
  text-align: left; position: relative;
  border-top: 5px solid var(--orange);
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.channel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}
.channel-card.c-d2c    { border-top-color: var(--orange); }
.channel-card.c-promo  { border-top-color: var(--pink); }
.channel-card.c-horeca { border-top-color: var(--blue); }
.channel-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 100px;
  margin-bottom: 1rem;
}
.c-d2c .channel-tag    { background: var(--orange-light); color: var(--orange-deep); }
.c-promo .channel-tag  { background: #FFE0EC; color: #B81E5A; }
.c-horeca .channel-tag { background: var(--blue-light); color: var(--blue-deep); }
.channel-card h3 {
  font-family: var(--serif); font-size: 1.7rem; line-height: 1.15;
  margin-bottom: 0.75rem; color: var(--dark);
}
.channel-card p { font-size: 0.92rem; color: rgba(12,12,12,0.7); line-height: 1.65; margin-bottom: 1.25rem; }
.channel-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.channel-card ul li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.86rem; font-weight: 500; color: var(--dark);
}
.channel-card ul li::before { content: '\2192'; color: var(--orange); font-weight: 800; }
.c-promo ul li::before  { color: var(--pink); }
.c-horeca ul li::before { color: var(--blue); }
.channel-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700;
  padding: 0.65rem 1.2rem; border-radius: 100px;
  background: var(--dark); color: white;
  transition: all var(--transition);
}
.channel-cta:hover { transform: translateX(4px); background: #333; }

/* ─── COUNTRY FLAGS / MARKETS ────────────────────────────── */
.market-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin-top: 2rem;
}
.market-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 0.45rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: white;
  transition: all var(--transition);
}
.market-chip:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.market-chip .flag { font-size: 1.1rem; }

/* ─── BUY CTA ─────────────────────────────────────────────── */
#buy {
  background: var(--yellow); color: var(--dark);
  text-align: center; padding: 7rem 5vw;
  position: relative; overflow: hidden;
}
#buy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.4), transparent 60%);
  pointer-events: none;
}
#buy > * { position: relative; z-index: 1; }
#buy .section-title { color: var(--dark); margin-bottom: 1rem; }
#buy .section-body { color: rgba(12,12,12,0.85); margin: 0 auto 2.5rem; text-align: center; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--dark); color: white;
  padding: 1.1rem 2.8rem; border-radius: 100px;
  font-size: 1.05rem; font-weight: 700;
  border: none;
  box-shadow: 0 8px 32px rgba(12,12,12,0.2);
  transition: all var(--transition);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(12,12,12,0.3);
}
.amazon-note {
  display: block; margin-top: 1.25rem;
  font-size: 0.82rem; color: rgba(12,12,12,0.75);
}

/* ─── NEWSLETTER ──────────────────────────────────────────── */
#newsletter {
  background: var(--gray-light); text-align: center; padding: 5rem 5vw;
  border-top: 3px solid rgba(46,196,241,0.2);
  position: relative; overflow: hidden;
}
#newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(46,196,241,0.08), transparent 60%);
  pointer-events: none;
}
#newsletter > * { position: relative; z-index: 1; }
#newsletter .section-title { margin: 0 auto 0.75rem; max-width: 480px; }
#newsletter .section-body { margin: 0 auto 2rem; text-align: center; max-width: 420px; }
.nl-form {
  display: flex; gap: 0.5rem; justify-content: center;
  flex-wrap: wrap; max-width: 420px; margin: 0 auto;
}
.nl-input {
  flex: 1 1 200px;
  padding: 0.9rem 1.25rem; border-radius: 100px;
  border: 2px solid rgba(0,0,0,0.08); background: white;
  font-family: var(--sans); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: all var(--transition);
}
.nl-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46,196,241,0.15);
}
.btn-nl {
  padding: 0.9rem 1.75rem; border-radius: 100px;
  background: var(--dark); color: white;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 700;
  border: none; transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(12,12,12,0.2);
}
.btn-nl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,12,12,0.3);
  background: #1a1a1a;
}
.nl-note { font-size: 0.75rem; color: rgba(12,12,12,0.6); margin-top: 0.75rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark); color: white;
  padding: 4rem 5vw 2.5rem;
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-pop);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { height: 32px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: white; transform: translateX(3px); display: inline-block; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: white; transform: translateY(-2px); }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-legal { font-size: 0.72rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-links-bottom { display: flex; gap: 1.5rem; }
.footer-links-bottom a { font-size: 0.72rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links-bottom a:hover { color: rgba(255,255,255,0.9); }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.page-header {
  padding: 130px 5vw 5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,203,5,0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,90,31,0.30), transparent 50%),
    var(--white);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 50%, var(--green) 100%) 1;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px;
  background: var(--grad-pop);
}
.page-header .section-eyebrow {
  background: var(--dark); color: white;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  display: inline-block; margin-bottom: 1.25rem;
}
.page-header h1 em {
  font-style: italic;
  background: var(--grad-pop);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-lead {
  font-size: 1.1rem; color: rgba(12,12,12,0.78);
  max-width: 600px; margin-top: 1rem; line-height: 1.65;
}

/* select dropdown */
.form-group select {
  padding: 0.85rem 1.1rem; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.12); background: white;
  font-family: var(--sans); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF5A1F' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.12);
}
.form-status {
  margin-top: 0.5rem; padding: 0; font-size: 0.9rem;
  transition: all 0.3s ease;
}
.form-status.success {
  padding: 0.85rem 1.1rem; border-radius: 12px;
  background: var(--green-light); color: var(--green-dark);
  border: 1.5px solid var(--green); font-weight: 600;
}
.form-status.error {
  padding: 0.85rem 1.1rem; border-radius: 12px;
  background: #FFE0E0; color: #B81E1E;
  border: 1.5px solid #E63B3B; font-weight: 600;
}
.contact-card {
  border-left: 5px solid var(--orange);
  background: white !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition);
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card.c2 { border-left-color: var(--pink); }
.contact-card.c3 { border-left-color: var(--blue); }
.contact-card.c4 { border-left-color: var(--yellow); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding: 4rem 5vw;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  padding: 0.85rem 1.1rem; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.12); background: white;
  font-family: var(--sans); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(235,99,43,0.12);
}
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--orange); color: white;
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(235,99,43,0.3); }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-card {
  background: var(--gray-light); border-radius: 20px;
  padding: 2rem;
}
.contact-card h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.75rem; }
.contact-card p { font-size: 0.9rem; color: rgba(12,12,12,0.78); line-height: 1.7; }
.contact-card a { color: var(--orange); font-weight: 500; }

/* ─── LEGAL PAGES (Privacy, Terms) ───────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 5vw 5rem;
  font-family: var(--sans);
  color: var(--dark);
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(235,99,43,0.2);
  color: var(--dark);
}
.legal-content h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.legal-content h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--orange);
}
.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: rgba(12,12,12,0.82);
}
.legal-content ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
  padding: 0;
}
.legal-content ul li {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: rgba(12,12,12,0.82);
}
.legal-content a {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(235,99,43,0.3);
  transition: border-color var(--transition);
}
.legal-content a:hover {
  border-bottom-color: var(--orange);
}
.legal-card {
  background: var(--gray-light, #f7f7f7);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
}
.legal-card p {
  margin-bottom: 0;
}
.legal-update {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(12,12,12,0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

/* ─── SHOP PAGE ──────────────────────────────────────────── */
.product-hero {
  padding: 100px 5vw 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  background: var(--white);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 50%, var(--green) 100%) 1;
}
.product-gallery { display: flex; flex-direction: column; gap: 1rem; }
.product-gallery-main img { width: 100%; border-radius: 24px; }
.product-gallery-thumbs { display: flex; gap: 0.75rem; }
.product-gallery-thumbs img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: 12px; border: 2px solid transparent;
  cursor: pointer; transition: border-color var(--transition);
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active { border-color: var(--orange); }
.product-info h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
}
.product-info .product-tagline {
  font-size: 1.05rem; color: rgba(12,12,12,0.78);
  margin-bottom: 2rem; line-height: 1.6;
}
.product-features {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.product-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; font-weight: 500;
  list-style: none;
}
.product-features li::before {
  content: '\2713'; color: var(--orange); font-weight: 700;
}
.product-sections { padding: 0 5vw 5rem; }
.product-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.product-section:nth-child(even) img { order: -1; }
.product-section img { width: 100%; border-radius: 24px; }
.product-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

/* ─── FRANTOIO BADGE (Origin) ────────────────────────────── */
.frantoio-card {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.25rem; align-items: center;
  background: white; color: var(--dark);
  border-radius: 22px; padding: 1.5rem 1.75rem;
  border-left: 6px solid var(--yellow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  max-width: 640px;
  transition: all var(--transition);
}
.frantoio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.25);
}
.frantoio-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.frantoio-text strong {
  display: block; font-family: var(--serif);
  font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.25rem;
  color: var(--dark);
}
.frantoio-text span {
  font-size: 0.88rem; color: rgba(12,12,12,0.7);
  line-height: 1.55;
}
.frantoio-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--yellow); color: var(--dark);
  padding: 0.25rem 0.6rem; border-radius: 100px;
  margin-bottom: 0.4rem;
}

/* ─── CHANNEL LANDING ────────────────────────────────────── */
.lp-hero {
  padding: 130px 5vw 5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.lp-hero.lp-d2c    { background: linear-gradient(135deg, #FFE0D0 0%, #FFCB05 100%); }
.lp-hero.lp-promo  { background: linear-gradient(135deg, #FFE0EC 0%, #FF3D7F 100%); color: #1a0010; }
.lp-hero.lp-horeca { background: linear-gradient(135deg, #C5EEFF 0%, #2EC4F1 100%); }
.lp-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--dark); color: white;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.lp-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 1.25rem; color: var(--dark);
}
.lp-sub {
  font-size: 1.15rem; max-width: 520px;
  color: rgba(12,12,12,0.82); margin-bottom: 2rem;
}
.lp-hero-img img { width: 100%; max-width: 480px; margin: 0 auto; display: block; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.18)); }

.lp-section { padding: 5rem 5vw; }
.lp-section.alt { background: var(--gray-light); }
.lp-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15; margin-bottom: 1rem;
}
.lp-section .lp-lead { max-width: 700px; font-size: 1.05rem; color: rgba(12,12,12,0.78); margin-bottom: 2.5rem; }
.lp-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lp-feature {
  background: white; border-radius: 20px; padding: 1.75rem;
  border-top: 5px solid var(--orange);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.lp-feature.pink   { border-top-color: var(--pink); }
.lp-feature.blue   { border-top-color: var(--blue); }
.lp-feature.yellow { border-top-color: var(--yellow); }
.lp-feature.green  { border-top-color: var(--green); }
.lp-feature h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.5rem; }
.lp-feature p { font-size: 0.92rem; color: rgba(12,12,12,0.75); line-height: 1.6; }
.lp-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-light); color: var(--orange-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.lp-feature.pink   .lp-icon { background: #FFE0EC; color: #B81E5A; }
.lp-feature.blue   .lp-icon { background: var(--blue-light); color: var(--blue-deep); }
.lp-feature.yellow .lp-icon { background: var(--yellow-light); color: #8a6b00; }
.lp-feature.green  .lp-icon { background: var(--green-light); color: var(--green-dark); }

.lp-cta-band {
  padding: 5rem 5vw; text-align: center;
  background: var(--grad-pop); color: white;
}
.lp-cta-band.blue   { background: var(--grad-fresh); }
.lp-cta-band.yellow { background: var(--grad-hero); color: var(--dark); }
.lp-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}
.lp-cta-band p { max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; opacity: 0.92; }
.lp-cta-band .btn-white { background: var(--dark); color: white; }
.lp-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.lp-step {
  background: white; border-radius: 20px; padding: 1.5rem;
  border-left: 5px solid var(--orange);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.lp-step .step-n {
  font-family: var(--serif); font-size: 2rem; color: var(--orange);
  line-height: 1; margin-bottom: 0.4rem;
}
.lp-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.lp-step p { font-size: 0.85rem; color: rgba(12,12,12,0.7); line-height: 1.5; }
.lp-steps.pink .lp-step { border-left-color: var(--pink); }
.lp-steps.pink .step-n { color: var(--pink); }
.lp-steps.blue .lp-step { border-left-color: var(--blue); }
.lp-steps.blue .step-n { color: var(--blue-deep); }

@media (max-width: 900px) {
  .lp-hero {
    grid-template-columns: 1fr;
    padding: 90px 5vw 3rem;
    text-align: center;
    gap: 2rem;
  }
  .lp-hero-img { order: -1; }
  .lp-hero-img img { max-width: 320px; }
  .lp-title { font-size: 2.4rem; }
  .lp-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lp-hero { padding: 80px 1.25rem 2.5rem; }
  .lp-hero-img img { max-width: 260px; }
  .lp-title { font-size: 2rem; }
  .lp-sub { font-size: 1rem; }
}
@media (max-width: 600px) {
  .lp-steps { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out-expo);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero {
    min-height: 100svh;
    padding: 100px 1.5rem 60px;
    align-items: flex-end;
  }
  #hero::after {
    background:
      linear-gradient(180deg, rgba(12,12,12,0.2) 0%, rgba(12,12,12,0.5) 50%, rgba(12,12,12,0.85) 100%);
  }
  .hero-bottle {
    object-position: center 25%;
  }
  .hero-content { padding-top: 0; text-align: left; }
  .hero-subtitle { margin-left: 0; }
  .hero-ctas { justify-content: flex-start; }
  .hero-badges { justify-content: flex-start; }
  .hero-blob { display: none; }
  .hero-scroll-indicator { display: none; }
  #dosing, #quality .quality-grid, #refill { grid-template-columns: 1fr; gap: 3rem; }
  .origin-points { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .flavored-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .flavored-img { min-height: 280px; padding-top: 1.5rem; }
  .flavored-img img { width: 70%; max-height: 260px; }
  .flavored-img::after { width: 70%; height: calc(100% - 1.5rem); max-height: 260px; }
  .flavored-info h3 { font-size: 1.4rem; }
  .flavor-icon { font-size: 2rem; top: 0.75rem; left: 0.75rem; }
  .channels-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: 1fr; padding-top: 80px; }
  .product-section { grid-template-columns: 1fr; }
  .product-section:nth-child(even) img { order: 0; }
}
@media (max-width: 600px) {
  section { padding: 5rem 1.25rem; }
  #dosing, #refill { padding: 5rem 1.25rem; }
  .flavored-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .flavored-img { padding: 1.25rem 0.75rem 0; min-height: 220px; }
  .flavored-img img { width: 70%; max-height: 190px; }
  .flavored-img::after { width: 70%; height: calc(100% - 1.25rem); max-height: 190px; }
  .flavored-info { padding: 1rem 0.85rem 1.25rem; }
  .flavored-info h3 { font-size: 1.15rem; }
  .flavored-info p { font-size: 0.78rem; }
  .flavor-icon { font-size: 1.6rem; top: 0.5rem; left: 0.5rem; }
  #aromatizzati { padding: 4rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.8rem; }
}
