@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Merriweather:wght@700;900&display=swap");

:root {
  --cream: #fff8eb;
  --cream-strong: #fff2d4;
  --mango: #ffb11f;
  --mango-deep: #e07a14;
  --leaf: #356b2d;
  --leaf-deep: #22481c;
  --soil: #6e4323;
  --text: #3a2818;
  --muted: #7d644e;
  --card: rgba(255, 249, 236, 0.82);
  --shadow: 0 28px 60px rgba(98, 58, 19, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffbed 0%, #fff3d7 52%, #ffe4bb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 73, 0.55), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(108, 161, 68, 0.28), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(255, 227, 160, 0.7), transparent 30%);
  pointer-events: none;
  z-index: -3;
}

.floating-orchard {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.floating-orchard__fruit {
  position: absolute;
  opacity: 0.3;
  filter: drop-shadow(0 30px 55px rgba(96, 65, 27, 0.2));
  animation: floatThreeD 8s ease-in-out infinite;
  transition: transform 220ms ease-out;
}

.floating-orchard__fruit--hero {
  top: -1rem;
  right: -6rem;
  width: min(38vw, 28rem);
}

.floating-orchard__fruit--leaf {
  bottom: 10%;
  left: -4rem;
  width: min(25vw, 16rem);
  animation-delay: -2s;
}

.floating-orchard__fruit--cut {
  top: 40%;
  right: 5%;
  width: min(18vw, 12rem);
  animation-delay: -4s;
}

.floating-orchard__fruit--small {
  bottom: 16%;
  right: 36%;
  width: min(11vw, 8rem);
  animation-delay: -3s;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
}

.site-header,
.site-footer,
.feature-strip,
.hero,
.orchard-story,
.checkout-intro,
.checkout-card,
.product-page-shell {
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 251, 240, 0.76);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 1rem;
  z-index: 8;
}

.site-header__bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand--header {
  min-width: 0;
  flex: 1 1 auto;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--mango-deep) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand__copy strong,
.hero h1,
.section-heading h2,
.orchard-story h2,
.site-footer strong,
.checkout-intro h1,
.checkout-card h2,
.product-hero__copy h1 {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
}

.brand__copy span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav,
.site-header__actions,
.hero__actions,
.hero__badges,
.product-card__actions,
.product-hero__actions,
.site-footer__links,
.checkout-actions,
.product-tags,
.orchard-story__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-header__nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header__right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.cart-button:hover,
.drawer-close:hover,
.cart-item__controls button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--mango-deep) 100%);
  box-shadow: 0 16px 30px rgba(104, 66, 28, 0.22);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 248, 233, 0.86);
  border: 1px solid rgba(111, 74, 37, 0.15);
}

.button--full {
  width: 100%;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2f6e2f 0%, #ff9e1b 100%);
  box-shadow: 0 14px 32px rgba(79, 90, 33, 0.28);
  transition: transform 180ms ease;
}

