

:root {
  --cream: #f4f4f2;
  --cream-soft: #ffffff;
  --ink: #2d3826;
  --text: #4f4f42;

  --muted: #5d5850;
  --green: #59811c;
  --green-dark: #496c15;
  --line: #dfcca9;
  --white: #ffffff;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Quicksand", "Segoe UI", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(90, 70, 40, 0.10);
  --maxw: 1240px;
}

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

  overscroll-behavior-x: none;
}
body {

  overflow-x: clip;
  font-family: var(--font-sans);

  font-weight: 500;
  color: var(--text);
  background: var(--cream-soft);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }


.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo { line-height: 1.05; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--ink);
  font-weight: 600;
}
.logo-main em { font-style: normal; color: var(--green); }


.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover { color: var(--green); }
.nav a.active { color: var(--green); border-color: var(--green); }


.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.lang-switch .on { color: var(--green); }
.lang-switch a { color: var(--muted); transition: color .2s; }
.lang-switch a:hover { color: var(--ink); }
.lang-switch > * + *::before {
  content: "/";
  margin-right: 7px;
  color: var(--line);
  font-weight: 400;
}


.header-wa {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #03813a;
  color: var(--white);
  transition: background .2s, transform .15s;
}
.header-wa svg { width: 21px; height: 21px; }
.header-wa:hover { background: #026b30; }
.header-wa:active { transform: scale(.94); }

.header-wa.is-off { display: none; }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
}


