:root {
  --ink: #16130d;
  --black: #050505;
  --charcoal: #11100d;
  --forest: #202f17;
  --leaf: #5b6f34;
  --citrus: #b9872f;
  --gold: #d9aa47;
  --old-gold: #92702c;
  --cream: #f7f0e4;
  --sand: #e5d6bd;
  --paper: #fffaf2;
  --muted: #746958;
  --line: rgba(23, 20, 15, 0.12);
  --gold-line: rgba(217, 170, 71, 0.32);
  --shadow: 0 28px 80px rgba(8, 7, 5, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf2;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(156, 116, 41, 0.22);
  backdrop-filter: blur(18px);
}

.site-header,
.main-nav,
.header-actions,
.hero,
.promo-panel,
.contact-section {
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: clamp(132px, 13vw, 176px);
  max-width: 100%;
  height: auto;
  padding: 6px 9px;
  background: var(--black);
  border: 1px solid rgba(217, 170, 71, 0.28);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(8, 7, 5, 0.12);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #090806, var(--old-gold) 48%, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(156, 116, 41, 0.28);
}

.brand strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-button,
.primary-button,
.secondary-button,
.filter-chip {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.ghost-button {
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--black), #3b2c14);
  border: 1px solid var(--gold-line);
}

.cart-button,
.icon-button {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.cart-button {
  position: relative;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}

.cart-icon {
  width: 18px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(2px);
}

.cart-icon::before,
.cart-icon::after {
  position: absolute;
  bottom: 9px;
  width: 4px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.cart-icon::before {
  left: 15px;
}

.cart-icon::after {
  right: 15px;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 6px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--black), var(--old-gold));
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(52px, 8vw, 110px) clamp(18px, 8vw, 110px) clamp(38px, 6vw, 80px);
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 170, 71, 0.2), transparent 31%),
    linear-gradient(108deg, #fffaf2 0%, #f8f0e3 54%, #efe0c6 100%);
}

.hero-copy,
.hero-visual,
.promo-copy,
.section-heading,
.contact-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: #85621f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(217, 170, 71, 0.13);
  border: 1px solid rgba(217, 170, 71, 0.28);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 620px;
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
}

h1::first-line {
  color: var(--old-gold);
}

.hero-text {
  max-width: 570px;
  margin: 26px 0 0;
  color: #51473b;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--black), #2e2414 54%, var(--old-gold));
  border: 1px solid rgba(217, 170, 71, 0.42);
  box-shadow: 0 16px 34px rgba(8, 7, 5, 0.22);
}

.primary-button.dark {
  background: var(--black);
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.18);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  color: var(--black);
  background: transparent;
  border: 1px solid rgba(156, 116, 41, 0.44);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 540px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 20, 15, 0.16);
}

.hero-stats strong {
  display: block;
  color: var(--old-gold);
  font-size: 26px;
  line-height: 1;
}

.hero-stats div:nth-child(2) strong {
  color: var(--black);
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: min(64vw, 650px);
  object-fit: cover;
  border: 12px solid white;
  border-radius: 28px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(217, 170, 71, 0.2);
}

.hero-label-overlay {
  position: absolute;
  top: clamp(22px, 4vw, 48px);
  left: clamp(22px, 4vw, 48px);
  width: clamp(180px, 21vw, 240px);
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.hero-label-overlay .label-brand {
  font-size: clamp(22px, 2.6vw, 30px);
}

.hero-label-overlay strong {
  font-size: clamp(18px, 2vw, 24px);
}

.hero-label-overlay em {
  font-size: clamp(22px, 2.6vw, 30px);
}

.hero-label-overlay p {
  font-size: clamp(11px, 1.4vw, 14px);
}

.label-card {
  position: absolute;
  right: clamp(10px, 4vw, 34px);
  bottom: -26px;
  width: min(290px, 56%);
  padding: 26px 22px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.25);
}

