:root {
  --verde: #1a5532;
  --verde-m: #2d7a4a;
  --verde-c: #4a9c6a;
  --verde-p: #e8f5ee;
  --oro: #3aac65;
  --oro-c: #5fcc85;
  --bianco: #fafaf8;
  --crema: #f5f0e8;
  --testo: #1a1a1a;
  --grigio: #6b7280;
  --grigio-c: #f3f4f6;
  --fd: "Cormorant Garamond", Georgia, serif;
  --fs: "Cormorant", Georgia, serif;
  --fb: "Montserrat", system-ui, sans-serif;
  --r: 4px;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fb);
  color: var(--testo);
  background: var(--bianco);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--fb);
}

/* Typography helpers */
.section-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-family: var(--fs);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--verde);
  margin-bottom: 0.3rem;
}
.section-desc {
  font-size: 0.97rem;
  color: var(--grigio);
  max-width: 600px;
  line-height: 1.85;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 100px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r);
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: #ffffff;
  color: var(--verde);
}
.btn-primary:hover {
  background: var(--verde-p);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}
.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-verde {
  background: var(--verde);
  color: #fff;
}
.btn-verde:hover {
  background: var(--verde-m);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 85, 50, 0.3);
}
.btn-outline-verde {
  border: 1.5px solid var(--verde);
  color: var(--verde);
  padding: 12px 26px;
}
.btn-outline-verde:hover {
  background: var(--verde);
  color: #fff;
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Decorative gold line */
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--oro), var(--oro-c));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.anim {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--tr),
    transform 0.65s var(--tr);
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 {
  transition-delay: 0.1s;
}
.anim-delay-2 {
  transition-delay: 0.2s;
}
.anim-delay-3 {
  transition-delay: 0.3s;
}
.anim-delay-4 {
  transition-delay: 0.4s;
}
.anim-delay-5 {
  transition-delay: 0.5s;
}
.anim-delay-6 {
  transition-delay: 0.6s;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--verde);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 22px 0;
  transform: translateY(100%);
  transition: transform 0.45s var(--tr);
}
#cookie-banner.show {
  transform: translateY(0);
}
#cookie-banner.hide {
  transform: translateY(110%);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 300px;
  font-size: 0.82rem;
  color: var(--grigio);
  line-height: 1.65;
}
.cookie-text strong {
  color: var(--testo);
}
.cookie-text a {
  color: var(--verde);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cookie-accept {
  background: var(--verde);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--tr);
}
.btn-cookie-accept:hover {
  background: var(--verde-m);
}
.btn-cookie-necessary {
  border: 1.5px solid var(--verde);
  color: var(--verde);
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--tr);
}
.btn-cookie-necessary:hover {
  background: var(--verde-p);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition:
    background var(--tr),
    box-shadow var(--tr);
  padding: 0;
}
#header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 110px;
}
.header-logo {
  flex-shrink: 0;
  margin-left: 24px;
}
.header-logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  transition: filter var(--tr);
}
.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.header-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: var(--tr);
}
.header-nav a:hover {
  color: var(--verde);
  background: var(--verde-p);
}
#header.scrolled .header-nav a {
  color: var(--testo);
}
#header.scrolled .header-nav a:hover {
  color: var(--verde);
  background: var(--verde-p);
}
.header-wa {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.header-wa svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#header.scrolled .hamburger span {
  background: var(--verde);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: rgba(26, 85, 50, 0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 0.35s var(--tr),
    opacity 0.35s var(--tr);
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--tr);
}
.mobile-nav a:hover {
  color: var(--verde-m);
}
.mobile-nav .mobile-wa {
  margin-top: 16px;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--r);
  font-weight: 600;
  border: none;
}

#home {
  min-height: 90vh;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 28, 18, 0.82) 0%,
      rgba(10, 28, 18, 0.65) 60%,
      rgba(10, 28, 18, 0.8) 100%
    ),
    url("./interno.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

#home::before {
  display: none;
}
#home::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--fs);
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
/* Letter animation */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: charIn 0.6s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.8s 1.5s forwards;
}
.scroll-arrow svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.5);
  animation: bounce 2s 2s infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

#brand-strip {
  padding: 60px 0;
  background: var(--bianco);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.brand-strip-title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grigio);
  margin-bottom: 32px;
}
.brand-track-wrapper {
  overflow: hidden;
  position: relative;
}
.brand-track-wrapper::before,
.brand-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brand-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bianco), transparent);
}
.brand-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bianco), transparent);
}

