:root {
  --forest: #285a43;
  --forest-dark: #183b2c;
  --leaf: #5f8d4e;
  --gold: #d9a441;
  --rice: #f7f4ec;
  --paper: #fffdf8;
  --ink: #17251d;
  --body: #4f5b53;
  --muted: #7a857d;
  --line: #e3e2d8;
  --surface: #ffffff;
  --danger: #b42318;
  --shadow: 0 20px 60px rgba(24, 59, 44, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --font-sans: "Be Vietnam Pro", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
}

body.drawer-open,
body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.85);
  outline-offset: 3px;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(227, 226, 216, 0.9);
  backdrop-filter: blur(16px);
}

.topbar {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--forest-dark);
}

.brand-mark__seal {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-weight: 800;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.brand-mark__logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  box-shadow: 0 6px 18px rgba(24, 59, 44, 0.12);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  margin-top: 4px;
}

.brand-mark small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

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

.icon-button,
.cart-button,
.menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--forest-dark);
  display: inline-grid;
  place-items: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.icon-button:hover,
.cart-button:hover,
.menu-button:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 90, 67, 0.35);
  background: var(--rice);
}

.icon-button svg,
.cart-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button {
  position: relative;
  width: auto;
  padding-inline: 12px;
  grid-auto-flow: column;
  gap: 8px;
}

.cart-button span {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.menu-button {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7f4ec);
  color: var(--forest-dark);
  border-color: rgba(40, 90, 67, 0.18);
  box-shadow: 0 10px 24px rgba(40, 90, 67, 0.08);
}

.menu-button::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 10px;
  background: rgba(95, 141, 78, 0.08);
  opacity: 0;
  transition: opacity 180ms ease;
}

.menu-button:hover::before,
.menu-button[aria-expanded="true"]::before {
  opacity: 1;
}

.menu-button[aria-expanded="true"] {
  background: var(--forest-dark);
  color: white;
  border-color: var(--forest-dark);
}

