:root {
  --cream: #f3ebdd;
  --paper: #fcfaf5;
  --ink: #23271f;
  --forest: #324436;
  --forest-deep: #243329;
  --olive: #697257;
  --gold: #b38946;
  --gold-soft: #d8c49c;
  --muted: #756e63;
  --line: #d8cebd;
  --pale-green: #e8eadf;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(35, 39, 31, 0.1);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--forest);
  color: var(--white);
  transform: translateY(-150%);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(243, 235, 221, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(179, 137, 70, 0.3);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-kicker {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-kicker em {
  font-size: 0.8em;
  font-weight: 400;
  text-transform: lowercase;
}

.brand strong {
  margin-top: 4px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 3vw, 1.78rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-nav a,
.share-button {
  border: 0;
  padding: 8px 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.desktop-nav a:hover,
.share-button:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(660px, calc(100vh - 72px));
  padding: clamp(70px, 11vw, 150px) clamp(20px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 9vw, 140px);
  background:
    radial-gradient(circle at 86% 12%, rgba(179, 137, 70, 0.2), transparent 28%),
    radial-gradient(circle at 12% 96%, rgba(105, 114, 87, 0.16), transparent 30%),
    var(--cream);
}

.hero-copy {
  min-width: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(179, 137, 70, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  right: -180px;
  top: -160px;
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -160px;
  bottom: -100px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.talk-section h2,
.contact-section h2,
.order-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 {
  max-width: 900px;
  color: var(--forest-deep);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  letter-spacing: -0.018em;
}

.hero h1.hero-offer {
  font-family: var(--sans);
  font-size: 1.1875rem;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.kolka-meaning {
  margin: 0 0 24px;
  max-width: 640px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
}

.hero-intro {
  max-width: 750px;
  margin-top: 20px;
  color: #43463e;
  font-size: 1rem;
}

.hero-intro p {
  margin: 0 0 10px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-whatsapp {
  display: inline-block;
  margin-top: 18px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.hero-whatsapp:hover {
  color: var(--gold);
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(50, 68, 54, 0.17);
}

.button-primary:hover {
  background: var(--forest-deep);
}

.button-secondary {
  border-color: var(--gold);
  color: var(--forest);
  background: rgba(252, 250, 245, 0.4);
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.button-whatsapp {
  width: 100%;
  background: #1f7a4f;
  color: white;
}

.hero-mark {
  width: min(100%, 320px);
  aspect-ratio: 1;
  justify-self: center;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(179, 137, 70, 0.6);
  border-radius: 50%;
  color: var(--forest);
  text-align: center;
  background: rgba(252, 250, 245, 0.45);
  box-shadow: inset 0 0 0 10px rgba(179, 137, 70, 0.06);
}

.hero-mark strong {
  margin: 8px 0 -4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 1;
}

.hero-mark span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mark .hero-mark-line {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-mark i {
  width: 54px;
  height: 1px;
  margin: 22px 0;
  background: var(--gold);
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 6vw, 90px);
}

.section-heading {
  max-width: 1320px;
  margin: 0 auto 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2,
.talk-section h2,
.contact-section h2 {
  color: var(--forest-deep);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.price-menu {
  background: var(--forest);
  color: var(--paper);
}

.price-menu .eyebrow {
  color: var(--gold-soft);
}

.price-menu .section-heading h2 {
  color: var(--paper);
}

.price-menu .section-heading > p {
  color: rgba(252, 250, 245, 0.72);
}

.price-groups {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-group {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(216, 196, 156, 0.34);
  border-radius: var(--radius);
  background: rgba(252, 250, 245, 0.055);
}

.price-group h3 {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(216, 196, 156, 0.2);
}

.price-row:first-child {
  border-top: 0;
}

.price-product {
  min-width: 0;
  padding: 13px 0;
  border: 0;
  background: none;
  color: var(--paper);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.price-product:hover,
.price-product:focus-visible {
  color: var(--gold-soft);
}

.price-meta {
  max-width: 190px;
  color: rgba(252, 250, 245, 0.57);
  font-size: 0.68rem;
  text-align: right;
}

.price-value {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.catalog-tools {
  position: sticky;
  z-index: 20;
  top: 78px;
  max-width: 1320px;
  margin: 0 auto 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: 12px;
  border: 1px solid rgba(216, 206, 189, 0.8);
  border-radius: 20px;
  background: rgba(243, 235, 221, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(35, 39, 31, 0.05);
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
}

.search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(179, 137, 70, 0.12);
}

.filter-chips {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.category-dropdown {
  position: absolute;
  inset: calc(100% + 8px) 0 auto;
  max-height: min(390px, 50dvh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.category-dropdown[hidden],
.order-form[hidden],
#shipping-fields[hidden],
.order-totals[hidden] { display: none; }

.category-dropdown-title {
  margin: 2px 10px 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--forest);
}

.category-dropdown button {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--forest);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.category-dropdown button:hover,
.category-dropdown button:focus-visible { background: var(--pale-green); }
.category-dropdown .category-view-all { font-weight: 700; border-bottom: 1px solid var(--line); }

.results-note {
  max-width: 1320px;
  min-height: 24px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 0.77rem;
}

.product-section {
  max-width: 1320px;
  margin: 0 auto 72px;
}

.product-section[hidden] {
  display: none;
}

.product-section-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-section-heading h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

.product-section-heading span {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 6px 20px rgba(35, 39, 31, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 10px;
  object-fit: contain;
  background: #eee5d6;
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(179, 137, 70, 0.2), transparent 35%),
    var(--pale-green);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 3rem;
}

.product-card-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card h4 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.52rem;
  line-height: 1.12;
}

.product-card-meta {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
}

.product-card-ingredients {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

.product-card-summary {
  margin: 14px 0 0;
  color: #44483f;
  font-size: 0.84rem;
}

.product-card-actions {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.card-button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.card-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.card-button.add-button {
  min-width: 44px;
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  font-size: 1.05rem;
}

.price-only-note {
  margin-top: 15px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--pale-green);
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 700;
}

.variant-field {
  margin-top: 14px;
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.variant-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(50, 68, 54, 0.3);
  border-radius: 10px;
  padding: 9px 36px 9px 12px;
  background: var(--paper);
  color: var(--ink);
  font: 700 0.88rem var(--sans);
  text-transform: none;
}

.dialog-variant {
  max-width: 280px;
  margin: 24px 0 0;
}

.talk-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: center;
  background: var(--paper);
}

.talk-section > div,
.talk-section dl {
  max-width: 720px;
}

.talk-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.talk-section dl {
  margin: 0;
  border-top: 1px solid var(--gold);
}

.talk-section dl div {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.talk-section dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.talk-section dd {
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.contact-section {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(179, 137, 70, 0.19), transparent 38%),
    var(--cream);
}

.contact-section p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px auto;
  color: var(--muted);
}

footer {
  padding: 34px clamp(20px, 6vw, 90px) 100px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 0.75rem;
}

footer div {
  display: flex;
  flex-direction: column;
}

footer strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1rem;
}

footer p {
  margin: 0;
  text-align: right;
}

.floating-order {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  min-height: 54px;
  padding: 8px 9px 8px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(35, 39, 31, 0.25);
  cursor: pointer;
}

.floating-order strong {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  font-size: 0.82rem;
}

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(25, 30, 25, 0.66);
  backdrop-filter: blur(5px);
}

.product-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: min(900px, calc(100dvh - 28px));
  overflow: auto;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(35, 39, 31, 0.75);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-close.static {
  position: static;
  flex: 0 0 auto;
}

.dialog-product-image {
  width: 100%;
  max-height: 520px;
  padding: 16px;
  object-fit: contain;
  background: #eee5d6;
}

.dialog-product-copy {
  padding: clamp(24px, 6vw, 54px);
}

.dialog-category {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-product-copy h2 {
  margin: 8px 0 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 1;
}

.dialog-meta {
  margin: 14px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.dialog-ingredients {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.dialog-signatures {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: var(--pale-green);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.dialog-section {
  margin-top: 30px;
}

.medical-disclaimer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.65;
}
.medical-disclaimer p { margin: 0; }
.medical-disclaimer a { text-decoration: underline; text-underline-offset: 3px; }

.dialog-section h3 {
  margin: 0 0 8px;
  color: var(--olive);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dialog-section p {
  margin: 0;
  color: #41453d;
}

.dialog-actions {
  margin-top: 34px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.dialog-actions .button {
  flex: 1;
}

.dialog-actions .button.is-added,
.dialog-actions .button.is-added:disabled {
  background: var(--olive);
  color: white;
  cursor: default;
  opacity: 1;
}

.dialog-add-status {
  min-height: 25px;
  margin: 12px 0 0;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dialog-add-status.visible {
  opacity: 1;
  transform: translateY(0);
}

.order-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: min(820px, calc(100dvh - 28px));
  overflow: auto;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.order-header {
  position: sticky;
  z-index: 2;
  top: 0;
  padding: 24px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  background: var(--forest);
  color: white;
}

.order-header h2 {
  color: white;
  font-size: 2.5rem;
}

.order-items {
  padding: 10px 24px;
}

.order-empty {
  padding: 46px 10px;
  color: var(--muted);
  text-align: center;
}

.order-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.order-item strong {
  display: block;
  color: var(--forest);
}

.order-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 9px;
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

.quantity-control span {
  min-width: 20px;
  text-align: center;
  font-weight: 800;
}

.order-footer {
  padding: 20px 24px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.order-form { padding: 8px 24px 24px; }
.order-form fieldset { min-width: 0; padding: 0; margin: 0; border: 0; }
.order-form legend { padding: 12px 0; color: var(--forest); font-weight: 700; font-size: 1.1rem; }
.order-form label { display: block; margin-bottom: 16px; font-size: 0.875rem; font-weight: 700; }
.order-form input,
.order-form select,
.order-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}
.order-form textarea { resize: vertical; }
.order-form input:focus-visible,
.order-form select:focus-visible,
.order-form textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.order-form input[readonly] { background: var(--pale-green); }
.order-form .optional { color: var(--muted); font-weight: 400; }
.address-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; }
.order-totals { margin: 0 0 20px; font-size: 0.95rem; }
.order-totals > div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.order-totals .order-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; font-size: 1.15rem; font-weight: 700; }
.order-item .order-line-total { color: var(--forest); font-weight: 700; }
#order-whatsapp { width: 100%; }

.order-footer p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 86px;
  max-width: calc(100% - 32px);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--forest-deep);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 900px) {
  .desktop-nav a {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-mark {
    display: none;
  }

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

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .talk-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .share-button {
    padding: 8px 4px;
    font-size: 0.76rem;
  }

  .hero {
    padding: 64px 18px 74px;
  }

  .hero h1.hero-offer {
    font-size: 1.1875rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

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

  .section {
    padding: 62px 16px;
  }

  .section-heading {
    width: 100%;
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
    overflow-wrap: break-word;
  }

  .section-heading > p {
    text-align: left;
  }

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

  .price-group {
    padding: 22px 18px;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .price-meta {
    display: none;
  }

  .catalog-tools {
    top: 68px;
    margin-inline: -4px;
    border-radius: 16px;
  }

  .product-section {
    margin-bottom: 54px;
  }

  .product-card-actions {
    grid-template-columns: 1fr 48px;
  }

  .product-dialog {
    width: 100%;
    max-height: 94dvh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .dialog-product-image {
    max-height: 390px;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .order-dialog {
    width: 100%;
    max-height: 94dvh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  footer {
    align-items: start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