.hero {
  background:
    radial-gradient(circle at 78% 42%, #ededea 0%, transparent 34%),
    var(--cream);
  overflow: hidden;
  position: relative;
}


.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding: 72px 28px 88px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-inner > div { max-width: 660px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
}
.hero-title .dot { color: var(--green); }

.hero-rule {
  width: 64px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 26px 0;
}

.hero-text { max-width: 420px; margin-bottom: 34px; }


.hero-bg-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 56%; overflow: hidden; z-index: 0;
}
.hero-bg-panel img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  display: block; max-width: none;
}
.hero-bg-panel::after {
  content: ""; position: absolute; inset: 0;

  background: linear-gradient(90deg, #f4f4f2 0%, rgba(244,244,242,.85) 8%, rgba(244,244,242,.32) 24%, rgba(244,244,242,0) 44%);
}
@media (max-width: 900px) {

  .hero-bg-panel { width: 100%; top: 0; height: auto; }
  .hero-bg-panel img { object-position: center center; }
  .hero-bg-panel::after {

    background:
      radial-gradient(110% 34% at 50% 43%, rgba(244,244,242,.84) 0%, rgba(244,244,242,.7) 45%, rgba(244,244,242,0) 100%),
      linear-gradient(180deg, rgba(244,244,242,.62) 0%, rgba(244,244,242,.3) 26%, rgba(244,244,242,.1) 60%, rgba(244,244,242,0) 100%);
  }
}


.hero-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
}
.hero-flowers svg { position: absolute; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 14px 26px;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, transform .15s;
}
.btn-arrow { font-size: 16px; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-solid {
  --btn-bg: var(--green);
  --btn-bg-h: var(--green-dark);
  background: var(--btn-bg);
  color: #fff;
}
.btn-solid:hover { background: var(--btn-bg-h); }

.btn-outline {
  --btn-color: var(--green);
  --btn-dark: var(--green-dark);
  background: var(--white);
  color: var(--btn-color);
  border: 1.5px solid var(--btn-color);
  padding: 10px 18px;
  font-size: 13px;
}
.btn-outline:hover { background: var(--btn-color); color: #fff; }


.hero-shelf { text-align: center; }

.shelf-boxes {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  padding: 0 10px;
  flex-wrap: wrap;
}

.shelf-boxes .box-mockup { flex: 0 0 auto; }

.shelf-row + .shelf-row { margin-top: 30px; }

.shelf-base {
  height: 26px;
  margin: 0 auto;
  margin-top: -2px;
  width: 92%;
  background: linear-gradient(#efe3cf, #e4d5bc);
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 18px 30px rgba(120, 90, 50, .18);
}


.box-mockup {
  --box-color: #888;
  --box-dark: #666;
  position: relative;
  display: inline-flex;
  filter: drop-shadow(0 12px 14px rgba(100, 75, 40, .22));
  transition: transform .25s;
}
.box-mockup:hover { transform: translateY(-5px); }

.box-front {
  background: #fff;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}

.box-side {
  width: 12px;
  background: linear-gradient(to right, rgba(0,0,0,.16), rgba(0,0,0,.05));
  border-radius: 3px 0 0 3px;
  background-color: #f1f1ef;
}


.box-xs .box-front { width: 74px;  height: 108px; }
.box-sm .box-front { width: 108px; height: 158px; }
.box-md .box-front { width: 150px; height: 218px; }
.box-lg .box-front { width: 220px; height: 320px; }
.box-xs .box-side { width: 6px; }
.box-sm .box-side { width: 8px; }
.box-lg .box-side { width: 16px; }


.box-arrivo { filter: none; }
.box-arrivo:hover { transform: none; }
.box-arrivo .box-front {
  border: 2px dashed var(--box-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, .5);
  align-items: center;
  justify-content: center;
}
.box-arrivo span {

  transform: rotate(-45deg);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--box-dark);
  font-size: 20px;
  letter-spacing: 1px;
}

.box-arrivo.box-xs span { font-size: 13px; letter-spacing: .65px; }
.box-arrivo.box-md span { font-size: 28px; letter-spacing: 1.4px; }
.box-arrivo.box-lg span { font-size: 42px; letter-spacing: 2.1px; }

html[lang="en"] .box-arrivo span { font-size: 15px; letter-spacing: .75px; }

html[lang="en"] .box-arrivo.box-xs span { font-size: 10.5px; letter-spacing: 0; }
html[lang="en"] .box-arrivo.box-md span { font-size: 21px; letter-spacing: 1.05px; }
html[lang="en"] .box-arrivo.box-lg span { font-size: 31px; letter-spacing: 1.55px; }

.box-top {
  padding: 9% 10% 6%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.box-name {
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--box-color);
  font-size: clamp(9px, 1em, 20px);
}
.box-md .box-name { font-size: 17px; }
.box-lg .box-name { font-size: 25px; }
.box-sm .box-name { font-size: 12px; }
.box-xs .box-name { font-size: 9px; }

.box-brand-sm, .box-format {
  font-weight: 400;
}
.box-brand-sm {
  font-size: 6px;
  letter-spacing: 1.5px;
  color: #9a9a90;
}
.box-md .box-brand-sm { font-size: 7px; }
.box-lg .box-brand-sm { font-size: 9px; }

.box-panel {
  background: var(--box-color);
  color: #fff;
  font-weight: 600;
  padding: 8% 10%;
  font-size: 7px;
  line-height: 1.45;
  letter-spacing: .3px;
  min-height: 26%;
  max-height: 38%;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.box-md .box-panel { font-size: 8.5px; }
.box-lg .box-panel { font-size: 11px; }
.box-xs .box-panel { font-size: 5px; padding: 6% 8%; }

.box-claim {
  padding: 8% 10%;
  color: var(--box-color);
  font-weight: 700;
  font-size: 7px;
  line-height: 1.45;
  letter-spacing: .3px;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.box-md .box-claim { font-size: 8.5px; }
.box-lg .box-claim { font-size: 11px; }
.box-xs .box-claim { font-size: 5px; }

.box-bottom {
  padding: 6% 10% 8%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #f0ede6;
}
.box-logo {
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--ink);
}
.box-logo em { font-style: normal; color: var(--green); }
.box-md .box-logo { font-size: 10px; }
.box-lg .box-logo { font-size: 13px; }
.box-format {
  font-size: 5.5px;
  color: #9a9a90;
  text-align: right;
  line-height: 1.4;
}
.box-md .box-format { font-size: 6.5px; }
.box-lg .box-format { font-size: 8.5px; }



.box-photo img {
  object-fit: contain;

  max-width: none;
}
.box-photo.box-xs img { width: 80px;  height: 114px; }
.box-photo.box-sm img { width: 116px; height: 164px; }
.box-photo.box-md img { width: 162px; height: 226px; }
.box-photo.box-lg img { width: 236px; height: 330px; }


.formules { padding: 74px 0 30px; text-align: center; }

.section-leaf { color: var(--green); width: 26px; margin: 0 auto 10px; }
.section-leaf svg { width: 100%; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
  font-weight: 600;
}
.section-sub { margin-top: 8px; font-size: 16px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  max-width: var(--maxw);
  margin: 44px auto 0;
  padding: 0 28px;
}


.product-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--card-bg, #f6f6f2);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: transform .22s, box-shadow .22s;
  outline-color: var(--card-main);
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-art {
  height: 176px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-art svg, .card-art-img { height: 100%; margin: 0 auto; }

.card-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--card-main);
  margin-bottom: 10px;
}
.card-tagline {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 8px;
}
.card-ingredients { font-size: 14.5px; margin-bottom: 20px; }


.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.card-prezzo {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}


.features-wrap { padding: 40px 28px 80px; max-width: var(--maxw); margin: 0 auto; }

.features-strip {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding: 34px 20px;
}

.feature {
  display: flex;
  gap: 16px;
  padding: 8px 26px;
  align-items: flex-start;
}
.feature + .feature { border-left: 1px solid var(--line); }
.feature-ico {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.feature-ico svg { width: 26px; height: 26px; }
.feature h3 {
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}
.feature p { font-size: 14.5px; line-height: 1.55; }


.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 34px 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-note { font-size: 14px; line-height: 1.6; }
.footer-links { display: flex; gap: 0; align-items: center; flex-wrap: wrap; }
.footer-links a {
  font-size: 14px;
  color: var(--text);
  padding: 0 22px;
}
.footer-links a:hover { color: var(--green); }
.footer-links a + a { border-left: 1px solid var(--line); }

.preview-body-wrap {
  margin-top: 16px;
  background: var(--pv-bg, #f4f0e6);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.body-schema {
  height: 230px;
  background: url("../assets/img/corpo.svg") center / contain no-repeat;
}

.zone-on { opacity: 1; }
.zone-off { opacity: 0; }


.wm-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: wm-pulse 2.8s ease-out infinite;
}
.wm-pulse-2 { animation-delay: 1.4s; }
@keyframes wm-pulse {
  0%   { transform: scale(.35); opacity: .85; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
.wm-nerve path:first-child {
  stroke-dasharray: 5 7;
  animation: wm-nerve 3.5s linear infinite;
}
@keyframes wm-nerve {
  to { stroke-dashoffset: -48; }
}
@media (prefers-reduced-motion: reduce) {
  .wm-pulse, .wm-nerve path:first-child { animation: none; }
  .wm-pulse { opacity: .35; }
}

.zone-tag {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.perchi-list { display: flex; flex-direction: column; gap: 9px; }
.perchi-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.perchi-ico {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pv-soft, #eee);
  display: grid;
  place-items: center;
}
.perchi-ico svg { width: 18px; height: 18px; }

.quando-list { display: flex; flex-direction: column; gap: 6px; }
.quando-list li {
  font-size: 14.5px;
  padding-left: 18px;
  position: relative;
}
.quando-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot, var(--green));
}


.scheda-hero {
  background:
    radial-gradient(circle at 22% 40%, var(--p-soft) 0%, transparent 45%),
    var(--cream);
  padding: 56px 0 64px;
}
.scheda-hero-inner {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.4fr;
  gap: 52px;
  align-items: center;
}
.scheda-mock { display: flex; justify-content: center; }

.breadcrumb { font-size: 13.5px; margin-bottom: 18px; color: var(--muted); }
.breadcrumb span { margin: 0 6px; }
.breadcrumb strong { color: var(--p-dark); }

.scheda-name {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 600;
  color: var(--p-main);
  line-height: 1.05;
}
.scheda-tagline {
  font-weight: 700;
  color: var(--ink);
  font-size: 18px;
  margin: 10px 0 18px;
}
.scheda-desc { max-width: 620px; font-size: 16px; }

.scheda-meta { display: flex; gap: 10px; margin: 22px 0 26px; flex-wrap: wrap; }


.scheda-cta { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px 18px; }


.acquisto { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px 16px; }

.prezzo {

  flex: 0 0 100%;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--p-dark, var(--ink));
}

.acquisto-arrivo {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1.5px dashed var(--p-main, var(--line));
  border-radius: 8px;
  padding: 13px 20px;
}

.acquisto-nota {
  padding-bottom: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--muted);
}


.btn-compra-wa {
  font-size: 12.5px;
  padding: 10px 16px;
  gap: 8px;
}
.btn-compra-wa svg { width: 15px; height: 15px; flex: 0 0 auto; }

.btn-compra-wa .wa-etichetta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.btn-compra-wa .wa-etichetta small { font-size: 11px; letter-spacing: .4px; opacity: .92; }

.btn-compra-wa {
  background: #03813a;
  border-color: #03813a;
  color: var(--white);
}
.btn-compra-wa:hover { background: #026b30; border-color: #026b30; color: var(--white); }

.btn-compra-wa.is-off { opacity: .45; pointer-events: none; }


.meta-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--p-dark);
  padding: 6px 16px;
  letter-spacing: .3px;
}

a.meta-pill { text-decoration: none; transition: border-color .2s, background .2s; }
a.meta-pill:hover { border-color: var(--p-main); background: var(--p-bg); }

.scheda-body { padding: 64px 28px 20px; }
.scheda-cols {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 48px;
  align-items: start;
}

.scheda-cols > *, .scheda-hero-inner > * { min-width: 0; }

.section-title-sm {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 34px 0 18px;
}
.scheda-col-main .section-title-sm:first-child { margin-top: 0; }

.agisce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.agisce-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  overflow: hidden;
}
.agisce-item h4 { font-size: 15px; margin-bottom: 6px; }
.agisce-item p { font-size: 14.5px; line-height: 1.55; }


.agisce-item .ing-foto,
.agisce-item .ing-tavola,
.agisce-item .ing-formula {
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  margin: -18px -20px 14px;
}

.agisce-item .ing-formula { height: 148px; }

.agisce-item .ing-foto,
.agisce-item .ing-tavola { aspect-ratio: 16 / 9; }
.agisce-item .ing-foto { object-fit: cover; }


.ing-foto[src$="curcuma.webp"]       { object-position: center 38%; }
.ing-foto[src$="cardo-mariano.webp"] { object-position: center 25%; }
.ing-foto[src$="carciofo.webp"]      { object-position: center 21%; }
.ing-foto[src$="fumaria.webp"]       { object-position: center 19%; }
.ing-foto[src$="propoli.webp"]       { object-position: center 59%; }
.ing-foto[src$="rusco.webp"]         { object-position: center 36%; }
.agisce-item .ing-tavola {
  object-fit: cover;
  object-position: center 30%;
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
}
.agisce-item .ing-formula {
  object-fit: contain;
  padding: 12px;
  background: var(--p-bg, #f7f3ea);
  border-bottom: 1px solid var(--line);
}

.ingredienti-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ingredienti-table th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--p-bg);
  color: var(--p-dark);
  padding: 12px 18px;
}
.ingredienti-table td {
  padding: 11px 18px;
  font-size: 15px;
  border-top: 1px solid #eeeeec;
}
.ingredienti-table td:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.table-note { font-size: 13px; margin-top: 8px; color: var(--muted); }