.menu-button__icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button__line {
  transform-origin: 12px 12px;
  transition:
    transform 190ms ease,
    opacity 150ms ease,
    stroke-dasharray 190ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__line--top {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__line--middle {
  opacity: 0;
  transform: translateX(6px);
}

.menu-button[aria-expanded="true"] .menu-button__line--bottom {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: block;
  visibility: hidden;
  pointer-events: none;
  background: rgba(23, 37, 29, 0);
  transition:
    visibility 0s linear 260ms,
    background 220ms ease;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(23, 37, 29, 0.44);
  transition-delay: 0s;
}

.mobile-nav__panel {
  width: min(100%, 390px);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--paper);
  box-shadow: 30px 0 70px rgba(0, 0, 0, 0.22);
  padding: 18px;
  transform: translateX(-102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__links {
  display: grid;
  gap: 8px;
}

.mobile-nav__links a {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  border-radius: var(--radius-md);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 20px;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mobile-nav__links a:hover {
  transform: translateX(2px);
  background: var(--rice);
  color: var(--forest);
}

.mobile-nav__links span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.mobile-nav__contact {
  margin-top: auto;
  border-radius: 18px;
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.mobile-nav__contact span,
.mobile-nav__contact strong {
  display: block;
}

.mobile-nav__contact strong {
  margin: 4px 0 14px;
  color: white;
  font-size: 22px;
}

.section,
.section-band {
  padding-block: 88px;
}

.section-band {
  background: var(--rice);
}

.hero {
  overflow: hidden;
  padding-top: 76px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 78px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 20px;
}

.hero__lead {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 18px;
  color: #3f4d45;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 16px 34px rgba(40, 90, 67, 0.22);
}

.button--ghost {
  border-color: rgba(40, 90, 67, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-dark);
}

.button--sm {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 13px;
}

.button--danger {
  border-color: rgba(180, 35, 24, 0.24);
  background: #fff5f3;
  color: #9f2f24;
}

.button--accent {
  background: var(--gold);
  color: var(--ink);
}

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

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px 0 0;
}

.hero__metrics div {
  border-left: 1px solid rgba(40, 90, 67, 0.25);
  padding-left: 16px;
}

.hero__metrics dt {
  color: var(--forest-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.hero__metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  min-height: 580px;
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--forest-dark);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.hero-card--main {
  inset: 12px 96px 86px 0;
}

.hero-card--side {
  right: 0;
  bottom: 16px;
  width: 240px;
  aspect-ratio: 1;
}

.trace-card {
  position: absolute;
  top: 44px;
  right: 4px;
  width: 260px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 16px;
  background: #fff9e9;
  box-shadow: 0 18px 42px rgba(87, 64, 24, 0.14);
  padding: 18px;
  color: var(--forest-dark);
}

.trace-card__label {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.22);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.trace-card strong,
.trace-card span {
  display: block;
}

.trace-card strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.trace-card span:last-of-type {
  color: #657066;
  font-size: 13px;
}

.trace-card__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(40, 90, 67, 0.13);
  margin-top: 16px;
}

.trace-card__bar span {
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: var(--forest);
}

.trust-strip {
  position: relative;
  margin-top: -34px;
  border-block: 1px solid rgba(227, 226, 216, 0.7);
  background: linear-gradient(180deg, #fffdf8 0%, #f7f4ec 100%);
  padding-block: 28px;
  z-index: 2;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(40, 90, 67, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(40, 90, 67, 0.08);
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.trust-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 28px solid rgba(217, 164, 65, 0.14);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 90, 67, 0.28);
  box-shadow: 0 24px 54px rgba(40, 90, 67, 0.13);
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--forest);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.trust-card:nth-child(2) .trust-card__icon {
  background: var(--leaf);
}

.trust-card:nth-child(3) .trust-card__icon {
  background: #42664a;
}

.trust-card:nth-child(4) .trust-card__icon {
  background: var(--gold);
  color: var(--ink);
}

.trust-card svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card__kicker {
  display: block;
  margin-top: 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-card h2 {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.26;
}

.trust-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #5a665e;
  font-size: 14px;
  line-height: 1.6;
}

.admin-order-phone {
  display: block;
  margin-top: 4px;
  color: #015c20;
  font-size: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.quality__intro p,
.story__content > p {
  margin: 18px 0 0;
  color: #536158;
  font-size: 17px;
}

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

.category-card,
.product-card,
.proof-card,
.news-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.category-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 90, 67, 0.35);
  box-shadow: 0 18px 46px rgba(40, 90, 67, 0.1);
}

.category-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.category-card strong {
  color: var(--ink);
  font-size: 20px;
}

.category-card small {
  color: var(--forest);
  font-weight: 800;
}

.products-section {
  background: linear-gradient(180deg, var(--paper), #f4f7ef);
}

.products-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.product-search {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  padding: 0 14px;
}

.product-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
}

.product-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--forest-dark);
  padding: 8px 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.filter-chip[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 14px 38px rgba(40, 90, 67, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 90, 67, 0.35);
  box-shadow: 0 20px 52px rgba(40, 90, 67, 0.12);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  margin: 10px 10px 0;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #f7f4ec, #ffffff);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.product-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--forest-dark);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(24, 59, 44, 0.12);
}

.product-card__origin {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(24, 59, 44, 0.9);
  color: white;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 18px;
}

.product-card__category {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 17px;
  line-height: 1.35;
  min-height: 46px;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-card__meta span {
  border: 1px solid rgba(40, 90, 67, 0.12);
  border-radius: 999px;
  background: #fbfaf4;
  color: #657066;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.price {
  display: block;
  color: var(--forest);
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.product-card__foot small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.add-button {
  min-width: 46px;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--forest);
  color: white;
  display: grid;
  place-items: center;
  transition:
    transform 150ms ease,
    background 150ms ease;
}

a.add-button {
  text-decoration: none;
}

.add-button:hover {
  transform: scale(1.03);
  background: var(--forest-dark);
}

.add-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empty-state {
  border: 1px dashed rgba(40, 90, 67, 0.35);
  border-radius: var(--radius-md);
  background: white;
  padding: 24px;
  color: var(--forest-dark);
  font-weight: 700;
}

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

.story__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story__media img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.process-list div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px 16px;
  border-top: 1px solid rgba(40, 90, 67, 0.18);
  padding-top: 16px;
}

.process-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.process-list strong {
  color: var(--ink);
}

.process-list p {
  margin: 0;
}

.quality__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  padding: 22px;
}

.proof-card span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.proof-card h3 {
  margin-top: 18px;
}

.proof-card p,
.news-card p,
.site-footer p {
  margin: 10px 0 0;
}

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

.news-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 90, 67, 0.28);
  box-shadow: 0 20px 48px rgba(40, 90, 67, 0.12);
}