.natury-label {
  display: grid;
  gap: 7px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 96%, rgba(217, 170, 71, 0.1), transparent 34%),
    var(--black);
  border: 1px solid rgba(217, 170, 71, 0.52);
  border-radius: var(--radius);
}

.label-brand {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.label-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.label-rule {
  position: relative;
  display: block;
  width: 74px;
  height: 1px;
  margin: 0 auto 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.label-rule::after {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.natury-label strong {
  font-size: 19px;
  line-height: 1.05;
  text-transform: uppercase;
}

.natury-label em {
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.natury-label p {
  margin: 6px 0 2px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.natury-label small {
  padding: 8px;
  color: #f7f1e5;
  border: 1px solid rgba(217, 170, 71, 0.76);
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.natury-label small b {
  display: block;
  color: white;
  font-size: 14px;
}

.label-footer {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217, 170, 71, 0.22);
}

.trust-band div {
  padding: 26px clamp(18px, 5vw, 56px);
  background: var(--black);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--gold);
  font-size: 18px;
}

.trust-band span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 8vw, 110px);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2 {
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.promo-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.process-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(217, 170, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf2, #f6eddf);
}

.process-visual {
  margin: 0;
}

.process-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: 10px solid white;
  border-radius: 22px;
  box-shadow:
    0 28px 70px rgba(8, 7, 5, 0.14),
    0 0 0 1px rgba(156, 116, 41, 0.16);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.process-steps div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  color: white;
  background:
    linear-gradient(135deg, rgba(217, 170, 71, 0.12), transparent 42%),
    var(--black);
  border: 1px solid rgba(217, 170, 71, 0.28);
  border-radius: var(--radius);
}

.process-steps strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.process-steps span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.35;
}

.intro-section {
  background:
    linear-gradient(90deg, rgba(217, 170, 71, 0.1), transparent 38%),
    var(--paper);
}

.promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(217, 170, 71, 0.12), transparent 42%),
    linear-gradient(135deg, #050505, #18140d 52%, #2b210f);
  border: 1px solid rgba(217, 170, 71, 0.34);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.promo-panel + .promo-panel {
  margin-top: 24px;
}

.school-pack-panel {
  background:
    linear-gradient(135deg, rgba(217, 170, 71, 0.1), transparent 46%),
    linear-gradient(135deg, #070707, #17130c 52%, #241b0c);
}

.promo-copy {
  color: white;
}

.promo-badge {
  display: inline-flex;
  padding: 8px 12px;
  color: #1e170c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f4d98b, var(--gold));
  border-radius: 999px;
}

.promo-copy h3 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.promo-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0;
}

.promo-price span {
  color: rgba(255, 255, 255, 0.68);
}

.promo-price strong {
  color: var(--gold);
  font-size: 42px;
}

.evolution-graphic {
  position: relative;
  min-height: 330px;
  margin: 0;
}

.evolution-graphic img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(217, 170, 71, 0.24);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 44px rgba(0, 0, 0, 0.28);
}

.fruit-ribbon {
  position: relative;
  min-height: 300px;
}

.slice {
  position: absolute;
  display: block;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.45),
    inset 0 0 0 17px rgba(255, 255, 255, 0.14),
    0 26px 50px rgba(0, 0, 0, 0.26);
}

.slice::before,
.slice::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 2px;
  height: 84%;
  content: "";
  background: rgba(255, 255, 255, 0.48);
  transform-origin: top;
}

.slice::before {
  transform: rotate(42deg) translateY(-50%);
}

.slice::after {
  transform: rotate(-42deg) translateY(-50%);
}

.orange {
  right: 26%;
  bottom: 20px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, #fff6a6 0 8%, #ff9d29 9% 60%, #e56c21 61% 100%);
}