.scheda-text { font-size: 15.5px; max-width: 660px; }
.avvertenze { font-size: 14px; color: var(--muted); }


.ingredienti-table.has-max td:nth-child(2) { font-weight: 700; color: var(--ink); }
.ingredienti-table.has-max td:last-child { font-weight: 500; color: var(--muted); }


.label-info {
  margin: 44px 0 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9f9f8;
}
.label-info summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 22px;
  user-select: none;
}
.label-info summary::-webkit-details-marker { display: none; }
.label-info summary::before {
  content: "+";
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  transform: translateY(2px);
}
.label-info[open] summary::before { content: "\2013"; }
.label-info-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
}
.label-info-hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
}
.label-info-body {
  padding: 4px 22px 10px;
  columns: 2;
  column-gap: 40px;
}
.label-block { break-inside: avoid; margin-bottom: 18px; }
.label-block h4 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.label-block p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
@media (max-width: 720px) { .label-info-body { columns: 1; } }

.scheda-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.aside-card h3 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--p-dark);
  margin-bottom: 14px;
}
.aside-card .preview-body-wrap { margin-top: 0; background: var(--p-bg); }

.scheda-altri { padding: 30px 28px 90px; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.mini-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 14px 18px;
  transition: transform .2s, box-shadow .2s;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-card strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--card-main);
  display: block;
}
.mini-card span { font-size: 13.5px; color: var(--ink); line-height: 1.4; display: block; }


