:root {
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --white: #fff;
  --ink: #1c1b19;
  --ink-soft: #4a4744;
  --muted: #6b6560;
  --text-muted: #6b6560;
  --mint: #c5e4dc;
  --mint-deep: #7eb8aa;
  --sage: #2d4a42;
  --blush: #f5e6e0;
  --peach: #e8a598;
  --accent-cta: #1a1a1a;
  --accent-cta-hover: #2d2d2d;
  --ring: rgba(45, 74, 66, 0.12);
  --shadow: 0 4px 24px rgba(28, 27, 25, 0.06);
  --shadow-lg: 0 20px 60px rgba(28, 27, 25, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
}

/* —— Top bars (Nuzzle urgency + Bidetlity freshness) —— */
.urgency-bar {
  background: linear-gradient(90deg, #2d4a42, #1e3330);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.urgency-bar span {
  color: #c5e4dc;
}

.promo-pill {
  background: var(--mint);
  color: var(--sage);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

/* —— Header —— */
.site-header {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--ring);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--mint-deep);
}

.nav-inline {
  display: none;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav-inline a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-inline a:hover {
  color: var(--sage);
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-inline {
    display: flex;
  }
}

/* —— Buttons —— */
.btn-primary,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-cta);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--accent-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-primary--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-on-dark {
  background: #fff !important;
  color: var(--sage) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.btn-on-dark:hover {
  background: var(--mint) !important;
  color: var(--sage) !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.header-cta {
  padding: 11px 22px;
  font-size: 14px;
}

/* —— Hero (split, product-page vibe) —— */
.hero-wrap {
  padding: 32px 0 48px;
  background: linear-gradient(165deg, #fff 0%, var(--cream) 45%, var(--mint) 120%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
  }
}

.hero-visual {
  position: relative;
}

.hero-photo-stack {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.hero-photo-stack img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-photo-stack {
  min-height: 0;
}

.hero-float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  box-shadow: var(--shadow);
  z-index: 5;
}

.hero-copy h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 34em;
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
  margin-bottom: 16px;
}

.hero-price-row .old {
  font-size: 1.25rem;
  color: var(--muted);
  text-decoration: line-through;
}

.hero-price-row .now {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-price-row .save {
  background: var(--mint);
  color: var(--sage);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 22px;
  font-size: 15px;
}

.stars {
  color: #e5a723;
  letter-spacing: 1px;
}

.countdown-card {
  background: var(--white);
  border: 1px solid var(--ring);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.countdown-card > p {
  margin: 0 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted);
}

.countdown {
  display: flex;
  gap: 10px;
}

.countdown .unit {
  flex: 1;
  background: var(--cream-dark);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

.countdown .unit small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--mint);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d4a42' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* —— Marquee —— */
.marquee-wrap {
  overflow: hidden;
  background: var(--sage);
  color: #fff;
  padding: 12px 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee span {
  padding: 0 28px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.95;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* —— Sections —— */
section {
  padding: 56px 0;
}

section.section-white {
  background: var(--white);
}

section.section-mint {
  background: linear-gradient(180deg, var(--mint) 0%, #d8efe8 100%);
}

section.section-blush {
  background: var(--blush);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* —— Benefit cards (Bidetlity “Rinse and shine” style) —— */
.benefit-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--ring);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* —— Bento gallery —— */
.bento {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, 1fr);
  }
}

.bento-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 150px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}

@media (min-width: 700px) {
  .bento-item {
    min-height: 200px;
  }
}

.bento-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-item--tall {
  grid-row: span 2;
}

.bento-item--wide {
  grid-column: span 2;
}

@media (max-width: 699px) {
  .bento-item--tall,
  .bento-item--wide {
    grid-row: auto;
    grid-column: auto;
  }
}

.steps-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* —— Specs —— */
.specs-wrap {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .specs-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.specs-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
}

.specs-card h2 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0 0 8px;
}

.specs-card .sub {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 15px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: default;
  transition: transform 0.2s;
}

.swatch:hover {
  transform: scale(1.12);
}

.swatch.purple {
  background: #6b4fa3;
}
.swatch.mint {
  background: #7ec8b8;
}
.swatch.grey {
  background: #9aa0a8;
}
.swatch.sand {
  background: #d4c4a8;
}
.swatch.peach {
  background: #e8a598;
}
.swatch.black {
  background: #222;
}
.swatch.ruby {
  background: #c41e3a;
}

.specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 15px;
}

.specs li:last-child {
  border-bottom: none;
}

.specs span:last-child {
  font-weight: 600;
  text-align: right;
}

/* —— Nature / lifestyle —— */
.nature-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .nature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-lg);
}

.nature-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nature-card:hover img {
  transform: scale(1.06);
}

/* Frutta: colori più vividi e riconoscibili */
.nature-vivid .nature-card img {
  filter: saturate(1.45) contrast(1.12) brightness(1.06);
}

.nature-vivid .nature-card:hover img {
  filter: saturate(1.55) contrast(1.14) brightness(1.08);
}

.nature-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(28, 27, 25, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.nature-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-family: "Fraunces", Georgia, serif;
}

.nature-card p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.45;
}

/* —— Steps —— */
.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin-bottom: 26px;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 2px solid var(--sage);
  color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.step-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* —— FAQ —— */
.faq-item {
  background: var(--white);
  border: 1px solid var(--ring);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--mint-deep);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* —— Reviews —— */
.reviews-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid var(--ring);
  transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.review-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
}

.review-card .name {
  font-weight: 700;
}

.review-card .badge {
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 600;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.reviews-more {
  text-align: center;
  margin-top: 28px;
}

.btn-ghost {
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.review-hidden {
  display: none;
}

.review-hidden.is-visible {
  display: grid;
}

/* —— CTA band —— */
.cta-band {
  background: linear-gradient(135deg, var(--sage), #1a2e29);
  color: #fff;
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 228, 220, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.cta-band h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 12px;
  position: relative;
}

.cta-band > .container > p {
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 24px;
  position: relative;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 44px 0 28px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mint);
  text-decoration: underline;
}

.footer-links span {
  opacity: 0.35;
}

.footer-company {
  max-width: 560px;
  margin: 0 auto 22px;
  text-align: center;
  line-height: 1.75;
}

.footer-company strong {
  color: #fff;
}

.footer-company a {
  color: var(--mint);
}

.copyright {
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
  margin: 0;
}

/* —— Inner pages —— */
.page-hero {
  background: linear-gradient(180deg, var(--white), var(--cream));
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--ring);
}

.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.1rem);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 56px;
}

.prose h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.prose ul {
  padding-left: 1.2rem;
}

/* —— Sticky mobile CTA —— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 100;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--ring);
}

.sticky-cta .mini {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta .btn-primary {
  padding: 12px 22px;
  font-size: 14px;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

body.has-sticky {
  padding-bottom: 76px;
}

@media (min-width: 900px) {
  body.has-sticky {
    padding-bottom: 0;
  }
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* —— Floating shapes (decorative) —— */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.blob--1 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  top: -40px;
  right: -40px;
}

.blob--2 {
  width: 160px;
  height: 160px;
  background: var(--blush);
  bottom: 10%;
  left: -60px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }

  .hero-photo-stack img {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .benefit-card:hover,
  .bento-item:hover,
  .review-card:hover {
    transform: none;
  }
}