.eyebrow,
.product-card__variety {
  margin: 0 0 0.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--leaf);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 168, 0.95), transparent 32%),
    linear-gradient(140deg, rgba(255, 251, 240, 0.9), rgba(255, 239, 202, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.hero h1,
.checkout-intro h1,
.product-hero__copy h1 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 0.96;
}

.hero__text {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__badges span,
.product-tags span,
.orchard-story__list span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 90, 50, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  min-height: 32rem;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 44px rgba(103, 67, 27, 0.18);
}

.hero-card--main {
  inset: 2rem 7rem 6rem 0;
  padding: 1.8rem;
}

.hero-card--main h2 {
  margin: 0.7rem 0;
  font-size: 1.8rem;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
}

.hero-card--main p,
.feature-tile p,
.product-card__copy p,
.orchard-story p,
.story-card p,
.checkout-intro p,
.checkout-card p,
.product-hero__copy p,
.detail-card p,
.mini-product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-card__label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 214, 123, 0.36);
  color: var(--soil);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-card--floating {
  right: 0;
  bottom: 2rem;
  padding: 1rem 1.15rem;
  min-width: 11rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-card--floating span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero__mango {
  position: absolute;
  filter: drop-shadow(0 28px 40px rgba(109, 75, 23, 0.22));
  animation: floatFruit 9s ease-in-out infinite;
  transition: transform 220ms ease-out;
}

.hero__mango--one {
  top: 0;
  right: 1rem;
  width: min(36vw, 22rem);
}

.hero__mango--two {
  left: 5rem;
  bottom: 1rem;
  width: min(26vw, 15rem);
  animation-delay: -2s;
}

.hero__mango--three {
  right: 7rem;
  top: 8rem;
  width: min(18vw, 10rem);
  animation-delay: -4s;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.feature-tile,
.story-card,
.checkout-card,
.detail-card,
.mini-product-card,
.product-page-shell {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.feature-tile {
  padding: 1.25rem;
}

.feature-tile__number {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.section,
.checkout-page {
  margin-top: 1.5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading h2,
.checkout-card h2,
.orchard-story h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-grid,
.orchard-story,
.checkout-layout,
.detail-grid,
.related-grid {
  display: grid;
  gap: 1.2rem;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 229, 0.96) 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(88, 57, 24, 0.18);
  border-color: rgba(224, 122, 20, 0.2);
}

.product-card:focus-visible {
  outline: 3px solid rgba(53, 107, 45, 0.24);
  outline-offset: 3px;
}

.product-card__visual {
  position: relative;
  min-height: 18rem;
  padding: 1.2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top, var(--product-tone-a, rgba(255, 239, 184, 0.9)) 0%, rgba(255, 247, 227, 0) 62%),
    linear-gradient(180deg, rgba(255, 248, 229, 0.92) 0%, rgba(255, 241, 212, 0.6) 100%);
}

.product-card__visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.product-card__badge,
.product-hero__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 251, 237, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card__image,
.product-hero__image {
  width: min(70%, 17rem);
  margin: 3.2rem auto 0;
  filter: drop-shadow(0 30px 48px rgba(109, 73, 18, 0.22));
  animation: floatThreeD 7s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.product-card__leaf {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 6rem;
  opacity: 0.58;
  filter: drop-shadow(0 16px 26px rgba(83, 108, 39, 0.18));
}

.product-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem;
  align-items: stretch;
}

.product-card h3,
.story-card h3,
.detail-card h3,
.mini-product-card h3 {
  margin: 0;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
}

.product-card__copy > p {
  margin: 0;
}

.product-card__note {
  min-height: 3.2rem;
}

.product-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-card__details span {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(133, 93, 40, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-card__details strong {
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__meta,
.product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 243, 209, 0.86), rgba(255, 251, 240, 0.96));
  border: 1px solid rgba(217, 161, 73, 0.18);
}

.product-card__meta strong,
.mini-product-card strong,
.checkout-total strong,
.cart-total strong,
.product-meta strong {
  font-size: 1.08rem;
}

.product-card__meta span,
.product-meta span,
.form-note {
  color: var(--muted);
}

.product-card__price {
  display: grid;
  gap: 0.15rem;
}

.product-card__price strong {
  font-size: 1.22rem;
}

.product-card__price span {
  font-size: 0.86rem;
}

.product-card__origin {
  justify-self: end;
  max-width: 12rem;
  text-align: right;
  font-size: 0.85rem;
  line-height: 1.45;
}

.product-card__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.orchard-story {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 223, 144, 0.6), transparent 24%),
    rgba(255, 249, 240, 0.76);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.orchard-story__cards {
  display: grid;
  gap: 1rem;
}

.story-card,
.detail-card,
.mini-product-card {
  padding: 1.25rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(56, 93, 39, 0.92);
  color: #fff8ea;
  box-shadow: var(--shadow);
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 248, 234, 0.82);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(28rem, 100%);
  height: 100vh;
  z-index: 22;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  background: rgba(255, 248, 233, 0.98);
  box-shadow: -24px 0 40px rgba(62, 46, 21, 0.16);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 21;
  background: rgba(49, 35, 15, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__header,
.cart-item,
.checkout-item,
.checkout-total,
.cart-total,
.checkout-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 233, 196, 0.8);
  font-size: 1.4rem;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  display: grid;
  gap: 0.85rem;
}

.cart-item,
.checkout-item {
  align-items: flex-start;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.cart-item__image,
.checkout-item img {
  width: 5.4rem;
  border-radius: var(--radius-sm);
}

.cart-item__copy,
.checkout-item__copy {
  flex: 1;
}

.cart-item__copy h3,
.checkout-item__copy h3 {
  margin: 0 0 0.2rem;
  font-size: 1.04rem;
}

.cart-item__copy p,
.checkout-item__copy p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item__controls {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.cart-item__controls button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 232, 195, 0.8);
}

.cart-item__remove {
  width: auto;
  min-width: 4rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.cart-empty,
.checkout-empty {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.checkout-page {
  display: grid;
  gap: 1.2rem;
}

.checkout-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 240, 0.78);
  box-shadow: var(--shadow);
}

.checkout-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.checkout-card {
  padding: 1.4rem;
}

.checkout-items {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.checkout-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(121, 86, 44, 0.15);
  background: rgba(255, 255, 255, 0.84);
  outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: rgba(224, 122, 20, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 187, 84, 0.15);
}

.checkout-form__wide,
.checkout-actions {
  grid-column: 1 / -1;
}

.product-page-shell {
  margin-top: 1.4rem;
  padding: 2rem;
}

.product-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}