.page-hero {
  background: var(--cream);
  text-align: center;
  padding: 58px 28px;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  color: var(--ink);
}
.page-hero p { max-width: 640px; margin: 14px auto 0; }

.page-body { max-width: 880px; margin: 0 auto; padding: 56px 28px 90px; }
.page-body h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink);
  font-weight: 600;
  margin: 38px 0 14px;
}
.page-body h2:first-child { margin-top: 0; }

.page-body > section { margin-top: 76px; }
.page-body > section > h2:first-child { margin-top: 0; }


.page-body > section::before,
.page-body > h2:not(:first-child)::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  margin-bottom: 40px;
}

.page-body > h2:not(:first-child) { margin-top: 64px; }
.page-body p + p { margin-top: 12px; }
.page-body ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.page-body li + li { margin-top: 6px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.value-card h3 { color: var(--green-dark); font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 15px; }


.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: start;
}
.contact-whatsapp-cta {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-whatsapp-button {
  width: min(100%, 440px);
  justify-content: center;
  padding: 20px 30px;
  font-size: 18px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--green); border-color: transparent; }


.cta {
  background: var(--cream);
  padding: 58px 28px 64px;
  text-align: center;
}
.cta-text {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 24px;
}


.btn-wa { margin-top: 12px; }
.btn-wa svg { width: 18px; height: 18px; flex: 0 0 auto; }

