/* D'Alessandro — italienische Feinkost */

:root {
  --green: #1a4d32;
  --green-dark: #123522;
  --green-light: #2d6b47;
  --gold: #b8860b;
  --gold-light: #d4a84b;
  --gold-glow: rgba(212, 168, 75, 0.45);
  --terracotta: #c45c3a;
  --cream: #faf7f0;
  --cream-dark: #f0ebe0;
  --text: #2a2620;
  --text-muted: #5c564c;
  --white: #ffffff;
  --italy-green: #009246;
  --italy-red: #ce2b37;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(26, 77, 50, 0.08);
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(0, 146, 70, 0.04), transparent 50%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(206, 43, 55, 0.04), transparent 45%),
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(212, 168, 75, 0.08), transparent 55%),
    var(--cream);
  overflow-x: hidden;
}

input,
textarea,
select,
button {
  font: inherit;
}

input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
}

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

a {
  color: var(--green);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
}

a:hover {
  color: var(--green-dark);
}

.wrap {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 77, 50, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--gold-light);
  box-shadow: var(--shadow);
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
}

.brand-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.italy-strip {
  display: flex;
  height: 3px;
  position: relative;
  overflow: hidden;
}

.italy-strip span {
  flex: 1;
}

.italy-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: stripShine 4s ease-in-out infinite;
}

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

.italy-strip span:nth-child(1) {
  background: var(--italy-green);
}
.italy-strip span:nth-child(2) {
  background: var(--white);
}
.italy-strip span:nth-child(3) {
  background: var(--italy-red);
}

.site-nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--green);
}

.nav-link--shop {
  color: var(--green);
}

.header-cart {
  position: relative;
  margin-left: auto;
  color: var(--green);
  text-decoration: none;
  padding: 0.35rem;
}

.header-cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
  background: var(--italy-red);
  color: var(--white);
  border-radius: 999px;
}

.nav-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

@media (min-width: 880px) {
  .site-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .header-cart {
    margin-left: 0;
  }
}

body.nav-open .site-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 77, 50, 0.12);
  box-shadow: var(--shadow);
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 880px) {
  body.nav-open .site-nav {
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: rgba(26, 77, 50, 0.35);
}

.btn-block {
  width: 100%;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 2%); }
}

.site-header {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  border-color: rgba(26, 77, 50, 0.14);
  box-shadow: 0 12px 40px rgba(18, 53, 34, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.brand-logo {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(26, 77, 50, 0.2);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -50%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.55s ease;
}

.btn-primary:hover::after {
  transform: translateX(180%) skewX(-12deg);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 12vw, 6rem) 0;
  overflow: hidden;
}

.hero--home {
  min-height: min(88vh, 820px);
  min-height: min(88svh, 820px);
  min-height: min(88dvh, 820px);
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03);
  animation: heroKen 22s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.03); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 53, 34, 0.55) 0%, rgba(18, 53, 34, 0.72) 45%, rgba(250, 247, 240, 0.92) 100%),
    linear-gradient(90deg, rgba(18, 53, 34, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.hero-shine {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 50% 40% at 70% 20%, rgba(212, 168, 75, 0.2), transparent 55%);
  pointer-events: none;
  animation: heroShine 10s ease-in-out infinite alternate;
}

@keyframes heroShine {
  from { opacity: 0.6; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-2%); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(184, 134, 11, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 77, 50, 0.1), transparent 45%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.page-home .hero-panel .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.page-home .hero-title {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-home .hero-lead {
  color: rgba(255, 255, 255, 0.9);
}

.page-home .hero-badges {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost--light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-radius: 999px;
  background: var(--white);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.hero-lead {
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-badges {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  border-top: 1px solid rgba(26, 77, 50, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-badges li::before {
  content: "✦ ";
  color: var(--gold);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section-cream {
  background: var(--cream-dark);
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green);
}

.section-intro {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(26, 77, 50, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}

.feature-card.is-revealed:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26, 77, 50, 0.12);
  border-color: rgba(26, 77, 50, 0.14);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--green);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

.highlight-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.steps {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hours-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.hours-list li {
  padding: 0.2rem 0;
  color: var(--text);
}

.hours-list li + li {
  border-top: 1px solid rgba(26, 77, 50, 0.06);
}

.offer-preview {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

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

.offer-preview-card,
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(26, 77, 50, 0.08);
  box-shadow: var(--shadow);
}

.offer-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--italy-red);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.offer-save {
  float: right;
  font-weight: 700;
  color: var(--italy-red);
}

.price s {
  color: var(--text-muted);
  margin-right: 0.35rem;
}

.price strong {
  color: var(--green);
  font-size: 1.1rem;
}

.price-lg strong {
  font-size: 1.35rem;
}

.section-cta .cta-panel {
  text-align: center;
  background: var(--green);
  color: var(--cream);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 3rem);
}

.section-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--white);
}

.section-cta p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.section-cta .btn-primary {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-dark);
}

.section-cta .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 77, 50, 0.08);
  overflow: hidden;
}