.news-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--rice);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(24, 59, 44, 0.46));
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.035);
}

.news-card__media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--forest-dark);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card__body {
  padding: 20px;
}

.news-card time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-card__body > a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin-left: 8px;
}

.news-card__body > a:hover {
  color: var(--forest);
}

.cta-section {
  padding-block: 84px;
  background: var(--paper);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20px, 140px);
  gap: 28px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 38px;
}

.cta-card h2 {
  color: white;
}

.cta-card .eyebrow {
  color: #f0ca74;
}

.lead-form {
  display: flex;
  gap: 10px;
}

.lead-form input {
  min-width: 0;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0 14px;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.74);
  padding-block: 58px 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.brand-mark--footer,
.brand-mark--footer strong,
.brand-mark--footer small {
  color: white;
}

.brand-mark--footer {
  display: flex;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
}

.site-footer a {
  display: flex;
  padding-block: 5px;
}

.site-footer a:hover {
  color: white;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(23, 37, 29, 0.42);
}

.cart-drawer.is-open {
  display: block;
}

.cart-drawer__panel {
  width: min(100%, 430px);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-drawer__head,
.cart-drawer__foot {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-drawer__head h2 {
  font-family: var(--font-sans);
  font-size: 20px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}

.cart-item img {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.cart-item span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.cart-remove {
  min-height: 34px;
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: var(--radius-sm);
  background: #fff5f2;
  color: var(--danger);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.cart-remove:hover {
  background: var(--danger);
  color: white;
}

.cart-empty {
  padding: 24px;
  color: var(--muted);
}

.cart-drawer__foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  display: block;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--ink);
}

.cart-total strong {
  color: var(--forest);
  font-size: 20px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 260;
  transform: translateY(140%);
  border-radius: var(--radius-sm);
  background: var(--forest-dark);
  color: white;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

.flash {
  margin-top: 22px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: var(--radius-sm);
  background: #fff9e9;
  color: var(--forest-dark);
  padding: 12px 16px;
  font-weight: 700;
}

.product-detail__grid,
.cart-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 46px;
  align-items: start;
}

.product-detail__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.product-detail__media img,
.article-hero {
  width: 100%;
  object-fit: contain;
}

.product-detail__media img {
  aspect-ratio: 1;
}

.product-detail__price {
  margin-block: 22px;
  font-size: 28px;
}

.variant-picker {
  margin-block: 24px 18px;
  border: 1px solid rgba(40, 90, 67, 0.16);
  border-radius: var(--radius-md);
  background: #fffdf8;
  padding: 16px;
}

.variant-picker > span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.variant-picker p {
  margin: 0;
  color: var(--muted);
}

.variant-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}

.variant-option {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.variant-option strong,
.variant-option small {
  display: block;
}

.variant-option strong {
  font-size: 15px;
}

.variant-option small {
  color: var(--forest);
  font-weight: 800;
  margin-top: 4px;
}

.variant-option.is-selected,
.variant-option:hover {
  border-color: var(--forest);
  background: #f3f8ef;
  box-shadow: 0 0 0 3px rgba(40, 90, 67, 0.08);
}

.rich-content {
  margin-top: 26px;
  color: #3f4d45;
}

.rich-content p {
  margin-block: 0 14px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.article-gallery img {
  aspect-ratio: 4 / 3;
}

.article-page__inner,
.narrow {
  width: min(100%, 860px);
}

.article-hero {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.checkout-form,
.admin-card,
.cart-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(40, 90, 67, 0.07);
}

section.admin-card {
  margin: auto;
}

.checkout-form {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 14px;
}

.checkout-form h2,
.admin-card h2 {
  font-family: var(--font-sans);
  font-size: 22px;
}

.checkout-form label,
.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf8;
  color: var(--ink);
  padding: 11px 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}

.cart-line img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-line strong,
.cart-line span,
.cart-line em {
  display: block;
}

.cart-line strong {
  color: var(--ink);
}

.cart-line em {
  color: var(--forest);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  margin-top: 3px;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  padding-top: 18px;
  font-size: 20px;
}

.order-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 24px;
  align-items: start;
}

.order-detail__main,
.order-detail__side,
.admin-order-detail__box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 14px 38px rgba(40, 90, 67, 0.07);
  padding: 22px;
}