.btn-wa.is-off { opacity: .45; cursor: not-allowed; pointer-events: none; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info .aside-card h3 { color: var(--green-dark); }
.contact-info .aside-card p { font-size: 15px; }


.gloss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.gloss-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
}
.gloss-card h3 { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.gloss-card .gloss-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.gloss-card p { font-size: 14.5px; }


.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.hero-badges li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.hero-badges li.badge-link { padding-right: 0; }
.hero-badges li.badge-link > a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px 6px 0;
  margin: -6px 0;
  color: inherit;
  text-decoration: none;
}
.hero-badges li.badge-link:hover {
  border-color: var(--green);
  background: rgba(255, 255, 255, .92);
}




.approach { padding: 78px 28px; }
.approach-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.approach-intro { max-width: 720px; margin: 14px auto 0; }

.approach-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 46px;
  text-align: left;
}
.approach-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.approach-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.approach-step h3 { font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.approach-step p { font-size: 14px; line-height: 1.55; }


.benefici-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 20px;
}
.benefici-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  line-height: 1.55;
}
.ben-check { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; }
.ben-check svg { width: 100%; height: 100%; }
.benefici-nota {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 660px;
}


.sinergia-panel {
  background: var(--sp-bg, #f6f6f2);
  border-radius: var(--radius);
  padding: 28px 30px;
  border-left: 4px solid var(--sp-main, var(--green));
}
.sinergia-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--sp-dark, var(--ink));
  margin-bottom: 10px;
}
.sinergia-intro { font-size: 15.5px; max-width: 680px; }
.sinergia-list {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sinergia-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, .72);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 15px;
}
.sinergia-list strong { color: var(--sp-dark, var(--ink)); }
.sin-arrow { color: var(--sp-main, var(--green)); font-weight: 700; }
.sinergia-outro {
  font-size: 14px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, .12);
}


.scheda-claim3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  letter-spacing: .5px;
  margin: -8px 0 16px;
}

.scheda-claim3 .c3-dot { display: inline-block; margin: 0 10px; opacity: .55; }