.page-hero--italy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 53, 34, 0.88), rgba(18, 53, 34, 0.65)),
    url("../images/hero-coast.jpg") center / cover no-repeat;
  opacity: 1;
}

.page-hero--italy .wrap {
  position: relative;
  z-index: 1;
}

.page-hero--italy h1,
.page-hero--italy .page-lead {
  color: var(--white);
}

.page-hero--italy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.page-hero--italy .page-lead {
  opacity: 0.92;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.page-lead {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

/* Shop */
.shop-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .shop-layout {
    grid-template-columns: 200px 1fr 280px;
    align-items: start;
  }
}

.shop-sidebar {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 77, 50, 0.08);
}

.filter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.chip {
  font: inherit;
  font-size: 0.78rem;
  min-height: 44px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 77, 50, 0.2);
  background: var(--cream);
  cursor: pointer;
  touch-action: manipulation;
}

.chip.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

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

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid rgba(26, 77, 50, 0.08);
  box-shadow: var(--shadow);
}

.product-card[hidden] {
  display: none;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.product-name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green);
  padding-right: 4rem;
}

.product-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gold);
}

.product-desc {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.product-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 77, 50, 0.08);
}

.qty-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.input {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(26, 77, 50, 0.25);
  border-radius: 8px;
  background: var(--white);
}

.input-qty {
  width: 4rem;
  flex-shrink: 0;
}

.btn-add {
  flex: 1;
  font-size: 0.82rem;
  padding-inline: 0.75rem;
}

.cart-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.cart-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 77, 50, 0.08);
  font-size: 0.88rem;
}

.cart-empty {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-totals {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
}

.cart-min dd {
  color: var(--italy-red);
  margin: 0;
}

.cart-min.is-hidden,
.cart-min[hidden] {
  display: none !important;
}

#cart-checkout[aria-disabled="true"],
#cart-checkout.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.offer-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

@media (min-width: 960px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Forms */
.contact-grid,
.checkout-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(26, 77, 50, 0.08);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label,
.form-row legend {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.radio,
.checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-options .radio {
  margin-bottom: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(26, 77, 50, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
}

.form-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-hint--tight {
  margin-top: -0.35rem;
  margin-bottom: 0.75rem;
}

.form-errors {
  background: #fde8e8;
  border: 1px solid var(--italy-red);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-success {
  color: var(--green);
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--green);
}

.prose.narrow {
  max-width: 42rem;
}

.legal-page .note {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--cream-dark);
  border-radius: 8px;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0;
}

.footer-tag {
  color: var(--gold-light);
  margin: 0.15rem 0 0;
}

.footer-sub {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-copy,
.footer-note,
.footer-credit {
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  opacity: 0.75;
  text-align: center;
}

.footer-credit {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  opacity: 0.55;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.footer-credit a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.checkout-totals {
  margin-top: 1rem;
}

.coupon-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.coupon-row .input {
  flex: 1 1 10rem;
  min-width: 0;
}

#checkout-coupon-hint.is-err {
  color: var(--terracotta);
}

/* Cookie banner */
.cookie-banner-mount {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.35);
}

.cookie-banner {
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-banner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--green);
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* —— Italien: Dekor & Effekte —— */

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb--1 {
  width: 220px;
  height: 220px;
  top: 12%;
  left: 8%;
  background: rgba(0, 146, 70, 0.35);
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 180px;
  height: 180px;
  bottom: 25%;
  right: 10%;
  background: var(--gold-glow);
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 140px;
  height: 140px;
  top: 40%;
  right: 22%;
  background: rgba(206, 43, 55, 0.25);
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.05); }
  66% { transform: translate(-8px, 10px) scale(0.95); }
}

.hero-tricolore {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--italy-green) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--italy-red) 66.66%);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
}

.title-ornament {
  width: min(200px, 60%);
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--italy-green), var(--gold-light), var(--italy-red));
  background-size: 200% 100%;
  animation: tricoloreFlow 5s ease infinite;
}

@keyframes tricoloreFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.eyebrow--glow {
  animation: eyebrowPulse 3s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(212, 168, 75, 0.35);
}