.product-hero__visual {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: transparent;
}

.product-hero__image {
  margin-top: 5rem;
}

.product-hero__decor {
  position: absolute;
  opacity: 0.34;
  filter: drop-shadow(0 18px 30px rgba(95, 67, 31, 0.22));
}

.product-hero__decor--one {
  left: -2rem;
  bottom: -2rem;
  width: 11rem;
}

.product-hero__decor--two {
  right: -1rem;
  top: 3rem;
  width: 9rem;
}

.product-hero__copy {
  display: grid;
  gap: 1rem;
}

.detail-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-product-card {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  background:
    radial-gradient(circle at top left, var(--product-tone-a), transparent 40%),
    rgba(255, 249, 240, 0.82);
}

.mini-product-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 241, 214, 0.75));
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  z-index: 30;
  transform: translate(-50%, 1.4rem);
  opacity: 0;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(37, 80, 33, 0.94);
  color: #fff;
  box-shadow: 0 18px 40px rgba(32, 62, 23, 0.28);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast--visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@keyframes floatFruit {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes floatThreeD {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(1.5deg) scale(1.02);
  }
}

@media (max-width: 1080px) {
  .hero,
  .orchard-story,
  .checkout-layout,
  .product-hero {
    grid-template-columns: 1fr;
  }

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

  .feature-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 1rem, 100%);
  }

  .site-header,
  .hero,
  .orchard-story,
  .checkout-intro,
  .product-page-shell,
  .checkout-card,
  .site-footer {
    border-radius: 28px;
    padding: 1.25rem;
  }

  .site-header,
  .site-footer,
  .section-heading,
  .checkout-intro,
  .cart-item,
  .checkout-item,
  .checkout-card__heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero__visual {
    min-height: 24rem;
  }

  .product-grid,
  .detail-grid,
  .related-grid,
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
  }

  .floating-orchard__fruit--hero {
    width: 18rem;
    right: -6rem;
  }
}