.brand-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.brand-track:hover {
  animation-play-state: paused;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  white-space: nowrap;
}
.brand-item span {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--testo);
  opacity: 0.65;
  transition: opacity var(--tr);
}
.brand-item:hover span {
  opacity: 1;
}
.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
}

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

#nuovi-arrivi {
  background: var(--verde-p);
}
.nuovi-arrivi-header {
  text-align: center;
  margin-bottom: 56px;
}
.badge-season {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.nuovi-arrivi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.arrivi-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.arrivi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.arrivi-card-img {
  background: linear-gradient(135deg, #f0ebe3 0%, #e8e0d5 100%);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.arrivi-card-img .shoe-emoji {
  font-size: 3.5rem;
  line-height: 1;
}
.arrivi-card-img .img-label {
  font-size: 0.7rem;
  color: var(--grigio);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.arrivi-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.arrivi-card-desc {
  font-size: 0.78rem;
  color: var(--grigio);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.badge-new-in {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--verde);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.arrivi-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.arrivi-card-body a.btn {
  margin-top: auto;
}
.arrivi-card-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 4px;
}
.arrivi-card-name {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.arrivi-card-price {
  font-size: 0.85rem;
  color: var(--grigio);
  margin-bottom: 12px;
}
.colori-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  min-height: 36px;
}
.colori-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grigio);
}
.colori-list {
  display: flex;
  gap: 6px;
}
.colore-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  padding: 0;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.colore-swatch:hover {
  border-color: var(--verde);
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(26, 85, 50, 0.15);
}
.colore-swatch.active {
  border-color: var(--verde);
  box-shadow: 0 0 0 2px rgba(26, 85, 50, 0.25);
}
.arrivi-card a.btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 11px 16px;
}

#prodotti {
  background: var(--bianco);
}
.prodotti-header {
  text-align: center;
  margin-bottom: 48px;
}
/* Filtri */
.filtri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filtro-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--grigio);
  background: #fff;
  transition: var(--tr);
}
.filtro-btn:hover,
.filtro-btn.active {
  background: var(--verde);
  color: #fff;
  border-color: var(--verde);
}

.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prodotto-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.prodotto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.prodotto-card.hidden {
  display: none;
}

.prodotto-card-img {
  height: 190px;
  background: linear-gradient(135deg, #f0ebe3 0%, #e8e0d5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}
.prodotto-card-img .shoe-emoji {
  font-size: 3rem;
}
.cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.cat-badge.donna {
  background: #fce7f3;
  color: #9d174d;
}
.cat-badge.uomo {
  background: #dbeafe;
  color: #1e3a8a;
}

.prodotto-card-body {
  padding: 18px;
}
.prodotto-card-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 4px;
}
.prodotto-card-name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.prodotto-card-price {
  font-size: 0.82rem;
  color: var(--grigio);
  margin-bottom: 14px;
}
.prodotto-card a.btn {
  width: 100%;
  justify-content: center;
  font-size: 0.72rem;
  padding: 10px 14px;
}

.mostra-tutti-wrap {
  text-align: center;
  margin-top: 40px;
}

#offerte {
  background:
    linear-gradient(rgba(14, 30, 20, 0.88), rgba(14, 30, 20, 0.88)),
    url("./interno.jpg") center 30% / cover no-repeat;
  position: relative;
  overflow: hidden;
}
#offerte::before {
  display: none;
}
.offerte-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.offerte-header .section-title {
  color: #fff;
}
.offerte-header .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}
.offerte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.offerta-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.offerta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.offerta-card-img {
  height: 180px;
  background: var(--grigio-c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.offerta-card-img .shoe-emoji {
  font-size: 3.5rem;
}
.badge-sconto {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 2px;
}
.offerta-card-body {
  padding: 20px;
}
.offerta-card-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 4px;
}
.offerta-card-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.prezzi {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.prezzo-barrato {
  font-size: 0.85rem;
  color: var(--grigio);
  text-decoration: line-through;
}
.prezzo-scontato {
  font-size: 1.1rem;
  font-weight: 700;
  color: #dc2626;
}
.offerta-card a.btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 11px 16px;
}

.offerte-banner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.offerte-banner-text p:first-child {
  font-family: var(--fd);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}
.offerte-banner-text p:last-child {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

#chi-siamo {
  background: var(--crema);
}
.chi-siamo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.chi-siamo-text .section-desc {
  max-width: 100%;
  margin-bottom: 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-item {
  background: var(--verde-p);
  border-radius: var(--r);
  padding: 24px 20px;
  border-left: 3px solid var(--oro);
}
.stat-number {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grigio);
  letter-spacing: 0.04em;
}

#perche {
  background: var(--verde-p);
}
.perche-header {
  text-align: center;
  margin-bottom: 56px;
}
.perche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.perche-card {
  background: #fff;
  border-radius: var(--r);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--verde);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.perche-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.perche-card-check {
  font-size: 1.4rem;
  color: var(--verde);
  font-weight: 700;
  margin-bottom: 16px;
}
.perche-card-title {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--testo);
  margin-bottom: 12px;
  line-height: 1.25;
}
.perche-card-desc {
  font-size: 0.88rem;
  color: var(--grigio);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .perche-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

#recensioni {
  background: var(--bianco);
}
.recensioni-header {
  text-align: center;
  margin-bottom: 56px;
}
.recensioni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recensione-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.recensione-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.recensione-stelle {
  color: #f5a623;
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.recensione-testo {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--testo);
  line-height: 1.65;
  flex: 1;
}
.recensione-autore {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
}
@media (max-width: 900px) {
  .recensioni-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

#contatti {
  background: var(--verde-p);
}
.contatti-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contatti-info h3 {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.info-block {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 36px;
  height: 36px;
  background: var(--verde);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}
.info-block-text {
  font-size: 0.9rem;
  line-height: 1.6;
}
.info-block-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grigio);
  margin-bottom: 4px;
}