.order-items {
  margin-top: 22px;
}

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

.order-line strong,
.order-line em,
.order-line span {
  display: block;
}

.order-line strong {
  color: var(--ink);
}

.order-line em {
  margin-top: 3px;
  color: var(--forest);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.order-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.order-line b {
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.order-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  color: var(--ink);
  font-size: 20px;
}

.order-total strong {
  color: var(--forest);
}

.order-info-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 22px;
}

.order-info-list div {
  border-top: 1px solid rgba(40, 90, 67, 0.13);
  padding-top: 12px;
}

.order-info-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-info-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.order-success-actions,
[data-clear-cart] .narrow {
  display: grid;
  gap: 14px;
}

.admin-shell {
  min-height: 100dvh;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-sans);
}

.admin-top {
  border-bottom: 1px solid var(--line);
  background: white;
  padding-block: 14px;
}

.admin-top__inner,
.admin-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-top__inner {
  justify-content: space-between;
}

.admin-nav a {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 11px;
  color: var(--forest-dark);
  font-weight: 800;
}

.admin-main {
  padding-block: 34px;
}

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

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: white;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-actions {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 8px;
}

.admin-order-items {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-shell {
    gap: 16px;
  }

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

  .hero__grid,
  .story__grid,
  .quality__grid,
  .cta-card,
  .product-detail__grid,
  .cart-page__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

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

  .products-head {
    grid-template-columns: 1fr;
  }

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

  .trust-card {
    min-height: 190px;
  }

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

.product-card__body {
  min-height: 178px;
}

.product-card .price {
  font-size: 16px;
}

.lead-form.is-disabled input {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-gallery-slider {
  box-shadow: none;
  background: transparent;
}

.product-gallery-slider__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.product-gallery-slider__image {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-slider__image.is-active {
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  background: rgba(24, 59, 44, 0.86);
  color: white;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}

.gallery-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.gallery-nav--prev {
  left: 12px;
}

.gallery-nav--next {
  right: 12px;
}

.product-gallery-slider__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 76px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: white;
  padding: 3px;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--forest);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.admin-shell {
  --font-sans: "Be Vietnam Pro", Arial, sans-serif;
  --font-display: "Be Vietnam Pro", Arial, sans-serif;
  background: #f4f7f2;
  color: #213027;
}

.admin-serif {
  font-family: "Fraunces", Georgia, serif;
}

.admin-shell h1,
.admin-shell h2,
.admin-shell h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.admin-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.admin-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.admin-hero,
.admin-panel {
  border: 1px solid rgba(40, 90, 67, 0.12);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 18px 50px rgba(24, 59, 44, 0.08);
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px;
}

.admin-hero p,
.admin-list-head p {
  margin: 0 0 4px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-hero h1,
.admin-list-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
}

.admin-panel {
  padding: 18px;
}

.admin-list-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.admin-list-head input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-status-form select,
.admin-table select {
  border: 1px solid #d8dfd6;
  border-radius: var(--radius-sm);
  background: #fffefa;
  color: var(--ink);
  min-height: 42px;
  padding: 10px 12px;
}

.admin-list-head input {
  /* width: min(360px, 100%); */
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #e4e9e1;
  border-radius: var(--radius-sm);
}

.admin-table {
  margin: 0;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table th {
  position: sticky;
  top: 0;
  background: #eef5ea;
  color: #314538;
  font-size: 12px;
  text-transform: uppercase;
}

.admin-table td,
.admin-table th {
  padding: 13px 14px;
}

.admin-table--orders {
  min-width: 980px;
}

.admin-table--orders td {
  vertical-align: top;
}

.admin-table--orders td:nth-child(3) {
  min-width: 260px;
}

.admin-table--orders td:nth-child(7) {
  width: 92px;
}

.admin-table tr:hover td {
  background: #fbfdf8;
}

.admin-product-cell {
  display: flex;
  min-width: 280px;
  gap: 12px;
  align-items: center;
}

.admin-product-cell img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #f5f0e6;
}

.admin-product-cell small,
.admin-table small {
  color: var(--muted);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-row-actions form {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #edf0ec;
  color: #56635b;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
}

.status-pill--ok {
  background: #e7f6ec;
  color: #236b3d;
}

.admin-pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
}

.admin-pager button {
  min-height: 36px;
  border: 1px solid #d8dfd6;
  border-radius: var(--radius-sm);
  background: white;
  color: var(--forest-dark);
  padding: 7px 11px;
  font-weight: 800;
}

.admin-pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
  background: rgba(17, 25, 20, 0.55);
  padding: 34px 18px;
}

.admin-modal.is-open {
  display: flex;
}

.admin-modal__dialog {
  width: min(960px, 100%);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 30px 90px rgba(9, 18, 12, 0.25);
}

.admin-modal__dialog--small {
  width: min(620px, 100%);
}

.admin-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.admin-modal__head h2 {
  margin: 0;
  color: var(--ink);
}

.admin-form--modal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 20px;
}