:root {
  --text: #23180f;
  --muted: #4f3c2a;
  --card: rgba(255, 252, 246, 0.94);
  --shadow: 0 20px 44px rgba(84, 54, 23, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

body {
  background:
    linear-gradient(180deg, #fff8ee 0%, #fff1d8 48%, #ffe4b8 100%);
  color: var(--text);
}

.site-shell {
  width: min(1080px, calc(100% - 1rem));
  padding: 0.8rem 0 6rem;
}

.site-header {
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.94);
  border-color: rgba(116, 80, 37, 0.08);
}

.brand {
  min-width: 0;
}

.brand__mark {
  display: none;
}

.brand__logo {
  width: 8.7rem;
  height: 8.7rem;
  flex: 0 0 auto;
  object-fit: contain;
  box-shadow: none;
}

.brand__copy strong {
  font-size: 1.75rem;
  line-height: 1.05;
}

.brand__copy {
  gap: 0.22rem;
  justify-content: center;
}

.brand__copy span:last-child {
  font-size: 0.92rem;
}

.site-header__bar {
  align-items: center;
}

.brand--header {
  align-items: center;
}

.site-header__nav {
  gap: 1.15rem;
}

.site-header__right {
  margin-left: 0.25rem;
}

.site-header + main,
.site-header + .checkout-page,
.site-header + .product-page-shell {
  margin-top: 1.8rem;
}

.section-heading > div,
.checkout-card__heading,
.gallery-card__copy,
.feature-tile,
.trust-panel__content,
.hero__content {
  display: grid;
}

.section-heading > div {
  gap: 0.35rem;
}

.feature-tile,
.gallery-card__copy,
.trust-panel__content {
  gap: 0.7rem;
}

.feature-tile h3,
.gallery-card__copy h3,
.trust-panel__content h2,
.checkout-card__heading h2,
.product-card h3,
.detail-card h3,
.mini-product-card h3,
.site-footer strong {
  margin: 0;
  line-height: 1.22;
}

.feature-tile p,
.gallery-card__copy p,
.trust-stat span,
.site-footer p,
.checkout-intro p,
.product-card__copy p,
.product-hero__copy p,
.detail-card p,
.mini-product-card p {
  margin: 0;
}

.story-lead {
  margin: 0 0 1rem;
  max-width: 70rem;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

.brand__copy span:last-child,
.site-nav a,
.product-card__copy p,
.feature-tile p,
.checkout-intro p,
.checkout-card p,
.detail-card p,
.mini-product-card p,
.product-hero__copy p,
.cart-item__copy p,
.checkout-item__copy p,
.form-note,
.product-card__meta span,
.product-meta span {
  color: var(--muted);
}

.site-nav a {
  font-weight: 700;
}

.button,
.cart-button {
  min-height: 3rem;
}

.header-whatsapp {
  white-space: nowrap;
  padding: 0.72rem 1rem;
  min-height: 2.65rem;
  font-size: 0.9rem;
}

.hero {
  gap: 1.3rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top left, rgba(255, 227, 149, 0.88), transparent 30%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(255, 241, 212, 0.92));
}

.hero__content {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 1.02;
}

.hero__text {
  max-width: 42rem;
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(129, 91, 46, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero__text--compact {
  max-width: none;
}

.hero__visual--single {
  min-height: auto;
}

.hero-frame {
  display: grid;
  gap: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

.hero__single-image {
  width: min(100%, 24rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 18px 0 rgba(140, 95, 22, 0.08))
    drop-shadow(0 36px 46px rgba(111, 77, 23, 0.28));
  animation: floatThreeD 6.5s ease-in-out infinite;
}

.hero-frame__foot {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.9);
}

.hero-frame__foot span {
  color: var(--muted);
}

.hero__badges span,
.product-tags span,
.orchard-story__list span,
.product-card__trust span {
  color: var(--text);
  background: rgba(255, 250, 239, 0.94);
}

.feature-strip,
.product-grid,
.trust-panel__stats,
.heritage-gallery__grid {
  gap: 1rem;
}

.feature-tile {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  background: rgba(255, 252, 246, 0.95);
}

.feature-tile__media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  min-height: 5.6rem;
}

.feature-tile__media img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 14px 0 rgba(126, 87, 26, 0.08))
    drop-shadow(0 22px 30px rgba(100, 73, 28, 0.24));
  animation: floatThreeD 6s ease-in-out infinite;
}

.feature-tile__number {
  margin: 0;
}

.section-heading {
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.trust-panel,
.heritage-gallery,
.checkout-intro,
.checkout-card,
.product-page-shell,
.product-card,
.feature-tile,
.site-footer {
  border: 1px solid rgba(122, 84, 41, 0.08);
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 244, 0.95);
  box-shadow: var(--shadow);
}

.trust-panel__content {
  display: grid;
  gap: 1rem;
}

.trust-panel__content--story {
  max-width: 58rem;
}

.trust-panel__content h2,
.gallery-card__copy h3 {
  margin: 0;
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
}

.trust-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-stat {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 247, 230, 0.92);
}