.lang-hint {
  position: fixed;
  left: 16px; right: 16px; bottom: 18px;
  margin: 0 auto;
  width: fit-content;
  max-width: min(560px, calc(100vw - 32px));
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(60, 45, 20, .18);
  padding: 14px 20px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .25s, transform .25s;
}
.lang-hint.in { opacity: 1; transform: none; }
.lang-hint p { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.lang-hint-azioni { display: flex; align-items: center; gap: 14px; }
.lang-hint .btn { padding: 10px 18px; font-size: 12.5px; }
.lang-hint-no {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  padding: 10px 4px;
}
.lang-hint-no:hover { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .lang-hint { transition: none; }
}
@media (max-width: 560px) {
  .lang-hint { width: auto; text-align: center; padding: 16px 18px; }
  .lang-hint-azioni { width: 100%; justify-content: center; }
}


.spiega-wrap { position: relative; display: inline-block; }
.spiega {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  padding: 0;
  margin-left: 4px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  vertical-align: 3px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.spiega:hover,
.spiega[aria-expanded="true"] { background: var(--green); border-color: var(--green); color: var(--white); }

.spiega-bolla {
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: max-content;
  max-width: min(270px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(40, 32, 16, .3);
  text-align: left;

  font-family: var(--font-sans);
  font-style: normal;
  letter-spacing: normal;
  cursor: auto;
}
.spiega-bolla[hidden] { display: none; }
.spiega-bolla::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(calc(-50% + var(--coda-dx, 0px)));
  border: 7px solid transparent;
  border-bottom: 0;
  border-top-color: var(--ink);
}
.spiega-titolo {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #b9c7ac;
}
.spiega-testo { font-size: 13.5px; font-weight: 500; line-height: 1.5; }
.spiega-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.spiega-link:hover { color: #cfe0bf; }


.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
.table-scroll .ingredienti-table { min-width: 420px; }

section[id] { scroll-margin-top: 86px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

:where(a, button):focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }


@media (max-width: 1100px) {
  .approach-steps { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; text-align: center; }
  .hero-rule { margin: 26px auto; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .shelf-boxes { flex-wrap: wrap; }
  .scheda-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .breadcrumb { text-align: center; }
  .scheda-meta { justify-content: center; }

  .scheda-cta { justify-content: center; }
  .acquisto { justify-content: center; }
  .scheda-desc { margin: 0 auto; }
  .scheda-cols { grid-template-columns: 1fr; }

  .scheda-aside { position: static; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-whatsapp-cta { min-height: 220px; padding: 28px; }
  .feature + .feature { border-left: none; border-top: 1px solid var(--line); margin-top: 10px; padding-top: 18px; }
}


@media (max-width: 1020px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; animation: navdrop .22s ease; }
  @keyframes navdrop {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
  }
  .nav a { padding: 14px 28px; width: 100%; border-bottom: none; }

  .nav-burger { display: block; min-width: 44px; min-height: 40px; margin-left: auto; }
  .header-inner { gap: 14px; }
}

@media (max-width: 560px) {

  .hero-inner { padding: 44px 20px 60px; }
  .hero-flowers { opacity: .3; }
  .container, .header-inner, .footer-inner, .features-wrap, .scheda-body { padding-left: 20px; padding-right: 20px; }


  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 12px; gap: 12px; }
  .product-card { padding: 16px 10px 14px; }

  .card-art { position: relative; height: 220px; margin-bottom: 10px; }
  .product-grid .card-art .box-mockup,
  .product-grid .card-art .box-mockup:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
  }


  .card-name { font-size: 21px; margin-bottom: 6px; color: var(--card-dark); }
  .card-tagline { font-size: 13px; line-height: 1.35; margin-bottom: 6px; }
  .card-ingredients { font-size: 12.5px; line-height: 1.4; margin-bottom: 14px; }
  .product-card .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 10px 6px;
    font-size: 11px;
    letter-spacing: .6px;
  }

  .card-actions { gap: 8px; }
  .card-prezzo { width: 100%; text-align: center; font-size: 19px; }
  .formules, .approach { padding-left: 20px; padding-right: 20px; }

  .shelf-boxes { gap: 12px; }
  .box-photo.box-md img { width: 118px; height: 168px; }
  .box-md .box-front { width: 112px; height: 164px; }

  .body-schema { height: 200px; }

  .sinergia-panel { padding: 22px 18px; }
  .scheda-claim3 { font-size: 17px; }
  .features-strip { padding: 22px 8px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }


  .contact-form input, .contact-form textarea, select { font-size: 16px; }


  .gloss-card .gloss-tag { font-size: 12px; padding: 8px 13px; }

  .spiega { position: relative; }
  .spiega::after { content: ""; position: absolute; inset: -14px; }
  .breadcrumb a { display: inline-block; padding: 7px 0; }
  .footer-links { gap: 2px 0; }
  .footer-links a { padding: 11px 18px; }
  .footer-links a:first-child { padding-left: 0; }


  .zone-tag { font-size: 12.5px; }


  .table-scroll .ingredienti-table { min-width: 320px; }
  .ingredienti-table.has-max { min-width: 420px; }
}


@media (max-width: 440px) {
  .card-art { height: 172px; }
  .product-grid .card-art .box-mockup,
  .product-grid .card-art .box-mockup:hover { transform: translate(-50%, -50%); }
}

@media (max-width: 380px) {
  .header-inner { gap: 10px; }
  .logo-main { font-size: 26px; }
  .header-wa { width: 34px; height: 34px; }
  .header-wa svg { width: 19px; height: 19px; }
}

@media (max-width: 360px) {
  .card-art { height: 138px; }
  .product-grid .card-art .box-mockup,
  .product-grid .card-art .box-mockup:hover { transform: translate(-50%, -50%) scale(.8); }
  .card-name { font-size: 19px; }
  .card-tagline { font-size: 12.5px; }
  .card-ingredients { font-size: 12px; }
}
