:root {
  --sage: #5E8C61; --sage-light: #7EAD81; --forest: #1E3A29; --forest-deep: #122219;
  --bej: #F5F0E8; --bej-dark: #EBE4D6; --mint: #D6E8D8; --mint-light: #E8F3EA;
  --gold: #C9A96E; --gold-light: #DFC18E; --text: #1E3A29; --text-muted: #4A6B52;
}
body.lang-en {
  --color-primary: #B85C38;
  --color-background: #F2E0C8;
  --color-text: #3D2314;
  --color-accent: #7A9E7E;
  --color-surface: #E8C9A0;

  --sage: var(--color-primary);
  --sage-light: #C77755;
  --forest: var(--color-text);
  --forest-deep: #2A160D;
  --bej: var(--color-background);
  --bej-dark: #ECD4B4;
  --mint: var(--color-surface);
  --mint-light: #F2DEC3;
  --gold: var(--color-accent);
  --gold-light: #96B69A;
  --text: var(--color-text);
  --text-muted: #5C3A28;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--bej); color: var(--text); overflow-x: hidden; }
body.preloading { overflow: hidden; }
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(245, 240, 232, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.preloader-lottie { width: 400px; height: 400px; }
.preloader-lottie canvas { transform: translateZ(0); backface-visibility: hidden; }
.preloader-text { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 29px 48px 26px 48px; background: rgba(245, 240, 232, 0.92); backdrop-filter: blur(12px); border-bottom: 0.5px solid rgba(94, 140, 97, 0.15); transition: all 0.3s; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; letter-spacing: 0.06em; color: var(--forest); text-decoration: none; }
.nav-logo span { color: var(--sage); font-style: italic; }
.nav-logo { position: relative; display: block; width: 220px; height: 32px; overflow: visible; }
.nav-logo img { position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 100px !important; width: auto; max-width: 460px; object-fit: contain; display: block; transition: filter 0.28s ease, transform 0.28s ease; }
.nav-logo:hover img {
  transform: translateY(-50%) scale(1.02);
  filter: drop-shadow(0 0 8px rgba(94, 140, 97, 0.55)) drop-shadow(0 0 16px rgba(94, 140, 97, 0.35));
}
body.lang-en .nav-logo:hover img {
  filter: drop-shadow(0 0 8px rgba(184, 92, 56, 0.58)) drop-shadow(0 0 16px rgba(184, 92, 56, 0.34));
}
.nav-links { display: flex; gap: 18px; list-style: none; }
.nav-links li { position: relative; }
.nav-links a { font-size: 14px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-muted); text-decoration: none; text-transform: uppercase; transition: color 0.2s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 0.5px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(245, 240, 232, 0.98);
  border: 0.5px solid rgba(94, 140, 97, 0.2);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 150;
}
.nav-dropdown li { width: 100%; }
.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.04em;
}
.nav-dropdown a::after { display: none; }
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(94,140,97,0.35);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 7px;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav-overlay {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 140;
  background: rgba(245,240,232,0.98);
  border-top: 1px solid rgba(94,140,97,0.18);
  border-bottom: 1px solid rgba(94,140,97,0.18);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.mobile-nav-links { list-style: none; padding: 12px 20px 18px; }
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(94,140,97,0.12);
}
.mobile-nav-links > li > .mobile-nav-row > a {
  display: block;
  text-decoration: none;
  color: var(--forest);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  flex: 1;
}
.mobile-sub-toggle {
  border: 1px solid rgba(94,140,97,0.25);
  background: transparent;
  color: var(--forest);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-sub { list-style: none; padding: 0 0 0 12px; max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.mobile-nav-sub a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  padding: 6px 0;
}
.mobile-nav-links li.open > .mobile-nav-sub { max-height: 260px; padding: 6px 0 8px 12px; }
.mobile-nav-links li.open > .mobile-nav-row > .mobile-sub-toggle { background: rgba(94,140,97,0.14); }
body.nav-mobile-open .mobile-nav-overlay { transform: translateY(0); opacity: 1; pointer-events: auto; }
body.nav-mobile-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-mobile-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-lang { font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; }
.nav-lang:hover { color: var(--forest); }
.nav-lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.nav-lang-sep { color: var(--text-muted); font-size: 14px; }
.nav-lang.active { color: var(--forest); font-weight: 500; }
.nav-cta { font-size: 15px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); text-decoration: none; border: 0.5px solid var(--sage); padding: 8px 20px; border-radius: 2px; transition: all 0.3s; }
.nav-cta:hover { background: var(--sage); color: var(--bej); }
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 80px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 48px 80px 72px; position: relative; }
.hero-left::before { content: ''; position: absolute; top: 120px; left: 40px; width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.hero-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; line-height: 1.08; color: var(--forest); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.hero-title em { font-style: italic; color: var(--sage); }
.hero-desc { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text-muted); max-width: 430px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-actions { display: flex; gap: 16px; align-items: center; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
.btn-primary { background: var(--sage); color: var(--bej); padding: 14px 32px; border-radius: 2px; font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.btn-primary:hover { background: var(--forest); }
.btn-ghost { color: var(--text-muted); font-size: 13px; font-weight: 300; letter-spacing: 0.06em; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--forest); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.hero-right { position: relative; overflow: hidden; background: var(--mint); opacity: 0; animation: fadeIn 1s 0.3s forwards; }
.hero-img-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
.hero-img-cell { background: var(--mint-light); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-img-cell:nth-child(1) { background: #c8dfc9; }
.hero-img-cell:nth-child(2) { background: #b5d1b7; grid-row: span 2; }
.hero-img-cell:nth-child(3) { background: #d8ebda; }
.hero-img-cell.has-image {
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-img-cell.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,41,0.2), rgba(30,58,41,0.06));
}
.plant-icon { font-size: 48px; opacity: 0.35; position: absolute; }
.hero-badge { position: absolute; bottom: 28px; right: 22px; left: auto; background: var(--bej); padding: 16px 20px; border-radius: 4px; box-shadow: 0 8px 32px rgba(30,58,41,0.12); z-index: 2; max-width: min(220px, calc(100% - 40px)); }
.hero-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--forest); }
.hero-badge-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.marquee-strip { background: var(--forest); padding: 14px 0; overflow: hidden; display: flex; }
.marquee-inner { display: flex; gap: 48px; white-space: nowrap; animation: marquee 20s linear infinite; }
.marquee-item { font-size: 11px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mint); opacity: 0.8; display: flex; align-items: center; gap: 12px; }
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.section { padding: 96px 72px; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; line-height: 1.2; color: var(--forest); margin-bottom: 48px; max-width: 520px; }
.features-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.feature-card { background: var(--mint-light); padding: 40px 32px; transition: background 0.3s, transform 0.3s, box-shadow 0.3s; cursor: default; position: relative; overflow: hidden; border-radius: 4px; grid-column: span 2; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.feature-card::after { content: ''; position: absolute; inset: -30% auto auto -20%; width: 55%; height: 160%; transform: rotate(18deg) translateX(-120%); background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.28), rgba(255,255,255,0)); transition: transform 0.65s ease; pointer-events: none; }
.feature-card:hover { background: var(--mint); transform: translateY(-5px); box-shadow: 0 12px 26px rgba(30,58,41,0.12); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { transform: rotate(18deg) translateX(260%); }
.feature-card:nth-child(4) { grid-column: 2 / span 2; }
.feature-card:nth-child(5) { grid-column: 4 / span 2; }
.feature-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--sage); opacity: 0.3; margin-bottom: 16px; line-height: 1; }
.feature-title { font-size: 16px; font-weight: 500; color: var(--forest); margin-bottom: 10px; }
.feature-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--text-muted); }
.process-section {
  background: linear-gradient(180deg, rgba(214,232,216,0.35) 0%, rgba(245,240,232,0.8) 100%);
  border-top: 1px solid rgba(94,140,97,0.12);
  border-bottom: 1px solid rgba(94,140,97,0.12);
}
.process-title {
  margin-bottom: 14px;
}
.process-subtitle {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 34px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.process-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(94,140,97,0.2);
  border-radius: 8px;
  padding: 22px 18px 20px;
  box-shadow: 0 8px 20px rgba(30,58,41,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(30,58,41,0.14);
  border-color: rgba(94,140,97,0.36);
}
.process-card-media {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid rgba(94,140,97,0.2);
  background-color: #eef2ea;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.process-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-card-media-top img {
  object-position: center 20%;
}
.process-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1;
  color: var(--sage);
  margin-bottom: 10px;
}
.process-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.process-card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
.products-section { padding: 96px 72px; background: var(--bej-dark); }
.products-section { position: relative; }
.products-section.category-products-section { padding-top: 140px; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.pot-note-card {
  width: min(360px, 100%);
  margin-left: auto;
  margin-bottom: 22px;
  background: #fff7c8;
  border: 1px solid rgba(120, 95, 25, 0.22);
  border-radius: 8px;
  padding: 18px 16px 14px;
  box-shadow: 0 10px 24px rgba(30,58,41,0.12);
  transform: rotate(1deg);
  position: relative;
}
.pot-note-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(245,216,118,0.16));
  pointer-events: none;
}
.pot-note-pin {
  position: absolute;
  top: -10px;
  right: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d46a52;
  box-shadow: 0 2px 4px rgba(0,0,0,0.28);
}
.pot-note-title {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  color: #5a3a1f;
  margin-bottom: 8px;
}
.pot-note-text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.65;
  color: #6a4a28;
  margin-bottom: 6px;
}
.pot-note-text:last-child { margin-bottom: 0; }
.pot-note-card-home {
  position: absolute;
  top: -18px;
  right: 72px;
  z-index: 3;
}
.pot-note-card-pots {
  margin-top: -8px;
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pots-intro {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}
.pots-promo-section {
  background: linear-gradient(180deg, #eee7da 0%, #e8decc 100%);
}
.pots-promo-hero {
  margin-top: 26px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(94,140,97,0.22);
  border-radius: 12px;
  padding: 20px;
}
.pots-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 8px;
}
.pots-block-sub {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 760px;
}
.pots-visual-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pots-visual-track-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.pots-visual-track-wrap .italy-origin-badge--pots-slider {
  top: 10px;
  right: 10px;
  gap: 5px;
  padding: 0 8px 0 5px;
  border-radius: 3px;
}
.pots-visual-track-wrap .italy-origin-badge--pots-slider .italy-origin-badge__flag {
  width: 21px;
  height: 14px;
}
.pots-visual-track-wrap .italy-origin-badge--pots-slider .italy-origin-badge__line {
  font-size: 9px;
  letter-spacing: 0.09em;
}
.pots-visual-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
  flex: 1;
}
.pots-visual-track::-webkit-scrollbar { display: none; }
.pots-visual-tile {
  display: block;
  flex: 0 0 220px;
  min-height: 215px;
  border-radius: 8px;
  border: 1px solid rgba(94,140,97,0.22);
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 18px rgba(30,58,41,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  scroll-snap-align: start;
}
.pots-visual-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(30,58,41,0.18);
}
.pots-slider-btn {
  border: 1px solid rgba(94,140,97,0.3);
  background: rgba(255,255,255,0.92);
  color: var(--forest);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pots-slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pots-brochures-wrap {
  margin-top: 28px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(94,140,97,0.2);
  border-radius: 12px;
  padding: 20px;
}
.pots-brochures-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
  perspective: 1200px;
}
.pots-brochure-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.pots-brochure-card {
  text-decoration: none;
  min-height: 430px;
  border-radius: 10px;
  border: 1px solid rgba(94,140,97,0.25);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.98), rgba(236,228,214,0.95)),
    repeating-linear-gradient(0deg, rgba(94,140,97,0.08) 0px, rgba(94,140,97,0.08) 1px, transparent 1px, transparent 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(30,58,41,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pots-brochure-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 30px 30px 0;
  border-style: solid;
  border-color: transparent rgba(94,140,97,0.18) transparent transparent;
  transition: transform 0.45s ease;
}
.pots-brochure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(30,58,41,0.16);
}
.pots-brochure-card:hover::before {
  transform: translate(-2px, 2px) rotate(2deg);
}
.pots-brochure-card::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -38%;
  width: 40%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
  transform: skewX(-16deg);
  opacity: 0;
  transition: left 0.6s ease, opacity 0.35s ease;
}
.pots-brochure-card:hover::after {
  left: 118%;
  opacity: 1;
}
.pots-brochure-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--forest);
  line-height: 1.2;
}
.pots-brochure-cta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
}
.pots-brochure-preview {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(94,140,97,0.18);
  background: #f2f2f2;
}
.brochure-flipbook { height: 100%; display: flex; flex-direction: column; gap: 10px; padding: 10px; background: #ececec; }
.brochure-page-shell { position: relative; flex: 1; border-radius: 4px; overflow: auto; perspective: 1200px; background: #fff; display: flex; justify-content: center; align-items: flex-start; }
.brochure-page-canvas {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: left center;
  background: #fff;
}
.brochure-page-canvas.flip-next { animation: brochureFlipNext 0.4s ease; }
.brochure-page-canvas.flip-prev { animation: brochureFlipPrev 0.4s ease; }
.brochure-page-shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.22), rgba(0,0,0,0));
  pointer-events: none;
}
.brochure-controls { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.brochure-btn {
  border: 1px solid rgba(94,140,97,0.3);
  background: #fff;
  color: var(--forest);
  font-size: 24px;
  line-height: 1;
  padding: 4px 12px;
  min-width: 40px;
  border-radius: 4px;
  cursor: pointer;
}
.brochure-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.brochure-page-indicator { font-size: 12px; color: var(--text-muted); }
@keyframes brochureFlipNext {
  0% { transform: rotateY(0deg); opacity: 1; }
  50% { transform: rotateY(-22deg); opacity: 0.6; }
  100% { transform: rotateY(0deg); opacity: 1; }
}
@keyframes brochureFlipPrev {
  0% { transform: rotateY(0deg); opacity: 1; }
  50% { transform: rotateY(22deg); opacity: 0.6; }
  100% { transform: rotateY(0deg); opacity: 1; }
}
.product-card { background: var(--bej); border-radius: 4px; overflow: hidden; transition: transform 0.3s; cursor: pointer; }
.product-card:hover { transform: translateY(-6px); }
.product-img { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; }
.product-img.has-photo {
  padding: 10px;
  font-size: 0;
  align-items: stretch;
  justify-content: stretch;
}
.product-img.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 41, 0.18), rgba(30, 58, 41, 0.04));
}
.product-img.has-photo > .product-img-gallery { position: relative; z-index: 1; width: 100%; height: 100%; }
.product-img .italy-origin-badge,
.product-img .product-tag {
  position: absolute;
}
.product-img-gallery {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.product-img-gallery-standard { width: 100%; height: 100%; }
.product-img-gallery-pots {
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 10px;
  align-content: stretch;
}
.product-img-tile {
  border-radius: 3px;
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-img-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30,58,41,0.2);
}
.product-img-doc {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94,140,97,0.25);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.98), rgba(236,228,214,0.96)),
    repeating-linear-gradient(0deg, rgba(94,140,97,0.08) 0px, rgba(94,140,97,0.08) 1px, transparent 1px, transparent 24px);
  min-height: 185px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-img-doc::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 28px 28px 0;
  border-style: solid;
  border-color: transparent rgba(94,140,97,0.18) transparent transparent;
}
.product-img-doc-badge {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bej);
  background: var(--sage);
  border-radius: 999px;
  padding: 4px 9px;
}
.product-img-doc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.pots-catalog-section {
  background: linear-gradient(180deg, #ede6d9 0%, #e8dfcf 100%);
}
.pots-catalog-section .products-grid {
  grid-template-columns: minmax(300px, 560px);
}
.pots-catalog-section .product-card {
  border-radius: 12px;
  border: 1px solid rgba(94,140,97,0.22);
  box-shadow: 0 10px 26px rgba(30,58,41,0.12);
}
.pots-catalog-section .product-info {
  padding: 18px 18px 20px;
}
.pots-catalog-section .product-name {
  font-size: 18px;
}
.pots-catalog-section .product-sub {
  font-size: 13px;
  margin-bottom: 0;
}
.pots-catalog-section .product-img {
  min-height: 270px;
}
.pots-catalog-section .product-img.has-photo {
  padding: 14px;
}
.product-img-1 { background: #cce0ce; } .product-img-2 { background: #b8d4ba; } .product-img-3 { background: #d4e8d0; } .product-img-4 { background: #c2dabd; }
.product-tag { position: absolute; top: 12px; right: 12px; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold); color: var(--bej); padding: 3px 8px; border-radius: 2px; z-index: 4; }
.product-img.has-italy-badge .product-tag {
  top: 12px;
  right: auto;
  left: 12px;
}
.italy-origin-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  left: auto;
  bottom: auto;
  z-index: 6;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  gap: 4px;
  padding: 0 6px 0 4px;
  border-radius: 2px;
  background: rgba(245, 240, 232, 0.92);
  border: 1px solid rgba(30, 58, 41, 0.1);
  box-shadow: 0 2px 8px rgba(18, 34, 25, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  max-width: none;
  line-height: 1;
}
.italy-origin-badge__flag {
  flex: 0 0 auto;
  width: 17px;
  height: 11px;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(30, 58, 41, 0.12);
}
.italy-origin-badge__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
.italy-origin-badge__line {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1;
  white-space: nowrap;
}
.italy-origin-badge--brochure {
  top: 10px;
  right: 10px;
  z-index: 6;
}
.product-info { padding: 16px; }
.product-name { font-size: 14px; font-weight: 400; color: var(--forest); margin-bottom: 4px; }
.product-sub { font-size: 12px; font-weight: 300; color: var(--text-muted); margin-bottom: 10px; }
.product-cta { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }
.contact-page { padding-top: 140px; min-height: 65vh; background: var(--bej-dark); }
.contact-page .section-title { margin-bottom: 20px; }
.legal-inner {
  max-width: 720px;
  margin-top: 8px;
}
.legal-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}
.legal-p:last-child { margin-bottom: 0; }
.geo-faq-section {
  padding-top: 48px;
  padding-bottom: 72px;
  background: var(--bej-dark);
}
.geo-faq-band {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.geo-faq-side {
  position: relative;
  width: 100%;
  aspect-ratio: 896 / 598;
  max-height: 460px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--forest-deep);
  box-shadow:
    0 28px 56px rgba(18, 34, 25, 0.22),
    0 8px 20px rgba(30, 58, 41, 0.12),
    0 0 0 1px rgba(94, 140, 97, 0.18);
  user-select: none;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.geo-faq-side::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(201, 169, 110, 0.22) 0%,
    transparent 38%,
    transparent 55%,
    rgba(18, 34, 25, 0.55) 100%
  );
  pointer-events: none;
}
.geo-faq-side::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 72px;
  z-index: 3;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  pointer-events: none;
}
.geo-faq-visual-frame {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(30, 58, 41, 0.12);
}
.geo-faq-visual-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.geo-faq-side-visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.geo-faq-side:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 64px rgba(18, 34, 25, 0.26),
    0 12px 28px rgba(30, 58, 41, 0.14),
    0 0 0 1px rgba(201, 169, 110, 0.35);
}
.geo-faq-side:hover .geo-faq-side-visual {
  transform: scale(1.06);
}
.geo-faq-visual-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(18, 34, 25, 0.18);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .geo-faq-side,
  .geo-faq-side-visual {
    transition: none;
  }
  .geo-faq-side:hover {
    transform: none;
  }
  .geo-faq-side:hover .geo-faq-side-visual {
    transform: scale(1.02);
  }
}
.geo-faq-main .section-eyebrow {
  margin-bottom: 22px;
}
.geo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.geo-faq-item {
  background: var(--bej);
  border: 1px solid rgba(94, 140, 97, 0.2);
  border-radius: 4px;
  padding: 0 16px;
}
.geo-faq-question {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--forest);
  padding: 13px 0;
  line-height: 1.45;
}
.geo-faq-question::-webkit-details-marker { display: none; }
.geo-faq-item[open] .geo-faq-question { color: var(--sage); }
.geo-faq-answer {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  border-top: 1px solid rgba(94, 140, 97, 0.14);
  padding-top: 12px;
}
@media (max-width: 960px) {
  .geo-faq-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .geo-faq-side {
    max-height: none;
    aspect-ratio: 896 / 598;
  }
}
@media (max-width: 768px) {
  .geo-faq-section {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
.contact-lead { max-width: 760px; color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
  align-items: stretch;
}
.contact-card { background: var(--mint-light); padding: 24px; border: 1px solid rgba(94, 140, 97, 0.25); border-top: 2px solid var(--sage); border-radius: 4px; box-shadow: 0 8px 24px rgba(30,58,41,0.06); }
.contact-card { position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.contact-card::after {
  content: '';
  position: absolute;
  inset: -120% auto auto -40%;
  width: 55%;
  height: 240%;
  transform: rotate(18deg) translateX(-180%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.35), rgba(255,255,255,0));
  transition: transform 0.7s ease;
  pointer-events: none;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(30,58,41,0.14);
  border-color: rgba(94,140,97,0.38);
}
.contact-card:hover::after { transform: rotate(18deg) translateX(320%); }
.contact-card-title { font-size: 14px; font-weight: 500; margin-bottom: 10px; color: var(--forest); }
.contact-card p, .contact-card a { font-size: 14px; line-height: 1.7; color: var(--text-muted); text-decoration: none; }
.contact-card a:hover { color: var(--forest); }
.contact-map-wrap {
  margin-top: 0;
  border: 1px solid rgba(94, 140, 97, 0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(30,58,41,0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  background: rgba(255,255,255,0.35);
}
.contact-map { width: 100%; flex: 1; min-height: 420px; height: 100%; border: 0; display: block; }
.contact-main-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.contact-form-wrap {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.96));
  border: 1px solid rgba(94, 140, 97, 0.22);
  border-radius: 10px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 24px rgba(30,58,41,0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  animation: contactFormIn 0.55s ease both;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(94,140,97,0.28), rgba(201,169,110,0.22), rgba(94,140,97,0.28));
  opacity: 0.45;
  z-index: 0;
  background-size: 220% 220%;
  animation: contactFormGlow 6s ease-in-out infinite;
}
.contact-form::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.96));
  z-index: 0;
}
.contact-form > * {
  position: relative;
  z-index: 1;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(94, 140, 97, 0.26);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(30,58,41,0.55); }
