:root {
  --green-950: #0b3d23;
  --green-900: #10522e;
  --green-800: #176338;
  --green-700: #247a45;
  --green-100: #e5f2e7;
  --green-50: #f2f8ef;
  --lime: #d9ed8b;
  --cream: #fbf8ef;
  --sand: #eee7d5;
  --ink: #173124;
  --muted: #657168;
  --white: #ffffff;
  --orange: #e8813d;
  --shadow: 0 18px 60px rgba(17, 68, 38, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(36, 122, 69, 0.32);
  outline-offset: 3px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.announcement {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-inner span:first-child {
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 239, 0.94);
  border-bottom: 1px solid rgba(11, 61, 35, 0.1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.brand-mark {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green-800);
  display: block;
  background: var(--white);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.055em;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links button {
  border: 0;
  background: transparent;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.nav-links button:hover {
  background: rgba(36, 122, 69, 0.08);
  color: var(--green-800);
}

.mobile-cart-link {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-button {
  border: 0;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  padding: 9px 10px 9px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(16, 82, 46, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.cart-button:hover {
  transform: translateY(-1px);
  background: var(--green-800);
}

.cart-button b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-950);
  font-size: 12px;
}

.cart-icon {
  font-size: 15px;
}

.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 61, 35, 0.15);
  border-radius: 50%;
  background: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(115deg, #fbf8ef 0%, #f8f4e8 48%, #edf6e8 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background-image: radial-gradient(rgba(36, 122, 69, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent 0%, transparent 45%, black 100%);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange);
}

.hero h1,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--green-950);
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(50px, 6vw, 76px);
  line-height: 0.99;
}

.hero h1 em,
.section-heading h2 em,
.about-copy h2 em {
  color: var(--green-700);
  font-weight: 500;
}

.hero-text {
  max-width: 575px;
  margin: 26px 0 0;
  color: #59675e;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 33px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 14px 32px rgba(16, 82, 46, 0.22);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 17px 38px rgba(16, 82, 46, 0.28);
}

.button-primary span,
.button-light span {
  font-size: 19px;
}

.button-ghost {
  border-color: rgba(11, 61, 35, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--green-950);
}

.button-ghost:hover {
  background: var(--white);
}

.hero-proof {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 14px;
}

.proof-avatars {
  display: flex;
  padding-left: 9px;
}

.proof-avatars span {
  width: 38px;
  height: 38px;
  margin-left: -9px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 19px;
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-proof strong {
  color: var(--green-950);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.93;
  display: grid;
  place-items: center;
}

.logo-stage {
  width: min(470px, 90%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 42% 58% 54% 46% / 46% 44% 56% 54%;
  background: linear-gradient(145deg, #cfe9b4 0%, #e8f1c9 64%, #f6e4a8 100%);
  box-shadow: 0 36px 90px rgba(11, 61, 35, 0.2), inset 0 0 0 1px rgba(255,255,255,0.8);
  transform: rotate(-2deg);
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(11, 61, 35, 0.18);
  border-radius: inherit;
}

.logo-stage > img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 6px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(11, 61, 35, 0.18);
  mix-blend-mode: multiply;
  transform: rotate(2deg);
}

.hero-leaf {
  position: absolute;
  width: 185px;
  height: 77px;
  border-radius: 100% 0 100% 0;
  background: var(--green-700);
  opacity: 0.15;
}

.hero-leaf-one {
  right: -5%;
  top: 1%;
  transform: rotate(25deg);
}

.hero-leaf-two {
  left: 2%;
  bottom: 1%;
  transform: rotate(198deg) scale(0.72);
}

.floating-veg {
  position: absolute;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 35px rgba(11,61,35,0.14);
  font-size: 42px;
  z-index: 2;
  transform: rotate(2deg);
}

.veg-one {
  top: 10%;
  left: -3%;
}

.veg-two {
  top: 18%;
  right: -4%;
}

.veg-three {
  bottom: 7%;
  right: 2%;
}

.harvest-card {
  position: absolute;
  left: -1%;
  bottom: 3%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(11,61,35,0.1);
  border-radius: 18px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.harvest-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 50%;
  font-weight: 900;
}

.harvest-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.harvest-card strong {
  font-size: 12px;
  color: var(--green-950);
}

.harvest-card small {
  font-size: 10px;
  color: var(--muted);
}

.benefits {
  background: var(--white);
  border-top: 1px solid rgba(11,61,35,0.08);
  border-bottom: 1px solid rgba(11,61,35,0.08);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 25px 30px;
  border-right: 1px solid rgba(11,61,35,0.09);
}

.benefits article:first-child {
  padding-left: 0;
}

.benefits article:last-child {
  border-right: 0;
  padding-right: 0;
}

.benefits article > span {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--green-50);
  font-size: 20px;
}

.benefits article div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.benefits strong {
  color: var(--green-950);
  font-size: 13px;
}

.benefits small {
  color: var(--muted);
  font-size: 11px;
}

.section-pad {
  padding: 105px 0;
}

.catalog {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(39px, 4.7vw, 57px);
  line-height: 1.07;
}

.catalog-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 70px;
}

.catalog-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.catalog-tools {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.category-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-list button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(11,61,35,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: 150ms ease;
}

.category-list button:hover,
.category-list button.active {
  color: var(--white);
  background: var(--green-900);
  border-color: var(--green-900);
}

.search-box {
  width: 240px;
  min-width: 220px;
  min-height: 44px;
  border: 1px solid rgba(11,61,35,0.13);
  border-radius: 999px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
}

.search-box span {
  color: var(--green-700);
  font-size: 22px;
  transform: rotate(-12deg);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.search-box input::placeholder {
  color: #97a099;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(11,61,35,0.1);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 4px 0 rgba(11,61,35,0.015);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(17,68,38,0.11);
}

.product-visual {
  position: relative;
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-visual::before,
.cart-item-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 17px 17px;
  opacity: 0.5;
}

.product-visual.mint,
.cart-item-visual.mint { background: #dfeeca; }
.product-visual.forest,
.cart-item-visual.forest { background: #cce7c7; }
.product-visual.tomato,
.cart-item-visual.tomato { background: #f5d1be; }
.product-visual.carrot,
.cart-item-visual.carrot { background: #f7d9ad; }
.product-visual.lime,
.cart-item-visual.lime { background: #dce8a9; }
.product-visual.cucumber,
.cart-item-visual.cucumber { background: #c7e4c5; }
.product-visual.onion,
.cart-item-visual.onion { background: #e9d8e6; }
.product-visual.herb,
.cart-item-visual.herb { background: #cfe6d7; }
.product-visual.spinach,
.cart-item-visual.spinach { background: #c8dfc0; }
.product-visual.pepper,
.cart-item-visual.pepper { background: #f3c9bb; }

.product-emoji {
  position: relative;
  z-index: 2;
  font-size: 94px;
  filter: drop-shadow(0 18px 18px rgba(11,61,35,0.13));
  transition: transform 220ms ease;
}

.product-card:hover .product-emoji {
  transform: scale(1.08) rotate(-3deg);
}

.visual-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(11,61,35,0.12);
  border-radius: 50%;
  transform: translate(32px, 15px);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--green-800);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
}

.product-category {
  color: var(--green-700);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 8px 0 6px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
}

.product-info p {
  min-height: 39px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.product-bottom {
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid rgba(11,61,35,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price strong {
  color: var(--green-900);
  font-size: 18px;
}

.price small {
  color: var(--muted);
  font-size: 10px;
}

.product-bottom button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(16,82,46,0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.product-bottom button:hover {
  transform: scale(1.08);
  background: var(--green-700);
}

.product-bottom button.added {
  background: #69a83d;
  font-size: 16px;
}

.empty-search {
  min-height: 330px;
  border: 1px dashed rgba(11,61,35,0.2);
  border-radius: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: rgba(255,255,255,0.5);
}

.empty-search > span {
  font-size: 50px;
}

.empty-search h3 {
  margin: 15px 0 6px;
  font-family: var(--serif);
  font-size: 27px;
}

.empty-search p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.empty-search button {
  border: 0;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.about {
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 38% 38% 24px 24px;
  background: linear-gradient(#d9ed8b 0 46%, #7faa61 46% 100%);
  box-shadow: 0 35px 80px rgba(0,0,0,0.22);
}

.about-panel::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 35%;
  height: 75px;
  border-radius: 50%;
  background: #9abb70;
}

.sun {
  position: absolute;
  top: 55px;
  right: 60px;
  color: #f1af4b;
  font-size: 75px;
  line-height: 1;
}

.field-lines {
  position: absolute;
  z-index: 2;
  inset: 48% 0 0;
  display: flex;
  justify-content: space-around;
  perspective: 300px;
  overflow: hidden;
}

.field-lines i {
  display: block;
  width: 18%;
  height: 130%;
  background: linear-gradient(90deg, #3f7c46 0 28%, #c2ce82 28% 52%, #3f7c46 52% 78%, #c2ce82 78%);
  transform: rotateX(54deg) skewX(-5deg);
  transform-origin: top;
}

.vegetable-crate {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 51px;
  transform: translateX(-50%);
  width: 250px;
  min-height: 120px;
  border-radius: 9px 9px 22px 22px;
  border: 9px solid #875d34;
  border-top-width: 17px;
  background: repeating-linear-gradient(0deg, #c58a4c 0 23px, #a76e3b 23px 30px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-top: 1px;
  box-shadow: 0 19px 32px rgba(32,58,25,0.32);
}

.vegetable-crate span {
  margin: -53px -6px 0;
  font-size: 70px;
  filter: drop-shadow(0 9px 8px rgba(0,0,0,0.2));
}

.location-tag {
  position: absolute;
  right: -25px;
  bottom: 36px;
  z-index: 6;
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  color: var(--green-950);
  box-shadow: 0 22px 50px rgba(0,0,0,0.2);
}

.location-tag > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 22px;
}

.location-tag div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-tag strong {
  font-size: 12px;
}

.location-tag small {
  color: var(--muted);
  font-size: 10px;
}

.eyebrow.light {
  color: var(--lime);
}

.about-copy h2 {
  color: var(--white);
}

.about-copy h2 em {
  color: var(--lime);
}

.about-copy > p:not(.eyebrow) {
  margin: 26px 0 32px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.8;
}

.value-list {
  display: grid;
  gap: 4px;
}

.value-list article {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.value-list article:last-child {
  border-bottom: 0;
}

.value-list article > span {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

.value-list article div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.value-list strong {
  color: var(--white);
  font-size: 14px;
}

.value-list small {
  color: rgba(255,255,255,0.57);
  font-size: 11px;
  line-height: 1.55;
}

.how {
  background: #f2eee2;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.steps-grid article {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid rgba(11,61,35,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.66);
  text-align: center;
}

.steps-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 3;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-50%);
}

.step-number {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(11,61,35,0.28);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 900;
}

.steps-grid i {
  width: 68px;
  height: 68px;
  margin: 0 auto 17px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  font-style: normal;
  font-size: 32px;
}

.steps-grid h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 20px;
}

.steps-grid p {
  max-width: 250px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.cta-section {
  padding: 75px 0;
  background: var(--cream);
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 48px 55px;
  border-radius: 30px;
  background: linear-gradient(125deg, var(--green-900), var(--green-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-card::before {
  content: "";
  position: absolute;
  right: 20%;
  top: -80%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

.cta-card > div:not(.cta-decoration) {
  position: relative;
  z-index: 2;
}

.cta-card p {
  margin: 0 0 7px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.5vw, 46px);
  font-weight: 500;
}

.button-light {
  position: relative;
  z-index: 2;
  min-width: 170px;
  background: var(--white);
  color: var(--green-900);
}

.cta-decoration {
  position: absolute;
  right: 28%;
  bottom: -70px;
  font-size: 150px;
  opacity: 0.12;
  transform: rotate(-18deg);
}

footer {
  background: #082f1c;
  color: rgba(255,255,255,0.68);
  padding-top: 62px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr 1fr 0.9fr;
  gap: 55px;
  padding-bottom: 50px;
}

.footer-brand .brand-mark {
  border-color: rgba(255,255,255,0.6);
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
  color: var(--white);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:first-child p {
  max-width: 250px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.65;
}

.footer-grid > div > strong {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid > div > button,
.footer-grid > div > span {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  text-align: left;
}

.footer-grid > div > button {
  cursor: pointer;
}

.footer-grid > div > button:hover {
  color: var(--lime);
}

.footer-bottom {
  min-height: 65px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 35, 20, 0.54);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.cart-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(450px, 100%);
  display: flex;
  flex-direction: column;
  background: #fffdf7;
  box-shadow: -25px 0 70px rgba(4,39,20,0.2);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(.65,.05,.36,1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  min-height: 105px;
  padding: 25px 25px 20px;
  border-bottom: 1px solid rgba(11,61,35,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header p {
  margin: 0 0 4px;
  color: var(--green-700);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-header h2 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 28px;
}

.cart-header h2 span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-family: var(--sans);
  font-size: 11px;
  vertical-align: middle;
}

.cart-header > button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11,61,35,0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-950);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 25px;
}

.cart-item {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 79px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(11,61,35,0.09);
}

.cart-item-visual {
  position: relative;
  overflow: hidden;
  width: 79px;
  height: 79px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 43px;
}

.cart-item-visual::before {
  z-index: 0;
}

.cart-item-visual {
  isolation: isolate;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-top,
.cart-item-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-top h3 {
  margin: 3px 0 3px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 16px;
}

.cart-item-top small {
  color: var(--muted);
  font-size: 9px;
}

.cart-item-top > button {
  border: 0;
  background: transparent;
  color: #94a097;
  cursor: pointer;
  font-size: 18px;
}

.cart-item-bottom {
  margin-top: 11px;
  align-items: center;
}

.cart-item-bottom > strong {
  color: var(--green-900);
  font-size: 13px;
}

.quantity-control {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(11,61,35,0.14);
  border-radius: 999px;
  background: var(--white);
}

.quantity-control button,
.quantity-control span {
  width: 28px;
  height: 26px;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 12px;
}

.quantity-control button {
  cursor: pointer;
  color: var(--green-800);
  font-size: 16px;
}

.quantity-control button:hover {
  background: var(--green-50);
}

.quantity-control span {
  font-weight: 800;
  color: var(--green-950);
}

.empty-cart {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px;
}

.empty-cart > div {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-100);
  font-size: 45px;
}

.empty-cart h3 {
  margin: 24px 0 7px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 25px;
}

.empty-cart p {
  max-width: 270px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.empty-cart button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.cart-summary {
  padding: 21px 25px 25px;
  border-top: 1px solid rgba(11,61,35,0.1);
  background: var(--white);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.cart-summary .subtotal {
  margin-top: 11px;
  color: var(--green-950);
  font-size: 18px;
}

.cart-summary p {
  margin: 11px 0 16px;
  color: var(--muted);
  font-size: 9px;
}

.whatsapp-button,
.continue-button {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
}

.whatsapp-button {
  border: 0;
  background: #1ea75b;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(30,167,91,0.18);
}

.whatsapp-button span {
  margin-right: 6px;
  font-size: 17px;
}

.continue-button {
  min-height: 38px;
  margin-top: 7px;
  border: 0;
  background: transparent;
  color: var(--green-700);
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.5vw, 68px);
  }

  .benefits article {
    padding: 22px 15px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 60px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, 680px);
  }

  .announcement-location {
    display: none;
  }

  .announcement-inner {
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 17px;
    right: 17px;
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(11,61,35,0.12);
    border-radius: 0 0 20px 20px;
    background: rgba(251,248,239,0.98);
    box-shadow: 0 20px 40px rgba(11,61,35,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 170ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links button {
    text-align: left;
    padding: 13px 15px;
  }

  .mobile-cart-link {
    display: block;
  }

  .cart-button > span:not(.cart-icon) {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 74px;
    padding-bottom: 60px;
    gap: 45px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits article,
  .benefits article:first-child,
  .benefits article:last-child {
    padding: 20px;
    border: 0;
    border-bottom: 1px solid rgba(11,61,35,0.08);
  }

  .benefits article:nth-child(odd) {
    border-right: 1px solid rgba(11,61,35,0.08);
  }

  .section-pad {
    padding: 80px 0;
  }

  .catalog-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-heading > p {
    max-width: 530px;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-panel {
    min-height: 480px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article:not(:last-child)::after {
    content: "↓";
    top: auto;
    bottom: -18px;
    right: 50%;
    transform: translateX(50%);
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .nav-wrap {
    height: 68px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .cart-button {
    padding-left: 11px;
  }

  .cart-button .cart-icon {
    display: none;
  }

  .hero-grid {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.08;
  }

  .logo-stage {
    width: 90%;
  }

  .floating-veg {
    width: 56px;
    height: 56px;
    font-size: 31px;
  }

  .harvest-card {
    left: 0;
    bottom: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits article:nth-child(odd),
  .benefits article {
    border-right: 0;
  }

  .section-pad {
    padding: 67px 0;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 38px;
  }

  .category-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .category-list::-webkit-scrollbar {
    display: none;
  }

  .category-list button {
    flex: 0 0 auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    height: 215px;
  }

  .about-panel {
    min-height: 390px;
  }

  .vegetable-crate {
    transform: translateX(-50%) scale(0.78);
  }

  .location-tag {
    right: -4px;
    bottom: 22px;
  }

  .cta-section {
    padding: 45px 0;
  }

  .cta-card {
    padding: 37px 27px;
    border-radius: 23px;
  }

  .button-light {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .cart-header,
  .cart-content,
  .cart-summary {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Actualización con catálogo y fotografías reales de AGROSHADAY */
.farm-hero {
  min-height: 545px;
  aspect-ratio: 0.94 / 1;
  display: block;
  isolation: isolate;
}

.hero-field-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  border: 9px solid rgba(255, 255, 255, 0.82);
  border-radius: 46px 46px 120px 46px;
  box-shadow: 0 35px 85px rgba(11, 61, 35, 0.24);
}

.farm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 46px 46px 120px 46px;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 40, 21, 0.42) 100%);
  pointer-events: none;
}

.farm-logo-seal {
  position: absolute;
  z-index: 3;
  top: -24px;
  right: -20px;
  width: 116px;
  height: 116px;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(11, 61, 35, 0.22);
}

.farm-logo-seal img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.photo-origin {
  position: absolute;
  z-index: 3;
  left: 25px;
  bottom: 111px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.photo-origin span {
  color: var(--lime);
  font-size: 12px;
}

.farm-hero .harvest-card {
  z-index: 4;
  left: 24px;
  bottom: 25px;
}

.product-visual {
  height: 236px;
  padding: 8px;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 61, 35, 0.08);
}

.product-visual::before,
.cart-item-visual::before {
  display: none;
}

.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.035);
}

.product-presentation {
  min-height: 19px;
  display: block;
  margin-bottom: 7px;
  color: #718076;
  font-size: 10px;
  font-weight: 800;
}

.product-info p {
  min-height: 52px;
}

.price-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.per-kg {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.cart-item-visual {
  padding: 4px;
  background: var(--white);
  border: 1px solid rgba(11, 61, 35, 0.09);
}

.cart-item-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.field-collage {
  height: 570px;
  display: grid;
  grid-template-columns: 1.5fr 0.72fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.field-main {
  position: relative;
  min-width: 0;
  min-height: 0;
  grid-row: 1 / -1;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px 16px 16px 90px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.field-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 37, 20, 0.75));
}

.field-main img,
.field-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.field-main img {
  object-position: 52% center;
}

.field-main figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 23px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.field-photo {
  min-width: 0;
  min-height: 0;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.field-photo-one {
  object-position: center 55%;
  border-radius: 16px 40px 16px 16px;
}

.field-photo-two {
  object-position: center 46%;
}

.field-photo-three {
  object-position: center 55%;
  border-radius: 16px 16px 55px 16px;
}

@media (max-width: 1050px) {
  .farm-hero {
    min-height: 500px;
  }

  .field-collage {
    height: 520px;
  }
}

@media (max-width: 820px) {
  .farm-hero {
    width: min(100%, 570px);
    min-height: 560px;
    aspect-ratio: 1 / 1.04;
  }

  .field-collage {
    height: 560px;
  }
}

@media (max-width: 560px) {
  .farm-hero {
    min-height: 440px;
    aspect-ratio: 0.88 / 1;
  }

  .hero-field-image,
  .farm-hero::after {
    border-radius: 30px 30px 82px 30px;
  }

  .farm-logo-seal {
    top: -15px;
    right: -5px;
    width: 88px;
    height: 88px;
    border-width: 4px;
  }

  .photo-origin {
    left: 18px;
    bottom: 101px;
    font-size: 8px;
  }

  .farm-hero .harvest-card {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }

  .product-visual {
    height: 245px;
  }

  .product-info p {
    min-height: auto;
  }

  .field-collage {
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 315px 118px;
    gap: 8px;
  }

  .field-main {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 30px 30px 18px 18px;
  }

  .field-photo-one,
  .field-photo-two,
  .field-photo-three {
    grid-row: 2;
    border-radius: 12px;
  }

  .field-photo-one { grid-column: 1; }
  .field-photo-two { grid-column: 2; }
  .field-photo-three { grid-column: 3; }

  .location-tag {
    right: 10px;
    bottom: 92px;
  }
}

/* Compra, búsqueda y contacto */
.header-search {
  width: clamp(180px, 21vw, 280px);
  min-height: 42px;
  flex: 0 1 280px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(11, 61, 35, 0.14);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 61, 35, 0.05);
}

.header-search > span {
  color: var(--green-700);
  font-size: 20px;
  line-height: 1;
  transform: rotate(-12deg);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
}

.header-search input::placeholder {
  color: #929c95;
}

.product-visual {
  height: 270px;
  padding: 18px;
}

.product-visual img {
  object-fit: contain;
  image-rendering: auto;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.paypal-button,
.whatsapp-button,
.paid-whatsapp-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: transform 160ms ease, filter 160ms ease;
}

.paypal-button {
  margin-top: 10px;
  background: #0070ba;
  box-shadow: 0 10px 25px rgba(0, 112, 186, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.paypal-button:hover,
.whatsapp-button:hover,
.paid-whatsapp-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.paypal-wordmark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  background: #ffc439;
  color: #003087;
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 900;
}

.accepted-cards {
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.03em;
}

.paypal-checkout { min-height: 48px; }
.paypal-buttons-host { min-height: 0; opacity: 0; transition: opacity 180ms ease; }
.paypal-buttons-host.ready { min-height: 48px; opacity: 1; }
.paypal-loading,
.paypal-unavailable {
  min-height: 48px;
  border: 1px solid rgba(0, 48, 135, 0.14);
  border-radius: 14px;
  background: #f2f7fc;
  color: #24435f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
}
.paypal-unavailable { align-items: flex-start; flex-direction: column; text-align: left; }
.paypal-unavailable strong { color: #003087; font-size: 11px; }
.paypal-unavailable span { color: #5f6e7b; font-size: 9px; font-weight: 600; }
.payment-success {
  min-height: 58px;
  border: 1px solid rgba(30, 167, 91, 0.24);
  border-radius: 15px;
  background: #eefaf2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
}
.payment-success > span { width: 33px; height: 33px; flex: 0 0 33px; border-radius: 50%; background: #1ea75b; color: var(--white); display: grid; place-items: center; font-weight: 900; }
.payment-success div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.payment-success strong { color: var(--green-950); font-size: 11px; }
.payment-success small { overflow-wrap: anywhere; color: var(--muted); font-size: 9px; }
.paid-whatsapp-button { margin-top: 9px; background: #116a38; box-shadow: 0 10px 25px rgba(17, 106, 56, 0.2); }

.checkout-divider {
  position: relative;
  height: 25px;
  margin: 6px 0;
  display: grid !important;
  place-items: center;
}

.checkout-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(11, 61, 35, 0.1);
}

.checkout-divider span {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  background: var(--white);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-error {
  margin: 10px 0 0 !important;
  padding: 9px 11px;
  border: 1px solid #efc7c1;
  border-radius: 12px;
  background: #fff2f0;
  color: #9b3328 !important;
  font-size: 10px !important;
  line-height: 1.45;
}

.payment-followup {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(30, 167, 91, 0.2);
  border-radius: 14px;
  background: #eefaf2;
  display: block !important;
}

.payment-followup strong {
  color: var(--green-950);
  font-size: 11px;
}

.payment-followup p {
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.payment-followup button {
  width: 100%;
  min-height: 37px;
  border: 0;
  border-radius: 999px;
  background: #1ea75b;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(10, 84, 43, 0.3);
  transition: transform 170ms ease, right 260ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp span {
  width: 29px;
  height: 29px;
  border: 3px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  line-height: 1;
}

.floating-whatsapp.cart-is-open {
  right: min(474px, calc(100vw - 74px));
}

.footer-contact-grid {
  grid-template-columns: 1.05fr 0.95fr 1.15fr;
  gap: 74px;
  padding-bottom: 42px;
}

.footer-contact-grid > div {
  gap: 0;
}

.footer-contact-grid > div > strong {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.footer-intro .footer-brand {
  gap: 14px;
}

.footer-intro .brand-mark {
  width: 70px;
  height: 70px;
  border-color: transparent;
  opacity: 0.48;
}

.footer-name {
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

.footer-intro > p {
  max-width: 400px !important;
  margin-top: 24px !important;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.footer-detail {
  width: 100%;
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 9px !important;
  margin-bottom: 14px;
}

.footer-detail > span {
  color: var(--lime) !important;
  font-size: 14px !important;
}

.footer-detail p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.5;
}

.footer-detail a {
  color: inherit;
  text-decoration: none;
}

.footer-detail a:hover {
  color: var(--lime);
}

.footer-detail b {
  color: var(--white);
  font-style: normal;
}

.footer-detail em {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

.footer-contact-grid + .footer-bottom {
  justify-content: flex-start;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .header-search {
    width: 185px;
    flex-basis: 185px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid article::after {
    display: none !important;
  }

  .footer-contact-grid {
    gap: 38px;
  }
}

@media (max-width: 820px) {
  .header-search {
    flex: 1 1 190px;
    width: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-coverage {
    grid-column: 1 / -1;
  }

  .floating-whatsapp.cart-is-open {
    right: 18px;
    bottom: 82px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 142px;
  }

  .nav-wrap {
    min-height: 116px;
    height: auto;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 0;
  }

  .header-search {
    order: 3;
    width: 100%;
    min-height: 38px;
    flex-basis: 100%;
  }

  .nav-links {
    top: 100%;
  }

  .nav-actions {
    margin-left: auto;
  }

  .product-visual {
    height: 290px;
    padding: 24px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-coverage {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
