:root {
  --cream: #fbf6eb;
  --paper: #fffdf8;
  --ink: #25301d;
  --muted: #6e6d62;
  --green: #2f5519;
  --green-2: #dfe9cd;
  --line: #eadfc9;
  --rust: #ae361d;
  --rust-dark: #8f2715;
  --shadow: 0 18px 45px rgba(58, 43, 24, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 0 0, rgba(233, 218, 178, 0.34), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #fbf6eb 42%, #fffdf8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 251, 241, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  max-width: 1500px;
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 310px minmax(280px, 1fr) auto auto auto;
  gap: 22px;
  align-items: center;
  padding: 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #315518;
  background: #edf3dd;
  border: 1px solid #cbd9b0;
  font-size: 34px;
}

.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.brand small {
  display: block;
  color: #bd351b;
  font-weight: 800;
  margin-top: 6px;
}

.search {
  display: grid;
  grid-template-columns: 24px 1fr 54px;
  align-items: center;
  height: 50px;
  border: 1px solid #ded1b8;
  background: #fffdfa;
  border-radius: 8px;
  overflow: hidden;
  padding-left: 16px;
}

.search input {
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
}

.search button {
  height: 100%;
  border: 0;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.quick,
.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  white-space: nowrap;
}

.quick svg,
.cart svg {
  color: var(--green);
}

.quick small,
.cart small {
  display: block;
  color: #4d4b42;
  font-size: 12px;
}

.cart {
  position: relative;
}

.cart i {
  position: absolute;
  top: -10px;
  left: 17px;
  background: var(--rust);
  color: white;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
}

.nav {
  position: relative;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 76px);
  min-height: 48px;
  align-items: center;
  font-weight: 750;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-catalog {
  position: static;
  display: flex;
  align-items: center;
}

.nav-catalog > button {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 750;
  cursor: pointer;
  padding: 0;
}

.nav-catalog > button svg {
  transition: transform 160ms ease;
}

.nav-catalog.open > button {
  color: var(--rust);
}

.nav-catalog.open > button svg {
  transform: rotate(180deg);
}

.nav-mega-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  translate: 0 -10px;
  transition: opacity 180ms ease, translate 180ms ease, visibility 180ms;
  z-index: 50;
  width: min(1260px, calc(100vw - 48px));
  transform: translateX(-50%);
  padding-top: 12px;
}

.nav-catalog.open .nav-mega-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
}

.nav-mega-panel .home-mega {
  max-width: none;
  margin: 0;
  transform: none;
  border-radius: 8px;
}

.page-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 18px 24px 50px;
}

.compact-home {
  padding-top: 26px;
}

.crumb {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}

.home-page {
  background: #fffaf0;
}

.home-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-mega {
  position: relative;
  z-index: 3;
  max-width: 1260px;
  margin: 0 auto;
  transform: translateY(-1px);
  display: grid;
  grid-template-columns: 240px 1fr;
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid #e6d8bf;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 20px 46px rgba(42, 30, 15, 0.18);
}

.mega-intro {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.mega-intro h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.mega-intro p {
  margin: 0 0 18px;
  line-height: 1.45;
  color: #4d4b42;
}

.mega-intro a {
  color: var(--rust);
  font-weight: 850;
}

.mega-intro img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 7px;
  margin-top: 18px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 20px;
}

.mega-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 8px 12px;
  border-right: 1px solid rgba(234, 223, 201, 0.78);
}

.mega-item:nth-child(4n) {
  border-right: 0;
}

.mega-item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eadfc9;
}

.mega-item b,
.mega-item small {
  display: block;
}

.mega-item b {
  font-size: 16px;
  margin-bottom: 4px;
}

.mega-item small {
  color: #4e4c43;
  font-size: 13px;
  line-height: 1.35;
}

.mega-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding: 13px 24px;
}

.mega-bottom span {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 750;
}

.mega-bottom svg {
  color: var(--green);
}

.home-slider {
  position: absolute;
  inset: 0;
  background: #26351b;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: homeSlide 15s infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 28, 9, 0.18) 0%, rgba(17, 28, 9, 0.1) 45%, rgba(17, 28, 9, 0.48) 100%),
    linear-gradient(180deg, rgba(19, 28, 11, 0.02) 0%, rgba(19, 28, 11, 0.5) 100%);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  z-index: 1;
  right: max(7vw, 70px);
  bottom: 58px;
  max-width: 620px;
  color: white;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
}