.contact-form input:hover, .contact-form textarea:hover {
  border-color: rgba(94, 140, 97, 0.5);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(94,140,97,0.2), 0 0 16px rgba(94,140,97,0.2);
  transform: translateY(-1px);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  margin: 0;
  line-height: 1.6;
  flex: 1 1 auto;
}
.contact-kvkk-details {
  margin: 0;
  border: 1px solid rgba(94, 140, 97, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  scroll-margin-top: 120px;
  overflow: hidden;
}
.contact-kvkk-summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  padding: 12px 14px;
  line-height: 1.45;
  user-select: none;
}
.contact-kvkk-summary::-webkit-details-marker { display: none; }
.contact-kvkk-details[open] .contact-kvkk-summary {
  border-bottom: 1px solid rgba(94, 140, 97, 0.15);
  background: rgba(94, 140, 97, 0.06);
}
.contact-kvkk-body {
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-muted);
  padding: 12px 14px 14px;
}
.contact-kvkk-open-link {
  color: var(--sage);
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.contact-kvkk-open-link:hover { color: var(--forest); }
.contact-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 2px 0 4px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  cursor: pointer;
}
.contact-kvkk input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--sage);
}
.contact-kvkk span { flex: 1; min-width: 0; }
.contact-form button {
  align-self: flex-start;
  margin-top: 2px;
  border: 0;
  background: var(--sage);
  color: var(--bej);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(30,58,41,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.contact-form button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
  transition: left 0.45s ease;
}
.contact-form button:hover { background: var(--forest); transform: translateY(-1px); box-shadow: 0 12px 22px rgba(30,58,41,0.26); }
.contact-form button:hover::after { left: 160%; }
@keyframes contactFormIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes contactFormGlow {
  0%, 100% { background-position: 0% 50%; opacity: 0.4; }
  50% { background-position: 100% 50%; opacity: 0.7; }
}
.contact-flash { margin-top: 14px; padding: 10px; border-radius: 4px; font-size: 14px; }
.contact-flash-error { background: #fee4e2; color: #8f1d1d; border: 1px solid #f9c7c3; }

/* Başarı kutusu: form ile aynı görünüm; ::before/::after SVG'nin üstünü örtebilir — kapatıyoruz */
.contact-form.contact-success::before,
.contact-form.contact-success::after {
  content: none !important;
  display: none !important;
}
.contact-form.contact-success {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 26px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.96));
  border: 1px solid rgba(94, 140, 97, 0.22);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(30, 58, 41, 0.08);
}
.contact-success-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0;
  width: 100%;
  text-align: center;
}
.contact-success-lottie {
  width: 168px;
  height: 168px;
  margin: 0 auto 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-success-lottie svg {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.contact-success-lottie-fallback {
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  color: var(--sage);
  text-shadow: 0 6px 20px rgba(94, 140, 97, 0.35);
}
.contact-success-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.contact-success-body {
  margin: 0 auto 6px;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.contact-form.contact-success a.contact-success-again {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bej) !important;
  text-decoration: none !important;
  border-radius: 8px;
  border: 0;
  background: var(--sage);
  box-shadow: 0 8px 18px rgba(30, 58, 41, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form.contact-success a.contact-success-again:hover {
  color: var(--bej) !important;
  text-decoration: none !important;
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(30, 58, 41, 0.22);
}
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; align-items: stretch; }
.split-visual { background: var(--forest); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 64px; min-width: 0; }
.split-visual-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,34,25,0.55), rgba(18,34,25,0.2));
}
.split-quote { position: absolute; bottom: 32px; right: 32px; left: 32px; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; font-style: italic; color: var(--mint); line-height: 1.5; text-align: right; }
.split-quote { z-index: 1; }
.split-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; min-width: 0; max-width: 100%; box-sizing: border-box; }
.stat-row { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; justify-content: flex-start; }
.stat { min-width: 0; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--sage); }
.stat-label { font-size: 12px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.06em; }
@media (max-width: 900px) {
  .split-section { min-height: 0; }
  .split-visual {
    min-height: 260px;
    padding: 32px 24px;
  }
  .split-content {
    padding: 48px 24px;
  }
  .split-content .section-title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    margin-bottom: 1.25rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .split-content > p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .split-quote {
    font-size: 16px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    text-align: center;
  }
  .stat-row {
    justify-content: center;
    gap: 28px 24px;
    margin-top: 28px;
  }
  .stat {
    flex: 1 1 140px;
    text-align: center;
  }
  .stat-num {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
}
@media (max-width: 480px) {
  .split-visual {
    min-height: 220px;
    padding: 24px 16px;
  }
  .split-content {
    padding: 36px 16px;
  }
  .split-quote {
    font-size: 14px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .stat-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .stat {
    flex: 0 1 auto;
    width: 100%;
    max-width: 280px;
  }
}

footer { background: var(--forest-deep); padding: 64px 72px 32px; color: rgba(245,240,232,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--bej); font-weight: 300; margin-bottom: 12px; }
.footer-logo span { color: var(--sage); font-style: italic; }
.footer-tagline { font-size: 13px; font-weight: 300; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bej); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { border-top: 0.5px solid rgba(245,240,232,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; font-weight: 300; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  z-index: 300;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 24px rgba(30,58,41,0.25); }
.whatsapp-hint {
  position: absolute;
  right: 82px;
  bottom: 10px;
  width: 230px;
  background: #ffffff;
  color: #1e3a29;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  animation: whatsappHintCycle 7s infinite;
}
.whatsapp-hint::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  transform: rotate(45deg);
}
.whatsapp-fallback {
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.whatsapp-lottie { width: 58px; height: 58px; display: block; opacity: 0; transition: opacity 0.2s ease; }
.whatsapp-float.is-ready .whatsapp-lottie { opacity: 1; }
.whatsapp-float.is-ready .whatsapp-fallback { opacity: 0; }
@keyframes whatsappHintCycle {
  0%, 35%, 100% { opacity: 0; transform: translateY(8px); }
  40%, 85% { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1100px) { .hero, .split-section { grid-template-columns: 1fr; } .hero-right { min-height: 380px; } .hero-badge { right: 18px; left: auto; bottom: 20px; } .features-grid { grid-template-columns: repeat(2, 1fr); } .feature-card { grid-column: auto !important; } .products-grid { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 1100px) { .pot-note-card-home { position: static; top: auto; right: auto; margin-top: -18px; } }
@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .contact-form-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-map-wrap, .contact-form-wrap { margin-top: 0; }
  .contact-form { min-height: 0; }
  .contact-map { min-height: 320px; flex: none; }
}
@media (max-width: 600px) { .contact-map { min-height: 260px; height: 260px; } }
@media (max-width: 900px) {
  .pots-catalog-section .products-grid { grid-template-columns: 1fr; }
  .pots-block-title { font-size: 28px; }
  .pots-visual-slider { gap: 6px; }
  .pots-visual-tile { flex-basis: 170px; }
  .pots-slider-btn { width: 30px; height: 30px; font-size: 20px; }
}
@media (max-width: 900px) {
  .pots-brochures-grid { grid-template-columns: 1fr; }
  .pots-brochure-card { min-height: 380px; }
  .pots-brochure-preview { height: 470px; }
  .pots-brochure-name { font-size: 26px; }
}
@media (max-width: 1100px) { .mobile-nav-overlay { top: 74px; } .nav-links { display: none; } .nav-cta { display: none; } .nav-burger { display: inline-block; } }
@media (max-width: 768px) { nav { padding: 16px 20px; } .hero-left, .section, .products-section, .split-content, footer { padding-left: 20px; padding-right: 20px; } .hero-right { min-height: 320px; } .split-visual { min-height: 360px; } .hero-title { font-size: 44px; position: relative; padding-left: 18px; } .products-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-links { align-items: center; } .footer-tagline { margin: 0 auto; } .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; } .nav-actions { gap: 8px; } .nav-dropdown { display: none; } .nav-logo { width: 205px; height: 70px; } .nav-logo img { height: 82px !important; max-width: 340px; } .features-grid { grid-template-columns: repeat(2, 1fr); } .feature-card:nth-child(5) { grid-column: 1 / -1 !important; justify-self: center; width: min(320px, 100%); } }
@media (max-width: 768px) {
  .hero-left::before { display: none; }
  .hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.12em;
    bottom: 0.12em;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .hero-badge {
    padding: 10px 12px;
    bottom: 12px;
    right: 10px;
    max-width: min(158px, calc(100% - 20px));
    box-shadow: 0 6px 18px rgba(30,58,41,0.1);
  }
  .hero-badge-num { font-size: 17px; line-height: 1.15; }
  .hero-badge-label { font-size: 9px; letter-spacing: 0.05em; }
}
@media (max-width: 768px) { .pot-note-card { transform: rotate(0.5deg); width: 100%; } .pot-note-card-home { margin-top: -10px; } }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } .process-card { padding: 18px 16px; } .process-step-number { font-size: 30px; } }
@media (max-width: 768px) { .process-card-media { height: 180px; } }
@media (max-width: 768px) { .whatsapp-hint { width: 190px; right: 76px; font-size: 11px; } }