.lemon {
  right: 5%;
  bottom: 70px;
  width: 168px;
  height: 168px;
  background: radial-gradient(circle, #fff9bf 0 8%, #f7dc55 9% 62%, #b8d15e 63% 100%);
}

.kiwi {
  left: 13%;
  top: 20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #fff6d7 0 8%, #9bcf40 9% 58%, #5e7e24 59% 100%);
}

.apple {
  left: 36%;
  top: 88px;
  width: 145px;
  height: 145px;
  background: radial-gradient(circle, #f8ddb2 0 10%, #f6c66f 11% 62%, #db8b32 63% 100%);
}

.banana {
  left: 4%;
  bottom: 36px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, #fff3b0 0 12%, #f8dc72 13% 66%, #cda535 67% 100%);
}

.products-section {
  background:
    linear-gradient(180deg, #fffaf2, #f6eddf);
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(430px, 100%);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.search-field input:focus {
  border-color: rgba(217, 170, 71, 0.72);
  box-shadow: 0 0 0 4px rgba(217, 170, 71, 0.14);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.filter-chip {
  padding: 0 16px;
  color: var(--black);
  background: white;
  border: 1px solid rgba(156, 116, 41, 0.28);
}

.filter-chip.active {
  color: white;
  background: var(--black);
  border-color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: white;
  border: 1px solid rgba(156, 116, 41, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(8, 7, 5, 0.1);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.86), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--fruit-bg);
}

.product-shot {
  position: relative;
  width: min(250px, 86%);
  aspect-ratio: 1 / 1;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow:
    0 22px 42px rgba(8, 7, 5, 0.16),
    0 0 0 1px rgba(156, 116, 41, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-shot:hover .product-image,
.product-shot:focus-visible .product-image {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 26px 52px rgba(8, 7, 5, 0.2),
    0 0 0 1px rgba(217, 170, 71, 0.34);
}

.product-shot:focus-visible {
  outline: 3px solid rgba(217, 170, 71, 0.6);
  outline-offset: 5px;
}

.catalog-image-label {
  position: absolute;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
}

.product-pouch {
  position: relative;
  display: grid;
  width: 164px;
  height: 226px;
  place-items: center;
  padding: 22px 18px 18px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.44) 60%, rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 9px 9px 18px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 22px 38px rgba(8, 7, 5, 0.16);
  backdrop-filter: blur(2px);
}

.product-pouch::before,
.product-pouch::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.product-pouch::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 16% 84%, rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 18%);
}

.product-pouch::after {
  top: 0;
  right: 12px;
  bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
}

.pouch-zip {
  position: absolute;
  top: 18px;
  right: 12px;
  left: 12px;
  z-index: 3;
  height: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.38);
}

.pouch-fruit-cluster {
  position: absolute;
  inset: 36px 14px 20px;
  z-index: 1;
}

.pouch-fruit-cluster .slice {
  position: absolute;
  inset: auto;
  width: 92px;
  height: 92px;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.52),
    inset 0 0 0 10px rgba(255, 255, 255, 0.16),
    0 12px 22px rgba(31, 20, 5, 0.13);
}

.pouch-fruit-cluster .slice:nth-child(1) {
  top: 6px;
  left: 6px;
}

.pouch-fruit-cluster .slice:nth-child(2) {
  top: 52px;
  right: 0;
  transform: rotate(18deg);
}

.pouch-fruit-cluster .slice:nth-child(3) {
  bottom: 0;
  left: 18px;
  transform: rotate(-12deg);
}

.mini-label {
  position: relative;
  z-index: 4;
  width: 104px;
  min-height: 140px;
  padding: 12px 9px 10px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.mini-label .label-brand {
  font-size: 14px;
}

.mini-label .label-rule {
  width: 48px;
}

.mini-label strong {
  font-size: 11px;
}

.mini-label em {
  font-size: 15px;
}

.mini-label p {
  margin-top: 2px;
  font-size: 7px;
}

.mini-label small {
  padding: 5px 4px;
  font-size: 5.6px;
  border-radius: 5px;
}

.mini-label small b {
  font-size: 8px;
}

.mini-label .label-footer {
  font-size: 5.7px;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
}

.product-info {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.product-info h3 {
  color: var(--black);
  font-size: 20px;
}

.product-info p {
  min-height: 63px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-price strong {
  color: var(--old-gold);
  font-size: 20px;
}

.product-controls {
  display: grid;
  gap: 12px;
}

.size-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.size-select button {
  min-height: 38px;
  padding: 0 10px;
  color: #4d4033;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.size-select button.active {
  color: var(--black);
  background: #fff;
  border-color: rgba(156, 116, 41, 0.48);
}

.quantity-row {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 10px;
}

.quantity-row button {
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.quantity-row span {
  text-align: center;
  font-weight: 900;
}

.add-button {
  min-height: 46px;
  color: white;
  background: linear-gradient(135deg, var(--black), #352812);
  border: 1px solid rgba(217, 170, 71, 0.35);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 170, 71, 0.2), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(91, 111, 52, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(217, 170, 71, 0.1), transparent 38%),
    var(--black);
}

.contact-section::before {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(217, 170, 71, 0.2);
  border-radius: 18px;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: white;
  max-width: 760px;
}

.contact-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: min(270px, 100%);
  padding: 14px 18px;
  color: white;
  border: 1px solid rgba(217, 170, 71, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-cta:hover,
.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 170, 71, 0.62);
}

.contact-cta.whatsapp {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.28), rgba(217, 170, 71, 0.08));
}

.contact-cta.instagram {
  background: linear-gradient(135deg, rgba(217, 170, 71, 0.14), rgba(156, 67, 124, 0.22));
}

.contact-cta strong,
.contact-cta small {
  display: block;
}

.contact-cta small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 170, 71, 0.28);
  border-radius: 50%;
}