.admin-form label {
  color: #304138;
  font-weight: 800;
}

.admin-form label small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 6px;
}

.admin-form__wide,
.admin-form__actions {
  grid-column: 1 / -1;
}

.admin-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
}

.admin-check input {
  width: 18px;
  height: 18px;
  min-height: 0;
}

.admin-image-field {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
  gap: 12px;
  align-items: end;
  padding: 12px;
  border: 1px solid #e4e9e1;
  border-radius: var(--radius-sm);
  background: #fbfdf8;
}

.admin-image-field--compact {
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
}

.admin-image-field__controls {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(160px, 0.75fr);
  gap: 10px;
  align-items: end;
}

.admin-image-field__path {
  color: var(--muted);
  font-size: 12px;
}

.admin-path-hint {
  min-height: 32px;
  padding: 6px 8px;
  color: #6f7b72;
  font-size: 12px;
  font-weight: 700;
  background: #f3f6ef;
  border-style: dashed;
}

.admin-path-hint:disabled {
  opacity: 1;
  cursor: default;
}

.admin-image-preview {
  width: 96px;
  margin: 0;
  justify-self: end;
}

.admin-image-field--compact .admin-image-preview {
  width: 82px;
  justify-self: start;
}

.admin-image-preview img,
.admin-gallery-item img,
.admin-upload-preview__item img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #d8dfd6;
  border-radius: var(--radius-sm);
  background: #f5f0e6;
  object-fit: cover;
}

.admin-image-preview figcaption,
.admin-upload-preview__item figcaption {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  word-break: break-word;
}

.admin-gallery-editor {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e4e9e1;
  border-radius: var(--radius-sm);
  background: #fffefa;
}

.admin-gallery-editor__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.admin-gallery-editor__head small {
  max-width: 520px;
  text-align: right;
}

.admin-gallery-list,
.admin-upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.admin-gallery-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(40, 90, 67, 0.12);
  border-radius: var(--radius-sm);
  background: white;
}

.admin-gallery-item img {
  grid-row: span 2;
}

.admin-gallery-item input[readonly] {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 12px;
}

.admin-gallery-item .admin-path-hint {
  min-height: 28px;
  padding: 5px 7px;
  font-size: 11px;
}

.admin-gallery-item span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9f2f24;
  font-size: 12px;
  font-weight: 900;
}

.admin-gallery-item span input {
  width: 16px;
  height: 16px;
  min-height: 0;
}

.admin-upload-preview {
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
}

.admin-upload-preview__item {
  margin: 0;
}

.admin-order-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 16px;
}

.admin-order-detail__box h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.admin-status-form {
  display: grid;
  gap: 10px;
}