.trust-stat strong {
  font-size: 1.1rem;
}

.trust-stat span {
  color: var(--muted);
  line-height: 1.55;
}

.legacy-story {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1rem;
}

.trust-panel__gallery,
.heritage-gallery__grid {
  display: grid;
  gap: 1rem;
}

.farm-gallery-section {
  margin-top: 1.5rem;
}

.heritage-gallery {
  margin-top: 3rem;
}

.farm-gallery {
  columns: 4 220px;
  column-gap: 1rem;
}

.farm-gallery__item {
  break-inside: avoid;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.95);
  box-shadow: var(--shadow);
}

.farm-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.95);
  box-shadow: var(--shadow);
}

.gallery-card__media {
  display: grid;
  place-items: center;
  min-height: 14rem;
  padding: 1.2rem 1rem 0.5rem;
  position: relative;
  background: transparent;
}

.gallery-card__media img {
  width: min(100%, 14rem);
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 16px 0 rgba(138, 96, 27, 0.08))
    drop-shadow(0 26px 36px rgba(106, 72, 25, 0.24));
  animation: floatThreeD 7.5s ease-in-out infinite;
}

.gallery-card__media--farm {
  width: calc(100% - 0.4rem);
  max-width: none;
  height: 15rem;
  border-radius: 22px;
  object-fit: cover;
}

.gallery-card__copy {
  display: grid;
  gap: 0.5rem;
  padding: 1.15rem;
}

.gallery-card__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-card__copy,
.checkout-card,
.product-page-shell,
.checkout-intro {
  background: rgba(255, 252, 246, 0.96);
}

.product-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-card__trust span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-intro--rich {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.checkout-intro__media {
  display: grid;
  place-items: center;
  width: min(16rem, 100%);
  padding: 0.25rem;
  position: relative;
  background: transparent;
}

.checkout-intro__media img {
  width: 100%;
  max-width: 12rem;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 16px 0 rgba(138, 96, 27, 0.08))
    drop-shadow(0 28px 36px rgba(106, 72, 25, 0.24));
  animation: floatThreeD 7s ease-in-out infinite;
}

.checkout-intro__farm-photo {
  max-width: 15rem;
  height: 11rem;
  border-radius: 24px;
  object-fit: cover;
}

.product-page-shell {
  padding: 1.4rem;
}

.product-hero__visual {
  min-height: 28rem;
}

.product-hero__image {
  width: min(74%, 18rem);
  margin-top: 4.6rem;
}

.product-hero__stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-hero__copy,
.detail-card,
.mini-product-card,
.checkout-card,
.cart-item,
.checkout-item {
  color: var(--text);
}

.site-footer {
  padding: 1.15rem 1.25rem;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 0.7rem;
  z-index: 18;
  display: none;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem;
  width: min(calc(100% - 1rem), 29rem);
  padding: 0.55rem;
  border-radius: 24px;
  background: rgba(37, 31, 22, 0.94);
  box-shadow: 0 20px 40px rgba(33, 26, 19, 0.28);
  transform: translateX(-50%);
}

.mobile-dock__link,
.mobile-dock__action {
  min-height: 3rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #fff9ea;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.mobile-dock__link--primary {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--mango-deep) 100%);
}

.desktop-dock {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 17;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  width: min(32rem, calc(100% - 2rem));
  padding: 0.65rem;
  border-radius: 28px;
  background: rgba(37, 31, 22, 0.94);
  box-shadow: 0 20px 40px rgba(33, 26, 19, 0.24);
  transform: translateX(-50%);
}

.desktop-dock__link,
.desktop-dock__action {
  min-height: 3.25rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #fff9ea;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 1rem;
}