.contact-icon.small {
  width: 38px;
  height: 38px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-icon svg path:nth-child(2),
.contact-icon svg rect,
.contact-icon svg circle {
  stroke: currentColor;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  color: white;
  background:
    linear-gradient(135deg, rgba(217, 170, 71, 0.13), transparent 46%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(217, 170, 71, 0.34);
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.28);
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 170, 71, 0.18);
}

.contact-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  padding: 7px 10px;
  background: var(--black);
  border: 1px solid rgba(217, 170, 71, 0.28);
  border-radius: 6px;
}

.contact-card-head strong,
.contact-card strong {
  color: var(--gold);
  font-size: 18px;
}

.contact-card-head small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-link span:last-child {
  font-weight: 800;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: rgba(5, 5, 5, 0);
  transition: background 180ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(5, 5, 5, 0.44);
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.24);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
  pointer-events: none;
  background: rgba(5, 5, 5, 0);
  opacity: 0;
  transition:
    opacity 180ms ease,
    background 180ms ease;
}

.image-modal.open {
  pointer-events: auto;
  background: rgba(5, 5, 5, 0.72);
  opacity: 1;
}

.image-modal-panel {
  width: min(760px, 100%);
  max-height: 92vh;
  overflow: hidden;
  background: #fffaf2;
  border: 1px solid rgba(217, 170, 71, 0.34);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.image-modal.open .image-modal-panel {
  transform: translateY(0) scale(1);
}

.image-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(156, 116, 41, 0.2);
}

.image-modal-head span {
  color: var(--old-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.image-modal-head h2 {
  margin: 4px 0 0;
  color: var(--black);
  font-size: clamp(22px, 3vw, 34px);
}

.image-modal-panel img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 92px);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(217, 170, 71, 0.12), transparent 36%),
    #f7f0e4;
}