.admin-status-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .admin-top__inner,
  .admin-list-head,
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form--modal {
    grid-template-columns: 1fr;
  }

  .admin-image-field--compact,
  .admin-image-field__controls {
    grid-template-columns: 1fr;
  }

  .admin-image-field--compact .admin-image-preview {
    justify-self: start;
  }

  .gallery-thumb {
    flex-basis: 64px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .topbar {
    display: none;
  }

  .mobile-nav__panel {
    width: 100%;
    padding: 18px 16px 24px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .section,
  .section-band,
  .cta-section {
    padding-block: 58px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 40px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__metrics {
    /* grid-template-columns: 1fr; */
    gap: 0px;
  }

  .hero__visual {
    min-height: 0;
    padding-bottom: 64px;
  }

  .hero-card--main {
    position: relative;
    inset: auto;
    width: calc(100% - 42px);
  }

  .hero-card--side {
    right: 0;
    bottom: 0;
    width: min(170px, 48%);
  }

  .trace-card {
    top: auto;
    right: 0;
    bottom: 18px;
    width: min(260px, 86%);
  }

  .trust-strip__grid,
  .product-grid,
  .proof-grid,
  .news-grid,
  .footer-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

  .checkout-form {
    position: static;
  }

  .cart-line {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .cart-line img {
    width: 72px;
    height: 72px;
  }

  .cart-line .qty-controls,
  .cart-line b {
    grid-column: 2 / 4;
  }

  .cart-remove {
    align-self: start;
    padding: 6px 8px;
  }

  .order-detail__grid,
  .admin-order-detail__grid {
    grid-template-columns: 1fr;
  }

  .order-detail__main,
  .order-detail__side,
  .admin-order-detail__box {
    padding: 14px;
  }

  .order-line {
    gap: 10px;
    padding-block: 11px;
    font-size: 13px;
  }

  .order-total {
    font-size: 16px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-card {
    min-height: auto;
    padding: 18px;
  }

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

  .product-card__body {
    padding: 12px;
    gap: 9px;
  }

  .product-card h3 {
    font-size: 15px;
    min-height: auto;
  }

  .product-card__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .add-button {
    width: 100%;
  }

  .lead-form {
    flex-direction: column;
  }

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

  .cta-card {
    padding: 24px;
  }

  .toast {
    left: 16px;
    right: 16px;
  }

  .hero-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-card--side img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 420px) {
  .brand-mark strong {
    font-size: 15px;
  }

  .brand-mark__seal {
    width: 40px;
    height: 40px;
  }

  .brand-mark__logo {
    width: 40px;
    height: 40px;
  }

  .icon-button[data-search-focus] {
    display: none;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.contact-page {
  background:
    linear-gradient(135deg, rgba(40, 90, 67, 0.08), transparent 38%),
    linear-gradient(180deg, var(--paper), #f3f7ef);
}

.about-page {
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4ec, var(--paper));
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.about-hero__content > p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #435148;
  font-size: 17px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.about-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.about-hero__media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.92);
  color: var(--forest-dark);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
}

.about-values__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}

.about-copy {
  color: #435148;
  font-size: 17px;
}

.about-copy p {
  margin: 0 0 14px;
}

.about-commitments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-card {
  border: 1px solid rgba(40, 90, 67, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(40, 90, 67, 0.07);
  padding: 22px;
}

.about-card span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.about-card h3 {
  margin-top: 14px;
}

.about-card p {
  margin: 10px 0 0;
  color: #59665d;
  font-size: 14px;
}

.about-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.about-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #101810;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.about-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-awards {
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: var(--radius-md);
  background: #fff9e9;
  padding: clamp(22px, 4vw, 34px);
}

.about-awards h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.about-awards ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-awards li {
  border-top: 1px solid rgba(87, 64, 24, 0.14);
  color: #4f4f39;
  padding-top: 12px;
  font-weight: 700;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 22px;
  align-items: stretch;
}

.contact-page__intro,
.contact-card,
.contact-note {
  border: 1px solid rgba(40, 90, 67, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(40, 90, 67, 0.08);
}

.contact-page__intro {
  padding: clamp(24px, 5vw, 48px);
}

.contact-page__intro h1 {
  font-size: clamp(38px, 5.2vw, 68px);
}

.contact-page__intro > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #435148;
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-card {
  padding: clamp(22px, 4vw, 34px);
}

.contact-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef6e9;
  color: var(--forest-dark);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list div {
  border-top: 1px solid rgba(40, 90, 67, 0.14);
  padding-top: 14px;
}

.contact-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.contact-list a {
  color: var(--forest);
}

.contact-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}

.contact-note strong {
  color: var(--ink);
}

.contact-note span {
  color: #536158;
}

.product-card__desc,
.news-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__desc {
  margin: 0;
  color: #5c685f;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .about-hero,
  .about-values__grid,
  .about-proof__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-commitments {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-hero__media img {
    aspect-ratio: 4 / 3;
  }

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

  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-actions .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 10px;
    font-size: 13px;
    text-align: center;
  }

  .contact-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero__actions .button {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 12px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .story__media {
    display: none;
  }

  .filter-row {
    gap: 7px;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid rgba(40, 90, 67, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
  }

  .filter-chip {
    min-height: 34px;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .product-card {
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(40, 90, 67, 0.07);
  }

  .product-card__media {
    margin: 6px 6px 0;
    border-radius: 8px;
  }

  .product-card__badge,
  .product-card__origin {
    display: none;
  }

  .product-card__category {
    font-size: 10px;
  }

  .product-card__desc {
    font-size: 12px;
    line-height: 1.42;
  }

  .product-card__foot {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
  }

  .product-card .price {
    font-size: 13px;
    line-height: 1.35;
  }

  .product-card__foot small {
    font-size: 10px;
  }

  .add-button {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .product-detail {
    padding-block: 34px;
  }

  .product-detail__grid {
    gap: 20px;
  }

  .product-gallery-slider__viewport {
    width: min(100%, 360px);
    margin-inline: auto;
    border-radius: 12px;
  }

  .product-gallery-slider__image {
    aspect-ratio: 4 / 3;
  }

  .product-gallery-slider__thumbs {
    width: min(100%, 360px);
    gap: 7px;
    margin-inline: auto;
  }

  .gallery-thumb {
    flex-basis: 62px;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .product-detail__content h1 {
    font-size: 30px;
  }

  .product-detail__price {
    margin-block: 12px;
    font-size: 22px;
  }

  .variant-picker {
    margin-block: 16px;
    padding: 12px;
  }

  .variant-picker__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .variant-option {
    padding: 9px;
  }

  .variant-option strong {
    font-size: 13px;
  }

  .variant-option small {
    font-size: 12px;
  }

  .product-detail__content > .button {
    width: 100%;
  }

  .rich-content {
    margin-top: 18px;
    font-size: 14px;
  }

  .admin-top {
    padding-block: 8px;
  }

  .admin-top__inner {
    gap: 8px;
  }

  .admin-shell .brand-mark {
    min-height: 38px;
    gap: 8px;
  }

  .admin-shell .brand-mark__seal {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .admin-shell .brand-mark__logo {
    width: 34px;
    height: 34px;
  }

  .admin-shell .brand-mark strong {
    font-size: 14px;
  }

  .admin-shell .brand-mark small {
    font-size: 10px;
  }

  .admin-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .admin-nav a {
    min-height: 34px;
    justify-content: center;
    padding: 6px 7px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
  }

  .admin-main {
    padding-block: 16px;
  }

  .admin-panel,
  .admin-card {
    padding: 12px;
  }

  .admin-list-head {
    gap: 10px;
    margin-bottom: 10px;
  }

  .admin-hero h1,
  .admin-list-head h1 {
    font-size: 24px;
  }

  .admin-actions {
    width: 100%;
  }

  .admin-actions input,
  .admin-list-head input,
  .admin-actions .button {
    width: 100%;
  }

  .admin-list-head input,
  .admin-form input,
  .admin-form textarea,
  .admin-form select,
  .admin-status-form select,
  .admin-table select {
    min-height: 36px;
    padding: 8px 9px;
    font-size: 13px;
  }

  .admin-table-wrap {
    margin-inline: -8px;
    border-radius: 8px;
  }

  .admin-table {
    min-width: 680px;
    font-size: 12px;
  }

  .admin-table th {
    font-size: 10px;
  }

  .admin-table td,
  .admin-table th {
    padding: 8px;
  }

  .admin-product-cell {
    min-width: 205px;
    gap: 8px;
  }

  .admin-product-cell img {
    width: 40px;
    height: 40px;
  }

  .status-pill {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .admin-pager {
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
  }

  .admin-pager button {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .admin-modal {
    padding: 12px;
  }

  .admin-modal__head {
    padding: 12px;
  }

  .admin-form--modal {
    padding: 12px;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .hero__actions {
    gap: 6px;
  }

  .hero__actions .button {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 11px;
  }

  .about-hero,
  .about-values__grid,
  .about-proof__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-page,
  .about-proof {
    padding-block: 38px;
  }

  .about-hero__content h1 {
    font-size: 32px;
  }

  .about-hero__content > p,
  .about-copy {
    font-size: 15px;
  }

  .about-hero__media img {
    aspect-ratio: 4 / 3;
  }

  .about-commitments {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .about-card {
    padding: 16px;
  }

  .about-card span {
    font-size: 26px;
  }

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

  .product-card__body {
    padding: 9px;
    gap: 6px;
    min-height: 158px;
  }

  .product-card h3 {
    font-size: 13px;
    line-height: 1.3;
  }

  .product-card__desc {
    font-size: 11px;
  }

  .add-button {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}