.slide-copy h1 {
  color: white;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  margin-bottom: 14px;
}

.slide-copy p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.slide-copy .primary-link {
  background: rgba(47, 85, 25, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

@keyframes homeSlide {
  0%,
  28% {
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
  }
}

.home-benefits-strip {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
}

.home-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 32px;
  border-right: 1px solid var(--line);
}

.home-benefit:last-child {
  border-right: 0;
}

.home-benefit svg {
  color: var(--green);
  flex: 0 0 auto;
}

.home-benefit b,
.home-benefit small {
  display: block;
}

.home-benefit b {
  font-size: 18px;
  margin-bottom: 6px;
}

.home-benefit small {
  color: #4d4b42;
  line-height: 1.45;
}

.home-section {
  margin-bottom: 28px;
}

.ornate-title {
  text-align: center;
  margin-bottom: 18px;
}

.ornate-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
}

.ornate-title h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  display: grid;
  grid-template-rows: 118px auto;
  gap: 10px;
  min-width: 0;
  background: #fffdf8;
  border: 1px solid #e6d8bf;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(67, 48, 23, 0.05);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.category-card span {
  font-weight: 850;
}

.best-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.best-card {
  display: grid;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(67, 48, 23, 0.06);
}

.best-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.best-card span {
  display: grid;
  gap: 5px;
  padding: 12px 14px 4px;
}

.best-card b {
  font-size: 16px;
}

.best-card small {
  color: #4d4b42;
}

.best-card strong {
  font-size: 20px;
}

.best-card em {
  justify-self: end;
  color: #2a812f;
  font-style: normal;
  font-size: 12px;
}

.best-card i {
  margin: 10px 14px 14px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  background: linear-gradient(180deg, #c64a2b, #a9321a);
  color: white;
  font-style: normal;
  font-weight: 850;
}

.seasonal-offer {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 44%;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  min-height: 142px;
  background: linear-gradient(90deg, #c84a2a 0%, #bc3f22 50%, #8b2d17 100%);
  color: white;
  border-radius: 8px;
  padding: 22px 28px;
}

.seasonal-offer h2 {
  color: white;
  margin: 0 0 8px;
  font-size: 28px;
}

.seasonal-offer p {
  margin: 0 0 14px;
  font-weight: 800;
}

.seasonal-offer a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 5px;
  background: #fffdf8;
  color: var(--rust-dark);
  padding: 0 18px;
  font-weight: 850;
}

.seasonal-offer img {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.offer-badge {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fffdf8;
  color: var(--rust);
  border: 2px dashed var(--rust);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.25;
  z-index: 1;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
}

h1 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
  margin: 0 0 18px;
  max-width: 680px;
}

.home-hero p:not(.crumb),
.hero-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: #56584d;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-link,
.ghost-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  font-weight: 850;
}

.primary-link {
  background: var(--green);
  color: white;
}