.cart-head,
.cart-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head span {
  color: var(--old-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-head h2 {
  margin-top: 5px;
  color: var(--black);
  font-size: 28px;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  font-size: 28px;
}

.cart-items {
  overflow: auto;
  padding: 8px 22px 22px;
}

.empty-cart {
  margin: 36px 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  color: var(--black);
  font-size: 16px;
}

.cart-line p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-line strong {
  color: var(--old-gold);
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.mini-controls button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--cream);
  color: var(--black);
  font-weight: 900;
}

.cart-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.cart-total span {
  color: var(--muted);
}

.cart-total strong {
  color: var(--black);
  font-size: 28px;
}

.full {
  width: 100%;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  padding: 14px 18px;
  color: white;
  background: linear-gradient(135deg, var(--black), #3a2a12);
  border: 1px solid rgba(217, 170, 71, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .promo-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-right: clamp(18px, 5vw, 56px);
    padding-left: clamp(18px, 5vw, 56px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual img {
    height: auto;
    max-height: 680px;
    aspect-ratio: 16 / 10;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .contact-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 14px;
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: min(126px, 38vw);
    padding: 4px 6px;
  }

  .brand small,
  .ghost-button {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
    margin-left: auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    width: calc(100vw - 28px);
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(156, 116, 41, 0.18);
    border-radius: 999px;
    font-size: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    gap: 28px;
    padding: 34px 14px 36px;
  }

  .hero-copy,
  .hero-text,
  .hero-actions,
  .hero-stats,
  .hero-visual {
    width: 100%;
    max-width: 362px;
  }

  h1 {
    width: 100%;
    max-width: 362px;
    overflow-wrap: normal;
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.04;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
    padding: 0 16px;
  }

  .hero-stats,
  .trust-band,
  .process-steps,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 0;
    margin-top: 28px;
  }

  .hero-stats div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 20, 15, 0.1);
  }

  .hero-stats span {
    min-width: 0;
    margin-top: 0;
    text-align: right;
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 58% center;
    border-width: 8px;
    border-radius: 20px;
  }

  .hero-label-overlay {
    top: 14px;
    left: 14px;
    width: min(158px, 44%);
    padding: 11px 9px;
  }

  .hero-label-overlay .label-brand {
    font-size: 19px;
  }

  .hero-label-overlay strong {
    font-size: 14px;
  }

  .hero-label-overlay em {
    font-size: 19px;
  }

  .hero-label-overlay p {
    margin: 3px 0 0;
    font-size: 8px;
  }

  .hero-label-overlay .label-rule {
    width: 52px;
  }

  .hero-label-overlay small,
  .hero-label-overlay .label-footer {
    display: none;
  }

  .section {
    padding: 48px 14px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.05;
  }

  .process-visual img {
    border-width: 6px;
    border-radius: 16px;
  }

  .process-steps div {
    min-height: 92px;
    padding: 16px;
  }

  .promo-panel {
    gap: 24px;
    padding: 20px;
    border-radius: 18px;
  }

  .promo-copy h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .promo-price {
    margin: 18px 0;
  }

  .promo-price strong {
    font-size: 34px;
  }

  .evolution-graphic,
  .evolution-graphic img,
  .fruit-ribbon {
    min-height: 220px;
  }

  .evolution-graphic img {
    object-fit: contain;
    background: #080806;
  }

  .catalog-toolbar {
    gap: 16px;
  }

  .filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .filter-chip {
    width: 100%;
    padding: 0 10px;
  }

  .product-media {
    min-height: 300px;
  }

  .product-shot {
    width: min(260px, 90%);
  }

  .product-info {
    padding: 18px;
  }

  .size-select {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 52px 14px;
  }

  .contact-section::before {
    inset: 10px;
    border-radius: 14px;
  }

  .contact-actions {
    display: grid;
    gap: 12px;
  }

  .contact-cta {
    min-width: 0;
    width: 100%;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-logo {
    width: min(220px, 100%);
  }

  .cart-panel {
    width: 100%;
  }

  .cart-head,
  .cart-footer {
    padding: 18px;
  }

  .cart-items {
    padding: 6px 18px 18px;
  }

  .image-modal {
    padding: 12px;
  }

  .image-modal-panel {
    width: 100%;
    border-radius: 14px;
  }

  .image-modal-head {
    padding: 14px;
  }

  .image-modal-panel img {
    max-height: calc(92vh - 78px);
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    text-align: center;
  }
}