/* Orari tabella */
.orari-table {
  width: 100%;
  margin-top: 8px;
}
.orari-table tr td {
  padding: 5px 0;
  font-size: 0.85rem;
}
.orari-table tr td:first-child {
  font-weight: 600;
  color: var(--verde);
  min-width: 120px;
}
.orari-table tr td:last-child {
  color: var(--grigio);
}
.chiuso {
  color: #dc2626 !important;
}

/* Social */
.social-row {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.social-btn:hover {
  background: var(--verde-m);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.wa-cta-big {
  background: var(--verde);
  color: #fff;
  border-radius: var(--r);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--tr);
}
.wa-cta-big:hover {
  background: var(--verde-m);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.wa-cta-big svg {
  width: 28px;
  height: 28px;
  fill: #25d366;
  flex-shrink: 0;
}
.wa-cta-big-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}
.wa-cta-big-text span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* Mappa e QR */
.contatti-mappa-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map-embed {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: none;
}

#footer {
  background: var(--verde);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo img {
  height: 160px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}
.footer-legal {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal strong {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 8px;
}
.footer-legal .nota-legale {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr);
}
.footer-nav a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--oro);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-orari {
  font-size: 0.78rem;
  margin-top: 12px;
}
.footer-orari div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
}
.footer-orari div:last-child {
  border: none;
}
.footer-orari .chiuso-label {
  color: #f87171;
}

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--tr);
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  animation: pulse-wa 3s 2.5s infinite;
}
#wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
#wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.7),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .brand-track {
    animation: none;
  }
  #wa-float {
    animation: none;
  }
  .anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

[id^="modal-"] {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
[id^="modal-"][hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.modal-box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.modal-box h2 {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 20px;
}
.modal-box h3 {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--testo);
}
.modal-box p {
  font-size: 0.88rem;
  color: var(--grigio);
  line-height: 1.75;
  margin-bottom: 10px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--grigio);
  cursor: pointer;
  padding: 4px 8px;
}
.modal-close:hover {
  color: var(--testo);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cookie-table th {
  font-weight: 600;
  color: var(--testo);
  background: var(--verde-p);
}

@media (max-width: 900px) {
  section {
    padding: 70px 0;
  }

  #home {
    padding-top: 130px;
  }

  .header-nav {
    display: none;
  }
  .header-wa {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nuovi-arrivi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prodotti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offerte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chi-siamo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contatti-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  section {
    padding: 56px 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .nuovi-arrivi-grid {
    grid-template-columns: 1fr;
  }
  .prodotti-grid {
    grid-template-columns: 1fr;
  }
  .offerte-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .offerte-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Lightbox ── */
.lightbox-trigger {
  cursor: zoom-in;
}
.foto-count-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox[hidden] {
  display: none;
}
#lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
#lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  display: block;
  transition: opacity 0.2s ease;
}
#lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  user-select: none;
}
#lightbox-prev {
  left: 20px;
}
#lightbox-next {
  right: 20px;
}
#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 600px) {
  #lightbox-prev,
  #lightbox-next {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }
  #lightbox-prev {
    left: 10px;
  }
  #lightbox-next {
    right: 10px;
  }
}
#lightbox-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.lb-dot.active {
  background: #fff;
}
@media (max-width: 600px) {
  #lightbox-prev {
    left: 6px;
  }
  #lightbox-next {
    right: 6px;
  }
}