.ghost-link {
  background: #fffdf8;
  border: 1px solid var(--line);
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.category-tile {
  position: relative;
  min-height: 150px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(20, 35, 15, 0.72));
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.category-tile span {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.category-tile small {
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  min-height: 230px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.hero-copy {
  padding: 34px 38px;
}

.hero-copy h1 {
  font-size: clamp(40px, 4vw, 58px);
}

.hero-copy strong {
  display: inline-flex;
  margin-top: 20px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 230px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.filter-row button {
  height: 42px;
  min-width: 160px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.filter-row button.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
  margin-top: 14px;
}

.catalog-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 18px;
}

.catalog-head,
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.catalog-head h2,
.section-title h2 {
  margin: 0;
  font-size: 28px;
}

.catalog-head small {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: var(--muted);
}

.catalog-head label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f5d53;
  font-size: 14px;
}

select {
  height: 42px;
  border-radius: 7px;
  border: 1px solid #dfd4bf;
  background: #fffdfa;
  padding: 0 42px 0 16px;
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  min-width: 0;
  box-shadow: 0 10px 24px rgba(67, 48, 23, 0.06);
}

.card-image {
  display: block;
  aspect-ratio: 1.95 / 1;
  overflow: hidden;
  background: var(--green-2);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 10px 10px 9px;
}

.card-body h3 {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 1.15;
}

.card-body p {
  margin: 0 0 8px;
  color: #3c3b34;
  font-size: 13px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 9px;
}

.price-row span {
  color: #1c7b2d;
  font-size: 12px;
  white-space: nowrap;
}

.price-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1c7b2d;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.product-button {
  height: 28px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #c04526, var(--rust-dark));
  color: white;
  font-size: 13px;
  font-weight: 850;
}

.benefits {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  position: sticky;
  top: 154px;
}

.benefits.wide {
  position: static;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 22px 0;
}

.benefit {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.benefits.wide .benefit {
  padding: 16px;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.benefit:last-of-type {
  border-bottom: 0;
}

.benefit svg {
  color: var(--green);
  flex: 0 0 auto;
}

.benefit b {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

.benefit small {
  color: #4d4b42;
  line-height: 1.5;
  display: block;
  font-size: 14px;
}

.info-box,
.note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #545248;
  background: #fff9ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  line-height: 1.5;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 34px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  aspect-ratio: 1.35 / 1;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(67, 48, 23, 0.08);
}

.badge {
  display: inline-flex;
  background: var(--green-2);
  color: var(--green);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 850;
}

.product-info h1 {
  margin-top: 18px;
}

.product-info p {
  color: #55534a;
  line-height: 1.7;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.age-prices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.age-prices span {
  background: #fff9ee;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 14px;
  font-weight: 850;
}

.buy-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 280px);
  gap: 12px;
}

.buy-row input {
  height: 48px;
  border-radius: 7px;
  border: 1px solid #d8c9af;
  background: white;
  padding: 0 12px;
}

.buy-row button {
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 24px 44px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #55534a;
}

.footer b,
.footer a {
  color: var(--ink);
  font-weight: 900;
}

.footer span {
  display: block;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 260px 1fr auto;
  }

  .quick,
  .whatsapp {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-stage {
    min-height: 760px;
  }

  .home-mega {
    max-width: calc(100% - 32px);
    grid-template-columns: 1fr;
    margin-top: 14px;
    border-radius: 8px;
  }

  .mega-intro {
    display: none;
  }

  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-item:nth-child(4n) {
    border-right: 1px solid rgba(234, 223, 201, 0.78);
  }

  .mega-item:nth-child(2n) {
    border-right: 0;
  }

  .slide-copy {
    right: 34px;
    left: 34px;
  }

  .home-benefits-strip,
  .best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    min-height: 74px;
    padding: 10px 16px;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand small,
  .cart span,
  .search {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fffdf8;
    border-radius: 7px;
    width: 44px;
    height: 44px;
  }

  .nav {
    display: none;
    align-items: stretch;
    padding: 8px 16px 16px;
  }

  .nav.open {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .nav a,
  .nav-catalog > button {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .nav-catalog {
    display: grid;
  }

  .nav-catalog > button {
    justify-content: space-between;
    width: 100%;
  }

  .nav-mega-panel {
    display: none;
    position: static;
    width: 100%;
    transform: none;
    padding: 0 0 12px;
  }

  .nav-mega-panel .home-mega {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
  }

  .hero,
  .product-detail,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .benefits {
    position: static;
  }

  .benefits.wide {
    grid-template-columns: 1fr 1fr;
  }

  .home-stage {
    min-height: 500px;
  }

  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-item,
  .mega-item:nth-child(2n),
  .mega-item:nth-child(4n) {
    border-right: 0;
  }

  .mega-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-benefits-strip {
    grid-template-columns: 1fr 1fr;
  }

  .home-benefit {
    padding: 20px;
  }

  .category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seasonal-offer {
    grid-template-columns: 100px 1fr;
    padding-right: 24px;
  }

  .seasonal-offer img {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px 12px 36px;
  }

  .home-hero,
  .hero-copy {
    padding: 26px 18px;
  }

  h1 {
    font-size: 38px;
  }

  .category-tiles,
  .product-grid,
  .product-grid.four,
  .benefits.wide,
  dl {
    grid-template-columns: 1fr;
  }

  .catalog-head,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-row {
    grid-template-columns: 76px 1fr;
  }

  .home-stage {
    min-height: 500px;
  }

  .home-mega {
    max-width: calc(100% - 24px);
  }

  .mega-grid,
  .home-benefits-strip,
  .best-grid,
  .category-strip,
  .seasonal-offer {
    grid-template-columns: 1fr;
  }

  .mega-item {
    min-height: 68px;
  }

  .mega-bottom {
    display: none;
  }

  .slide-copy {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }

  .slide-copy h1 {
    font-size: 34px;
  }

  .home-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-card {
    grid-template-rows: 150px auto;
  }

  .seasonal-offer {
    gap: 14px;
  }
}

@media (max-width: 900px) { .nav-catalog.open .nav-mega-panel { display: block; } }
@media (prefers-reduced-motion: reduce) { .nav-mega-panel { transition: none; } }

.gallery-thumbnail { padding: 3px; border: 2px solid transparent; border-radius: 10px; background: transparent; cursor: pointer; min-width: 0; }
.gallery-thumbnail[aria-pressed="true"] { border-color: var(--green); }
.gallery-thumbnail:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.gallery-thumbnail img { display: block; }
.product-gallery > img { object-fit: contain; background: #fff; }

/* About page */
.about-page{max-width:1320px;margin:auto;padding:0 32px 42px}.about-crumbs{display:flex;gap:16px;align-items:center;padding:23px 0;font-size:13px}.about-crumbs>span:first-of-type{color:var(--rust)}.about-page h1,.about-page h2,.about-page h3{font-family:Georgia,'Times New Roman',serif}.about-page h2{font-size:29px;margin:0 0 18px;line-height:1.2}.about-page h3{margin:0 0 8px;font-size:18px}.about-page p{font-size:14px;line-height:1.75;margin:0 0 14px}.about-eyebrow{font-size:11px;font-weight:700;letter-spacing:2.5px;display:block;margin-bottom:13px;color:var(--green)}.about-hero{border-radius:12px;background-size:cover;background-position:center 55%;padding:45px 42px;min-height:310px;color:#fffdf8;display:flex;flex-direction:column;justify-content:center}.about-hero .about-eyebrow{color:#e5dfba}.about-hero h1{font-size:clamp(36px,4.3vw,58px);line-height:1.07;margin:0 0 20px;font-weight:500}.about-hero p{max-width:470px;font-size:16px;margin:0}.about-intro{display:grid;grid-template-columns:.9fr 1.2fr;gap:64px;align-items:center;padding:38px 18px}.about-intro>img{width:100%;height:320px;object-fit:cover;border-radius:10px}.about-button{display:inline-flex;align-items:center;gap:16px;background:var(--rust);color:white;padding:12px 18px;border-radius:5px;font-size:13px;font-weight:650;transition:background .2s}.about-button:hover{background:var(--rust-dark)}.about-values>h2{text-align:center}.about-value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.about-value{display:flex;gap:16px;align-items:center;border:1px solid var(--line);border-radius:12px;padding:22px 18px;background:rgba(255,253,248,.65)}.about-value svg{flex-shrink:0;color:#526b34}.about-value p{font-size:12px;line-height:1.6;margin:0}.about-value h3{font-size:17px;color:#3c522a}.about-details{display:grid;grid-template-columns:1fr 1fr;gap:42px;padding:40px 18px 28px}.about-details>div+div{border-left:1px solid var(--line);padding-left:42px}.about-small-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:18px}.about-small-grid>div,.about-small-grid>a{border:1px solid var(--line);border-radius:9px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:18px 8px;text-align:center;color:#4b6232}.about-small-grid span{font-size:11px;line-height:1.5;color:var(--ink)}.about-category-grid{grid-template-columns:repeat(3,1fr)}.about-category-grid strong{font-family:Georgia,serif;color:var(--rust);font-size:19px}.about-category-grid a:hover{background:#f2ecdE}.about-gallery{padding:5px 18px 28px}.about-gallery-heading{display:flex;align-items:center;justify-content:space-between;gap:16px}.about-gallery-heading h2{margin-bottom:16px}.about-gallery-heading button{border:1px solid var(--line);border-radius:50%;background:var(--paper);width:34px;height:34px;margin-left:8px;cursor:pointer}.about-gallery-track{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:10px}.about-gallery figure{flex:0 0 calc((100% - 70px)/6);min-width:145px;margin:0;scroll-snap-align:start}.about-gallery img{width:100%;height:135px;object-fit:cover;border-radius:8px}.about-gallery figcaption{font-size:11px;margin-top:7px;color:var(--muted)}.about-bottom{display:grid;grid-template-columns:1.75fr 1fr;gap:24px;margin-top:8px}.about-advice{border:1px solid var(--line);border-radius:12px;padding:26px}.about-advice>div{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.about-advice h2{font-size:25px}.about-advice h3{font-size:17px}.about-advice p{font-size:12px;margin-bottom:0}.about-advice b{display:block;color:var(--rust);font-family:Georgia,serif;font-size:28px;margin-bottom:12px}.about-cta{border-radius:12px;padding:32px;background-size:cover;background-position:center;color:white;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.about-cta h2{font-size:30px}.about-page a:focus-visible,.about-page button:focus-visible{outline:3px solid var(--rust);outline-offset:4px}
@media(max-width:1000px){.about-value-grid{grid-template-columns:repeat(2,1fr)}.about-intro{gap:30px;padding-left:0;padding-right:0}.about-details{gap:24px;padding-left:0;padding-right:0}.about-details>div+div{padding-left:24px}.about-small-grid{grid-template-columns:repeat(2,1fr)}.about-category-grid{grid-template-columns:repeat(3,1fr)}.about-bottom{grid-template-columns:1.4fr 1fr}.about-advice>div{grid-template-columns:1fr;gap:16px}.about-advice b{float:left;margin:0 14px 24px 0}.about-category-grid strong{font-size:16px}}
@media(max-width:650px){.about-page{padding:0 18px 28px}.about-hero{padding:32px 24px;min-height:300px}.about-intro,.about-details,.about-bottom{grid-template-columns:1fr}.about-intro{padding:30px 0;gap:24px}.about-intro>img{height:230px}.about-page h2{font-size:26px}.about-values>h2{text-align:left}.about-value-grid{gap:10px}.about-value{flex-direction:column;align-items:flex-start;padding:17px 13px;gap:12px}.about-value h3{font-size:16px}.about-details{padding:30px 0 18px;gap:28px}.about-details>div+div{border-left:0;padding-left:0}.about-small-grid{grid-template-columns:repeat(4,1fr);gap:7px}.about-small-grid>div{padding:14px 5px}.about-category-grid{grid-template-columns:repeat(3,1fr)}.about-gallery{padding:10px 0 20px}.about-gallery-heading h2{font-size:23px}.about-gallery-heading>div{display:flex}.about-gallery figure{flex-basis:46%}.about-advice{padding:22px}.about-cta{padding:28px}}

/* Contact */
.contact-page{max-width:1320px;margin:auto;padding:0 32px 32px}.contact-hero{background-size:cover;background-position:center 52%;border-radius:12px;padding:34px 24px;text-align:center;color:#fffdf8;min-height:245px;display:flex;flex-direction:column;justify-content:center}.contact-page h1,.contact-page h2,.contact-page h3{font-family:Georgia,'Times New Roman',serif}.contact-hero h1{font-size:48px;font-weight:500;margin:12px 0 14px}.contact-hero p{font-size:16px;line-height:1.8;margin:0}.contact-ornament{display:flex;align-items:center;justify-content:center;gap:10px}.contact-ornament span{height:1px;width:46px;background:currentColor;opacity:.55}.contact-columns{display:grid;grid-template-columns:1fr 1.04fr;gap:24px;margin:28px 0 18px}.contact-panel{border:1px solid var(--line);border-radius:12px;padding:24px;background:rgba(255,253,248,.64)}.contact-panel h2{font-size:26px;line-height:1.2;margin:0 0 12px}.contact-form-panel>h2,.contact-lead{text-align:center}.contact-lead{font-size:13px;color:var(--muted);line-height:1.65;margin:0 0 22px}.contact-form-panel form{display:flex;flex-direction:column;gap:20px}.contact-form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}.contact-form-panel label{display:flex;flex-direction:column;gap:8px;font-weight:600;font-size:13px;position:relative}.contact-form-panel label small{display:contents;color:var(--muted);font-weight:400}.contact-form-panel input,.contact-form-panel select,.contact-form-panel textarea{width:100%;min-width:0;background:var(--paper);border:1px solid var(--line);border-radius:7px;padding:12px 14px;color:var(--ink);font-family:inherit;font-size:13px;font-weight:400;line-height:1.5;box-shadow:none}.contact-form-panel textarea{resize:vertical;min-height:118px;font-family:inherit}.contact-form-panel input:focus,.contact-form-panel select:focus,.contact-form-panel textarea:focus{outline:2px solid #637b44;outline-offset:2px}.contact-submit{display:flex;align-items:center;justify-content:center;gap:13px;background:var(--rust);color:white;border:0;border-radius:7px;padding:14px;font-weight:700;cursor:pointer}.contact-submit:hover{background:var(--rust-dark)}.contact-form-note{display:flex;align-items:flex-start;gap:7px;font-size:11px;line-height:1.6;color:var(--muted);margin:-5px 0 0}.contact-form-note svg{flex-shrink:0}.contact-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:13px}.contact-info-card{display:flex;gap:15px;border:1px solid var(--line);border-radius:10px;padding:20px 16px;min-width:0}.contact-info-card>svg{flex-shrink:0;color:#536b36;width:27px;height:27px}.contact-info-card h3,.contact-direct h3{font-size:18px;margin:0 0 8px}.contact-info-card strong{font-size:13px;font-weight:600}.contact-info-card p,.contact-direct p{font-size:12px;line-height:1.7;margin:5px 0 0;color:var(--muted)}a.contact-info-card:hover{background:#f4eedf}.contact-direct{display:flex;align-items:center;gap:18px;border:1px solid var(--line);border-radius:10px;padding:17px;margin:13px 0;color:var(--green)}.contact-direct h3{margin-bottom:3px}.contact-orchard{min-height:220px;border-radius:10px;background-size:cover;background-position:center;display:flex;align-items:flex-end;padding:25px;color:white}.contact-orchard span{font-size:10px;letter-spacing:2px}.contact-orchard h3{font-size:29px;font-weight:500;line-height:1.2;margin:9px 0 0}.contact-faq{padding:20px}.contact-faq>h2{text-align:center;margin-bottom:5px}.contact-faq>.contact-ornament{color:var(--rust);margin-bottom:15px}.contact-faq-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.contact-faq details{border:1px solid var(--line);border-radius:9px;padding:17px 14px;background:var(--paper)}.contact-faq summary{display:flex;gap:8px;align-items:center;list-style:none;cursor:pointer;font-family:Georgia,serif;font-size:15px;font-weight:700}.contact-faq summary::-webkit-details-marker{display:none}.contact-faq summary svg{flex-shrink:0;color:var(--green)}.contact-faq summary svg:last-child{margin-left:auto}.contact-faq details[open] summary svg:last-child{transform:rotate(180deg)}.contact-faq details p{font-size:12px;line-height:1.75;margin:11px 0 0;color:var(--muted)}.contact-help{display:flex;align-items:center;gap:22px;border:1px solid var(--line);border-radius:10px;padding:24px;margin-top:18px;background:#f7f0e3}.contact-help>div:nth-child(2){flex:1}.contact-help-icon{color:var(--green)}.contact-help h2{font-size:22px;margin:0 0 7px;color:var(--green)}.contact-help p{font-size:12px;margin:0;line-height:1.6}.contact-help a{white-space:nowrap;font-size:12px}.contact-outline{display:inline-flex;align-items:center;justify-content:center;gap:9px;border:1px solid #85916f;border-radius:5px;padding:12px;color:var(--green)}.contact-outline:hover{background:var(--paper)}.contact-ready{padding:16px;border:1px solid #a8ba8e;background:#edf3e4;border-radius:8px;font-size:13px}.contact-ready p{font-size:12px;line-height:1.6}.contact-page a:focus-visible,.contact-page button:focus-visible,.contact-page summary:focus-visible{outline:3px solid var(--rust);outline-offset:4px}body:has(.contact-page) .nav>a[href='/contact']{color:var(--rust);box-shadow:inset 0 -3px 0 var(--green)}
@media(max-width:1000px){.contact-columns{gap:16px}.contact-panel{padding:19px}.contact-info-card{padding:16px 12px;gap:10px}.contact-faq-grid{grid-template-columns:repeat(2,1fr)}.contact-help{flex-wrap:wrap}.contact-help>div:nth-child(2){flex-basis:80%}.contact-info-card h3{font-size:16px}}
@media(max-width:700px){.contact-page{padding:0 18px 24px}.contact-hero{min-height:230px;padding:28px 20px}.contact-hero h1{font-size:37px}.contact-hero p{font-size:14px}.contact-columns{grid-template-columns:1fr;margin-top:20px}.contact-form-row{gap:12px}.contact-panel h2{font-size:24px}.contact-info-card{padding:16px 11px}.contact-info-card>svg{width:22px;height:22px}.contact-faq-grid{grid-template-columns:1fr}.contact-help{padding:21px;gap:15px}.contact-help-icon{display:none}.contact-help a{flex:1;white-space:normal}.contact-orchard{min-height:210px}}
@media(max-width:380px){.contact-form-row,.contact-info-grid{grid-template-columns:1fr}}
.contact-info-card strong{overflow-wrap:anywhere}.contact-map{overflow:hidden;border:1px solid var(--line);border-radius:9px;background:var(--paper)}.contact-map iframe{display:block;width:100%;height:235px;border:0}.contact-map>a{display:block;padding:10px 13px 5px;font-size:12px;color:var(--green);font-weight:600}.contact-map>small{display:block;padding:0 13px 10px;font-size:10px;color:var(--muted)}

/* Delivery and planting */
.delivery-page{max-width:1320px;margin:auto;padding:0 32px 34px}.delivery-page h1,.delivery-page h2,.delivery-page h3{font-family:Georgia,'Times New Roman',serif}.delivery-page h2{font-size:27px;line-height:1.25;margin:0 0 22px;text-align:center}.delivery-page h2>span{font-family:inherit;color:var(--rust);font-size:16px;margin-right:7px}.delivery-page h3{font-size:19px;margin:0 0 8px;color:#3e552b}.delivery-page p{font-size:13px;line-height:1.8;margin:0}.delivery-hero{display:grid;grid-template-columns:1.1fr 1fr;min-height:335px;background:var(--paper);border:1px solid var(--line);border-radius:13px;overflow:hidden}.delivery-hero-copy{padding:38px 30px}.delivery-hero h1{font-size:clamp(34px,3.5vw,48px);font-weight:500;line-height:1.12;margin:0 0 20px}.delivery-hero-copy>p{font-size:15px;max-width:470px}.delivery-hero-tags{display:flex;gap:18px;margin-top:28px}.delivery-hero-tags span{display:flex;align-items:center;gap:7px;font-size:11px;line-height:1.4}.delivery-hero-tags svg{width:24px;flex-shrink:0;color:var(--green)}.delivery-hero-photo{background-size:cover;background-position:center;display:flex;align-items:flex-end;padding:25px}.delivery-hero-photo>div{display:flex;align-items:center;gap:13px;color:white;background:#2c451fd9;border:1px solid #ffffff45;border-radius:8px;padding:13px 18px}.delivery-hero-photo span{font-family:Georgia,serif;font-size:20px}.delivery-hero-photo small{display:block;font-family:inherit;font-size:12px;margin-top:4px}.delivery-process,.delivery-shipping,.delivery-guide{padding-top:30px}.delivery-step-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:35px}.delivery-step{position:relative;display:flex;gap:20px;align-items:center;border:1px solid var(--line);border-radius:10px;background:var(--paper);padding:22px}.delivery-round{position:relative;display:grid;place-items:center;background:#435c2c;color:white;border-radius:50%;width:66px;height:66px;flex-shrink:0}.delivery-round b{position:absolute;right:-2px;top:-8px;font:15px Georgia,serif;border:2px solid var(--paper);border-radius:50%;background:#435c2c;padding:4px 7px}.delivery-step p{font-size:12px}.delivery-step-arrow{position:absolute;right:-29px;color:var(--green)}.delivery-shipping-panel{display:grid;grid-template-columns:1.65fr 1fr;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--paper)}.delivery-shipping-grid{display:grid;grid-template-columns:1fr 1fr;gap:27px;padding:30px}.delivery-shipping-grid>div{display:flex;gap:17px}.delivery-shipping-grid svg{flex-shrink:0;color:#4c6833}.delivery-shipping-grid h3{font-family:inherit;font-size:14px}.delivery-shipping-grid p{font-size:12px}.delivery-shipping-aside{background:radial-gradient(circle at 80% 10%,#e2e9c9,transparent 70%),#edf0df;padding:30px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#486132}.delivery-shipping-aside h3{font-size:24px;margin:14px 0 10px}.delivery-shipping-aside a{display:flex;gap:10px;align-items:center;font-size:18px;font-weight:600;margin-top:10px}.delivery-guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:23px}.delivery-guide-card{border:1px solid var(--line);border-radius:11px;overflow:hidden;background:var(--paper)}.delivery-guide-art{height:125px;display:flex;align-items:center;justify-content:center;gap:20px;background:#e7edda;color:#52663d}.delivery-guide-art span{max-width:100px;line-height:1.6;font-size:11px;font-weight:600;letter-spacing:1.8px}.delivery-guide-art.soil{background:#eee3ce;color:#85613b}.delivery-guide-art.water{background:#e3eddf;color:#48705c}.delivery-guide-copy{padding:0 24px 24px}.delivery-guide-copy i{width:49px;height:49px;background:var(--paper);border:1px solid #b5c19f;border-radius:50%;display:grid;place-items:center;position:relative;margin-top:-24px;margin-bottom:12px;color:#4c6734}.delivery-guide-copy h3{font-size:21px}.delivery-guide-copy small{display:block;margin-top:12px;font-size:11px;line-height:1.6;color:var(--muted)}.delivery-guide-note{display:flex;justify-content:center;align-items:center;gap:8px;flex-wrap:wrap;margin-top:15px!important;font-size:11px!important;color:var(--muted)}.delivery-guide-note a{text-decoration:underline;color:var(--green)}.delivery-bottom{display:grid;grid-template-columns:1fr 1fr;gap:25px;margin-top:28px}.delivery-support{position:relative;border-radius:12px;border:1px solid var(--line);background:linear-gradient(110deg,#f2efdf,#e9eedb);padding:29px}.delivery-support>.about-eyebrow{font-size:10px}.delivery-support>svg{position:absolute;right:28px;top:24px;color:#577241}.delivery-support h2{text-align:left;font-size:27px;margin:20px 55px 15px 0}.delivery-support ul{list-style:none;padding:0;margin:17px 0;font-size:12px}.delivery-support li{display:flex;align-items:center;gap:8px;margin:8px 0}.delivery-support .about-button{background:#46602d}.delivery-faq{padding:26px;border:1px solid var(--line);border-radius:12px;background:var(--paper)}.delivery-faq h2{text-align:left;font-size:25px}.delivery-faq details{border-bottom:1px solid var(--line)}.delivery-faq summary{padding:13px 0;display:flex;justify-content:space-between;gap:12px;align-items:center;cursor:pointer;font-size:13px;list-style:none}.delivery-faq summary::-webkit-details-marker{display:none}.delivery-faq summary svg{flex-shrink:0}.delivery-faq details[open] summary svg{transform:rotate(180deg)}.delivery-faq details p{font-size:12px;color:var(--muted);padding:0 0 14px}.delivery-page a:focus-visible,.delivery-page summary:focus-visible{outline:3px solid var(--rust);outline-offset:4px}body:has(.delivery-page) .nav>a[href='/livrare-si-plantare']{color:var(--rust);box-shadow:inset 0 -3px 0 var(--green)}
@media(max-width:1000px){.delivery-hero-copy{padding:28px 24px}.delivery-hero-tags{flex-wrap:wrap;gap:10px}.delivery-step-grid{gap:20px}.delivery-step{padding:20px 15px;gap:13px;align-items:flex-start;flex-direction:column}.delivery-step-arrow{right:-21px;top:50%;width:19px}.delivery-shipping-grid{padding:22px;gap:20px}.delivery-guide-copy{padding:0 18px 20px}.delivery-guide-art{gap:12px}.delivery-guide-art svg{width:50px}.delivery-guide-art span{font-size:10px}}
@media(max-width:700px){.delivery-page{padding:0 18px 28px}.delivery-hero{grid-template-columns:1fr}.delivery-hero-photo{min-height:190px}.delivery-hero h1{font-size:37px}.delivery-hero-copy{padding:27px 23px}.delivery-hero-tags{margin-top:20px}.delivery-step-grid,.delivery-guide-grid,.delivery-bottom,.delivery-shipping-panel{grid-template-columns:1fr}.delivery-step{flex-direction:row;align-items:center;padding:23px;gap:20px}.delivery-step-arrow{display:none}.delivery-page h2{font-size:24px}.delivery-shipping-grid{gap:23px;grid-template-columns:1fr}.delivery-shipping-aside{padding:25px}.delivery-shipping-aside>svg{width:45px;height:45px}.delivery-guide-grid{gap:20px}.delivery-guide-art{height:115px;gap:25px}.delivery-guide-art svg{width:65px}.delivery-guide-art span{max-width:160px;font-size:12px}.delivery-guide-copy{padding:0 23px 24px}.delivery-bottom{gap:18px}.delivery-support{padding:24px}.delivery-support h2{font-size:25px}.delivery-support>.about-eyebrow{max-width:210px}.delivery-faq{padding:23px}}