.desktop-dock__link--primary {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--mango-deep) 100%);
}

.hero-frame::after,
.feature-tile__media::after,
.gallery-card__media::after,
.checkout-intro__media::after,
.product-card__visual::after,
.product-hero__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  width: min(68%, 13rem);
  height: 1.2rem;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(114, 76, 22, 0.24), rgba(114, 76, 22, 0) 72%);
  filter: blur(8px);
  z-index: 0;
}

.hero-frame::after {
  bottom: 3.9rem;
  width: min(74%, 15rem);
}

.gallery-card__media::after {
  bottom: 1rem;
}

.checkout-intro__media::after {
  bottom: 0.8rem;
}

.product-card__visual::after {
  bottom: 1.2rem;
}

.product-hero__visual::after {
  bottom: 2rem;
  width: min(76%, 16rem);
}

@media (max-width: 1080px) {
  .checkout-intro--rich {
    grid-template-columns: 1fr;
  }

  .heritage-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .farm-gallery {
    columns: 3 180px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 5.5rem;
  }

  .site-shell {
    width: min(calc(100% - 0.75rem), 31rem);
    padding-top: 0.6rem;
  }

  .site-header {
    top: 0.55rem;
    padding: 0.7rem 0.8rem;
    border-radius: 22px;
  }

  .site-header + main,
  .site-header + .checkout-page,
  .site-header + .product-page-shell {
    margin-top: 1rem;
  }

  .site-header__bar {
    gap: 0.55rem;
    flex-wrap: nowrap;
  }

  .brand__logo {
    width: 6.9rem;
    height: 6.9rem;
  }

  .brand__copy strong {
    font-size: 1.2rem;
    line-height: 1;
  }

  .brand__copy span:last-child {
    display: block;
    font-size: 0.72rem;
    line-height: 1.05;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand__copy {
    min-width: 0;
    gap: 0;
  }

  .site-header__actions {
    display: none;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__right {
    margin-left: auto;
  }

  .header-whatsapp {
    display: inline-flex;
    padding: 0.58rem 0.78rem;
    min-height: 2.2rem;
    font-size: 0.78rem;
    line-height: 1;
    border-radius: 999px;
  }

  .hero,
  .trust-panel,
  .checkout-intro,
  .checkout-card,
  .product-page-shell,
  .site-footer {
    padding: 1rem;
  }

  .hero h1,
  .checkout-intro h1,
  .product-hero__copy h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .hero__visual {
    order: -1;
  }

  .hero__content {
    order: 2;
  }

  .hero-frame::after {
    bottom: 3.3rem;
  }

  .hero__actions .button,
  .product-card__actions .button,
  .product-hero__actions .button {
    width: 100%;
  }

  .feature-strip,
  .trust-panel__stats,
  .heritage-gallery__grid,
  .detail-grid,
  .related-grid,
  .checkout-form {
    grid-template-columns: 1fr;
  }

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

  .product-card__copy {
    padding: 1rem;
    gap: 0.6rem;
  }

  .product-card__visual {
    min-height: 16rem;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .product-card__details,
  .product-card__actions,
  .product-card__meta {
    grid-template-columns: 1fr;
  }

  .product-card__origin {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .product-card__note {
    min-height: 0;
  }

  .product-card__actions {
    gap: 0.55rem;
  }

  .product-card__actions .button {
    padding: 0.8rem 0.85rem;
    font-size: 0.84rem;
  }

  .checkout-intro__media {
    width: 100%;
  }

  .gallery-card__media--farm {
    height: 12.5rem;
  }

  .farm-gallery {
    columns: 2 140px;
    column-gap: 0.75rem;
  }

  .farm-gallery__item {
    margin-bottom: 0.75rem;
    border-radius: 18px;
  }

  .product-hero__visual {
    min-height: 22rem;
  }

  .mobile-dock {
    display: grid;
  }

  .desktop-dock {
    display: none;
  }
}

@media (min-width: 761px) {
  .mobile-dock {
    display: none;
  }
}