@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(212, 168, 75, 0.25); }
  50% { box-shadow: 0 0 28px rgba(212, 168, 75, 0.5); }
}

.page-home .hero-panel {
  animation: panelGlow 6s ease-in-out infinite alternate;
}

@keyframes panelGlow {
  from { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22), 0 0 0 rgba(212, 168, 75, 0); }
  to { box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28), 0 0 48px rgba(212, 168, 75, 0.12); }
}

.section-head h2 {
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--italy-green), var(--gold-light), var(--italy-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-head.js-reveal.is-revealed h2::after {
  transform: scaleX(1);
}

.feature-card--italy {
  position: relative;
  overflow: hidden;
}

.feature-card--italy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--italy-green), var(--gold-light), var(--italy-red));
}

.feature-card--italy::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 75, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card--italy.is-revealed:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: rgba(184, 134, 11, 0.35);
  box-shadow: 0 24px 56px rgba(26, 77, 50, 0.16), 0 0 0 1px rgba(212, 168, 75, 0.2);
}

.feature-card--italy.is-revealed:hover::after {
  opacity: 1;
}

.feature-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(26, 77, 50, 0.15));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card--italy:hover .feature-icon {
  transform: scale(1.15) rotate(-8deg);
}

.highlight-box {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.highlight-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.12), transparent);
  animation: boxShimmer 5s ease-in-out infinite;
}

@keyframes boxShimmer {
  0%, 100% { left: -100%; }
  50% { left: 120%; }
}

.highlight-box.is-revealed:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(26, 77, 50, 0.14);
}

.offer-preview-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.offer-preview-card.is-revealed:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 44px rgba(206, 43, 55, 0.12);
}

.offer-badge {
  animation: badgePop 0.6s ease backwards;
  box-shadow: 0 4px 12px rgba(206, 43, 55, 0.35);
}

@keyframes badgePop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.cta-panel--glow {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--green-light) 100%);
  box-shadow: 0 24px 64px rgba(18, 53, 34, 0.35);
}

.cta-panel--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(212, 168, 75, 0.25), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(206, 43, 55, 0.15), transparent 45%);
  pointer-events: none;
}

.cta-panel--glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, var(--italy-green), var(--gold-light), var(--italy-red), var(--italy-green));
  background-size: 300% 100%;
  animation: ctaBorder 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes ctaBorder {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.cta-panel--glow > * {
  position: relative;
  z-index: 1;
}

.section-cream {
  position: relative;
}

.section-cream::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-2 8-8 14-16 16 8 2 14 8 16 16 2-8 8-14 16-16-8-2-14-8-16-16z' fill='%23b8860b' fill-opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero--italy::before {
  animation: pageHeroKen 24s ease-in-out infinite alternate;
}

@keyframes pageHeroKen {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.page-hero--italy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(250, 247, 240, 0.4) 100%);
  pointer-events: none;
}

.nav-link--shop {
  color: var(--gold) !important;
  font-weight: 700;
}

.nav-link--shop::after {
  background: linear-gradient(90deg, var(--italy-green), var(--gold-light), var(--italy-red)) !important;
}

.chip {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 77, 50, 0.12);
}

.chip.is-active {
  box-shadow: 0 8px 20px rgba(26, 77, 50, 0.25);
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--italy-green), var(--white), var(--italy-red));
}

/* Scroll reveal & hero motion */
.js-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-panel > * {
  opacity: 0;
  animation: heroIn 0.85s ease forwards;
}

.hero-panel > *:nth-child(1) { animation-delay: 0.05s; }
.hero-panel > *:nth-child(2) { animation-delay: 0.12s; }
.hero-panel > *:nth-child(3) { animation-delay: 0.19s; }
.hero-panel > *:nth-child(4) { animation-delay: 0.26s; }
.hero-panel > *:nth-child(5) { animation-delay: 0.33s; }
.hero-panel > *:nth-child(6) { animation-delay: 0.4s; }

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 77, 50, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
  .grain,
  .hero-media img,
  .hero-shine,
  .hero-orb,
  .italy-strip::after,
  .highlight-box::after,
  .page-hero--italy::before,
  .cta-panel--glow::after {
    animation: none !important;
  }
  .page-home .hero-panel,
  .eyebrow--glow,
  .title-ornament {
    animation: none !important;
  }
  .hero-panel > *,
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
  .btn-primary::after {
    display: none;
  }
  .hero-decor {
    display: none;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .hero-panel {
    background: rgba(18, 53, 34, 0.78);
  }
}
