@font-face {
  font-family: "Ubuntu Local";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/ubuntu-cyrillic-400.woff2") format("woff2");
}

@font-face {
  font-family: "Ubuntu Local";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/assets/fonts/ubuntu-cyrillic-500.woff2") format("woff2");
}

@font-face {
  font-family: "Ubuntu Local";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/assets/fonts/ubuntu-cyrillic-700.woff2") format("woff2");
}

@font-face {
  font-family: "Ubuntu Local";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/ubuntu-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Ubuntu Local";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/assets/fonts/ubuntu-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Ubuntu Local";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/assets/fonts/ubuntu-latin-700.woff2") format("woff2");
}

:root {
  --green: #176b3a;
  --green-dark: #123f2a;
  --yellow: #f6c94c;
  --coral: #f06449;
  --cream: #fff8e8;
  --surface: #ffffff;
  --text-muted: #667466;
  --border: #e7e2d5;
  --shadow: 0 18px 55px rgba(28, 57, 35, 0.09);
}

[hidden] {
  display: none !important;
}

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

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

.admin-tabs a {
  padding: 14px 20px;
  color: var(--green-dark);
  font-weight: 800;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.admin-tabs a.active {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.admin-tabs a span {
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 999px;
}

.admin-message-error {
  color: #8d3327;
  background: #fde3de;
  border-color: #f0b9ae;
}

.setup-page {
  min-height: 100vh;
  padding-block: 50px;
  display: grid;
  place-items: center;
}

.setup-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 58px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.setup-card-small {
  width: min(560px, 100%);
}

.setup-card > .brand {
  margin-bottom: 42px;
}

.setup-card h1,
.admin-edit-page h1 {
  margin: 12px 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.setup-card > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}

.setup-form,
.admin-product-form {
  display: grid;
  gap: 18px;
}

.setup-form {
  margin-top: 30px;
}

.setup-form label,
.admin-product-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.setup-form input,
.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--green-dark);
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.setup-form small,
.admin-product-form small {
  color: var(--text-muted);
  font-weight: 500;
}

.admin-product-form textarea {
  min-height: 105px;
  resize: vertical;
}

.admin-edit-page {
  padding-top: 44px;
}

.admin-edit-page .admin-editor-head {
  margin-bottom: 28px;
}

.admin-edit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: start;
}

.admin-edit-card {
  padding: 26px;
  display: grid;
  gap: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.admin-edit-card .admin-image-preview {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
}

.admin-check {
  display: flex !important;
  flex-direction: row;
  align-items: center;
}

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

.product-grid-catalog .product-card[hidden] {
  display: none !important;
}

.form-error {
  color: #9a2f22 !important;
  font-weight: 750;
}

@media (max-width: 900px) {
  .admin-header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .admin-header-actions .button {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .setup-page {
    width: min(100% - 24px, 1396px);
    padding-block: 12px;
  }

  .setup-card,
  .admin-edit-card {
    padding: 22px;
    border-radius: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green-dark);
  font-family: "Ubuntu Local", Ubuntu, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

.admin-main {
  padding-block: 56px 90px;
}

.admin-header,
.admin-toolbar,
.admin-editor-head,
.admin-order-card header,
.admin-order-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-header h1 {
  margin: 8px 0;
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.055em;
}

.admin-header p,
.admin-hint {
  color: var(--text-muted);
}

.admin-stats {
  margin: 34px 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-stats article {
  padding: 24px;
  display: grid;
  gap: 5px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.admin-stats span,
.admin-stats small {
  color: var(--text-muted);
}

.admin-stats strong {
  font-size: 34px;
}

.admin-message {
  margin-bottom: 18px;
  padding: 14px 18px;
  color: var(--green-dark);
  font-weight: 700;
  background: #e3f4e8;
  border: 1px solid #b8dec3;
  border-radius: 14px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-tabs button {
  padding: 14px 20px;
  color: var(--green-dark);
  font-weight: 800;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.admin-tabs button.active {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.admin-tabs span {
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 999px;
}

.admin-workspace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.admin-list-panel,
.admin-editor,
.admin-order-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.admin-list-panel {
  padding: 20px;
}

.admin-toolbar input {
  width: min(500px, 100%);
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.admin-import {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.admin-import input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-hint {
  margin: 12px 0 16px;
  font-size: 13px;
}

.admin-product-list {
  display: grid;
  gap: 8px;
}

.admin-product-row {
  width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: 58px minmax(220px, 1fr) 120px 160px 120px;
  align-items: center;
  gap: 14px;
  color: var(--green-dark);
  text-align: left;
  background: #fffdf7;
  border: 1px solid #eee8d9;
  border-radius: 14px;
}

.admin-product-row:hover {
  border-color: #a8cdb3;
}

.admin-product-row img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
}

.admin-product-row > span {
  display: grid;
  gap: 4px;
}

.admin-product-row small {
  color: var(--text-muted);
}

.stock-ok {
  color: var(--green);
}

.stock-zero {
  color: #b43b2a;
}

.admin-editor {
  position: fixed;
  z-index: 90;
  top: 96px;
  right: 20px;
  bottom: 20px;
  width: min(590px, calc(100% - 40px));
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
  box-shadow: 0 25px 80px rgba(18, 63, 42, 0.24);
}

.admin-editor-head h2 {
  margin: 5px 0 0;
}

.admin-editor-head > button {
  width: 42px;
  height: 42px;
  font-size: 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.admin-editor label,
.admin-order-actions label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.admin-editor input,
.admin-editor select,
.admin-editor textarea,
.admin-order-actions input,
.admin-order-actions select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.admin-editor textarea {
  min-height: 86px;
  resize: vertical;
}

.admin-check {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: center;
}

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

.admin-image-preview {
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.admin-orders {
  display: grid;
  gap: 16px;
}

.admin-order-card {
  padding: 24px;
}

.admin-order-card h2 {
  margin: 5px 0 0;
}

.order-status {
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  background: #eef0e8;
  border-radius: 999px;
}

.order-status-reserved,
.order-status-processing {
  background: #fff0bb;
}

.order-status-completed {
  color: var(--green);
  background: #dff3e5;
}

.order-status-cancelled,
.order-status-expired {
  color: #8d3327;
  background: #fde3de;
}

.admin-order-meta {
  margin: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--text-muted);
}

.admin-order-items {
  padding: 14px 0;
  border-block: 1px solid var(--border);
}

.admin-order-items div,
.admin-order-total {
  padding: 7px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.admin-order-total {
  font-size: 20px;
}

.reserve-deadline {
  color: #8b5b06;
  font-weight: 800;
}

.admin-order-actions {
  margin: 16px 0 10px;
  justify-content: flex-start;
}

.admin-order-actions label {
  width: min(220px, 100%);
}

.admin-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 20px;
  align-items: start;
}

.admin-profile-column {
  display: grid;
  gap: 16px;
}

.admin-section-heading {
  padding: 8px 4px;
}

.admin-section-heading h2,
.admin-password-card h2 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.admin-section-heading p,
.admin-password-card > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.admin-profile-card,
.admin-password-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.admin-profile-card > header,
.admin-reset-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-profile-card h3 {
  margin: 5px 0 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.admin-you-badge {
  padding: 7px 11px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  background: #e3f4e8;
  border-radius: 999px;
}

.admin-profile-form {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.admin-manager-create {
  border-color: rgba(64, 99, 65, .34);
}

.admin-delete-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(120, 50, 42, .18);
}

.admin-delete-action div {
  display: grid;
  gap: 4px;
}

.admin-delete-action small {
  color: var(--muted);
}

.button-danger {
  color: #fff;
  background: #8f382f;
  border-color: #8f382f;
}

.button-danger:hover {
  background: #742b24;
  border-color: #742b24;
}

@media (max-width: 640px) {
  .admin-delete-action {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-delete-action .button {
    width: 100%;
  }
}

.admin-profile-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.admin-profile-form input {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--green-dark);
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.admin-profile-form small,
.admin-reset-action small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.admin-reset-action {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.admin-password-card {
  position: sticky;
  top: 24px;
}

@media (max-width: 900px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .admin-toolbar,
  .admin-order-card header,
  .admin-order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-product-row {
    grid-template-columns: 52px 1fr auto;
  }

  .admin-product-row > span:nth-child(3),
  .admin-product-row > span:nth-child(5) {
    display: none;
  }

  .admin-product-row > span:nth-child(4) {
    text-align: right;
  }

  .admin-editor {
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .admin-profile-layout {
    grid-template-columns: 1fr;
  }

  .admin-password-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .admin-profile-card,
  .admin-password-card {
    padding: 20px;
    border-radius: 20px;
  }

  .admin-profile-card > header,
  .admin-reset-action {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-reset-action .button {
    width: 100%;
  }
}

.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;
}

.page-shell {
  width: min(100% - 44px, 1396px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 88px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.4fr minmax(310px, 0.8fr);
  align-items: center;
  background: rgba(255, 248, 232, 0.92);
  border-bottom: 1px solid rgba(231, 226, 213, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-size: 24px;
  font-weight: 820;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 51px;
  flex: 0 0 auto;
}

.brand-sun {
  position: absolute;
  top: 1px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow:
    0 -8px 0 -7px var(--yellow),
    0 26px 0 -7px var(--yellow),
    -26px 0 0 -7px var(--yellow),
    26px 0 0 -7px var(--yellow),
    -18px -18px 0 -7px var(--yellow),
    18px -18px 0 -7px var(--yellow);
}

.brand-leaf {
  position: absolute;
  bottom: 1px;
  width: 28px;
  height: 35px;
  background: var(--green);
}

.brand-leaf-left {
  left: 3px;
  border-radius: 3px 25px 4px 25px;
  transform: rotate(-25deg);
}

.brand-leaf-right {
  right: 3px;
  border-radius: 25px 3px 25px 4px;
  transform: rotate(25deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 46px);
}

.main-nav a {
  position: relative;
  padding: 14px 0;
  color: #1c4b34;
  font-size: 16px;
  font-weight: 700;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.search-trigger {
  width: min(320px, 22vw);
  min-height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #788178;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dcd8cd;
  border-radius: 999px;
  cursor: pointer;
}

.search-trigger > span:first-child {
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
  transform: rotate(-18deg);
}

.cart-link {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
}

.cart-icon-svg {
  display: block;
  flex: 0 0 auto;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 800;
  background: var(--green);
  border-radius: 999px;
  animation: badge-pop 220ms ease-out;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 632px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: #fff2c8;
  border-radius: 44px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #fff9e9 0%, rgba(255, 248, 232, 0.96) 35%, rgba(255, 248, 232, 0) 63%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 74px 24px 74px clamp(48px, 6.4vw, 92px);
  animation: rise-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-kicker,
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 600px;
  margin: 22px 0 20px;
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 490px;
  margin: 0;
  color: #626b5f;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.45;
}

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

.button {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 750;
  border: 0;
  border-radius: 19px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--green);
}

.button-primary:hover {
  background: #125b31;
}

.button-video {
  padding-inline: 0;
  color: var(--green);
  background: transparent;
}

.button-video span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding-left: 2px;
  border: 2px solid var(--green);
  border-radius: 50%;
  transition: background 180ms ease;
}

.button-video:hover span {
  background: rgba(23, 107, 58, 0.11);
}

.button-light {
  color: var(--green-dark);
  background: white;
}

.button-dark {
  color: white;
  background: var(--green-dark);
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 33%;
  background:
    linear-gradient(90deg, #fff5d5 0%, transparent 25%),
    url("/images/hero-seeds.png") center / cover no-repeat;
  animation: hero-scale 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-person {
  position: absolute;
  right: clamp(32px, 4vw, 72px);
  bottom: 34px;
  width: min(30vw, 410px);
  margin: 0;
  overflow: hidden;
  background: white;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 44px;
  box-shadow: 0 24px 60px rgba(22, 65, 38, 0.24);
  transform: rotate(1.5deg);
}

.hero-person img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.hero-person figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  color: white;
  background: rgba(15, 65, 40, 0.9);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.hero-person figcaption strong {
  font-size: 16px;
}

.hero-person figcaption span {
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.82;
}

.hero-shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-shape-yellow {
  top: 0;
  left: 0;
  width: 290px;
  height: 86px;
  background: var(--yellow);
  border-radius: 0 0 80% 0;
}

.hero-shape-coral {
  top: 0;
  right: 0;
  width: 155px;
  height: 145px;
  background: var(--coral);
  border-radius: 0 0 0 94%;
}

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

.benefits article {
  min-height: 112px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.benefits strong {
  display: block;
  font-size: 17px;
}

.benefits p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.benefit-icon {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  font-size: 27px;
  font-weight: 800;
  border-radius: 50%;
}

.benefit-green {
  background: #e7f4e8;
}

.benefit-yellow {
  background: #fff1bf;
}

.benefit-coral {
  background: #ffe2dc;
}

.section {
  padding-top: 108px;
}

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

.section-heading h2,
.video-story h2,
.newsletter h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.text-link {
  padding-bottom: 7px;
  color: var(--green);
  font-weight: 750;
  border-bottom: 1px solid rgba(23, 107, 58, 0.35);
}

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

.category-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: white;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.category-card > span {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.category-card div {
  position: relative;
  z-index: 2;
}

.category-card h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.category-card p {
  max-width: 310px;
  margin: 10px 0 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.category-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 38, 22, 0.08) 0%, rgba(7, 38, 22, 0.88) 100%);
}

.category-tomato {
  background-image: url("/images/garden-tomatoes.jpg");
}

.category-pepper {
  background-image: url("/images/garden-cucumbers.jpg");
}

.category-other {
  background-image: url("/images/garden-harvest.jpg");
}

.garden-moments {
  padding-top: 92px;
}

.garden-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, 225px);
  gap: 18px;
}

.garden-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--green-pale);
  border-radius: 26px;
}

.garden-gallery-main {
  grid-row: 1 / 3;
}

.garden-gallery figure:nth-child(2) {
  grid-column: 2 / 4;
}

.garden-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.garden-gallery figure:hover img {
  transform: scale(1.025);
}

.garden-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 14px;
  color: white;
  font-size: 13px;
  font-weight: 750;
  background: rgba(8, 47, 27, 0.78);
  backdrop-filter: blur(8px);
  border-radius: 13px;
}

.section-note {
  max-width: 320px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.product-image-wrap {
  position: relative;
  display: block;
  height: 286px;
  overflow: hidden;
  background: #f1eadc;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--coral);
  border-radius: 999px;
}

.product-card-body {
  padding: 22px;
}

.product-category {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 48px;
  margin: 7px 0 5px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.product-card-body > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.product-card-buy {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-buy > span {
  display: flex;
  flex-direction: column;
}

.product-card-buy strong {
  font-size: 20px;
}

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

.product-card-buy button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 25px;
  background: var(--green);
  border: 0;
  border-radius: 15px;
  cursor: pointer;
}

.product-card-buy button:disabled {
  width: auto;
  min-width: 105px;
  padding: 0 12px;
  color: #657168;
  font-size: 10px;
  font-weight: 800;
  background: #e8eee7;
  cursor: not-allowed;
}

.toast {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  padding: 10px 13px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  background: var(--green-dark);
  border-radius: 12px;
}

.video-story {
  margin-top: 110px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
  background: #dfeedd;
  border-radius: 38px;
}

.video-placeholder {
  position: relative;
  min-height: 490px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 38, 22, 0.05), rgba(10, 38, 22, 0.75)),
    url("/images/garden-tour.jpg") center / cover no-repeat;
  border-radius: 28px;
}

.video-placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 67% 25%, transparent 0 20%, rgba(11, 63, 35, 0.2));
}

.video-placeholder > * {
  position: relative;
  z-index: 1;
}

.video-placeholder div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.video-placeholder div span {
  font-size: 12px;
  opacity: 0.8;
}

.video-placeholder div strong {
  margin-top: 6px;
}

.video-play {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  padding-left: 5px;
  color: var(--green-dark);
  font-size: 25px;
  background: var(--yellow);
  border-radius: 50%;
}

.video-story-copy {
  padding-right: clamp(20px, 4vw, 68px);
}

.video-story-copy p {
  margin: 22px 0 0;
  color: #526654;
  font-size: 17px;
  line-height: 1.65;
}

.social-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter {
  margin-top: 110px;
  margin-bottom: 110px;
  padding: 54px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  color: white;
  background: var(--green);
  border-radius: 34px;
}

.newsletter .eyebrow {
  color: #cce9ce;
}

.newsletter h2 {
  margin-top: 6px;
  font-size: clamp(34px, 4vw, 50px);
}

.newsletter p {
  margin: 8px 0 0;
  color: #d8eadb;
}

.newsletter form {
  width: min(480px, 100%);
  display: flex;
  padding: 7px;
  background: white;
  border-radius: 19px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
}

.site-footer {
  padding: 60px max(28px, calc((100vw - 1396px) / 2));
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  color: #dce8df;
  background: #0e3322;
}

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

.site-footer strong {
  margin-bottom: 8px;
  color: white;
}

.site-footer a,
.site-footer span,
.site-footer p {
  color: #b6cdbd;
  font-size: 14px;
  line-height: 1.5;
}

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

.brand-footer {
  margin-bottom: 8px;
  color: white;
  font-size: 20px;
}

.brand-footer .brand-mark {
  transform: scale(0.8);
  transform-origin: left center;
}

.brand-footer + p {
  max-width: 300px;
}

.site-footer .footer-bottom {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.search-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 110px 22px 22px;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 34, 22, 0.62);
  border: 0;
  backdrop-filter: blur(4px);
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 28px;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(6, 28, 17, 0.3);
}

.search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-panel-head h2 {
  margin: 0;
  font-size: 31px;
}

.search-panel-head button {
  width: 42px;
  height: 42px;
  font-size: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.search-panel form {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.search-panel input {
  min-width: 0;
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 17px;
}

.search-results {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.search-results > a {
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: white;
  border-radius: 14px;
}

.search-results > a span {
  color: var(--text-muted);
  font-size: 12px;
}

.inner-main {
  min-height: 65vh;
  padding-top: 70px;
  padding-bottom: 110px;
}

.page-title {
  max-width: 880px;
  margin-bottom: 58px;
}

.page-title h1,
.cart-lines > h1,
.checkout-success h1 {
  margin: 10px 0 16px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.page-title > p,
.page-title-split > p {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.page-title-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.page-title-split h1 {
  max-width: 800px;
}

.page-title-small h1 {
  margin: 10px 0 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 44px;
}

.catalog-sidebar {
  padding-top: 4px;
}

.filter-block {
  padding: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.filter-block + .filter-block {
  padding-top: 25px;
}

.filter-block > strong {
  margin-bottom: 5px;
}

.filter-block label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #435b49;
  font-size: 14px;
}

.filter-block input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.filter-block small {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.4;
}

.filter-option {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.filter-option span:last-child {
  color: var(--text-muted);
  font-size: 12px;
}

.filter-option:hover,
.filter-option.active {
  background: #e5f0e5;
}

.catalog-toolbar {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.catalog-availability {
  margin-bottom: 14px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  background: #e6efe5;
  border: 1px solid #d9e5d9;
  border-radius: 18px;
}

.catalog-availability button {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #536458;
  font-size: 13px;
  font-weight: 750;
  background: transparent;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.catalog-availability button:hover {
  background: rgba(255, 255, 255, 0.65);
}

.catalog-availability button.active {
  color: white;
  background: var(--green);
  box-shadow: 0 5px 14px rgba(23, 107, 58, 0.2);
}

.catalog-availability small {
  min-width: 25px;
  padding: 3px 6px;
  color: inherit;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.catalog-availability button.active small {
  background: rgba(255, 255, 255, 0.18);
}

.catalog-search input,
.catalog-sort select,
.form-grid input,
.form-grid textarea,
.contact-form-section input,
.contact-form-section textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--green-dark);
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
}

.catalog-sort select {
  min-width: 215px;
}

.catalog-mobile-categories {
  display: none;
}

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

.catalog-result-line strong {
  font-size: 26px;
}

.catalog-result-line span {
  color: var(--text-muted);
  font-size: 13px;
}

.product-grid-catalog {
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-grid-catalog .product-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  border-radius: 18px;
}

.product-grid-catalog .product-card:hover {
  transform: translateX(3px);
}

.product-grid-catalog .product-image-wrap {
  height: 100%;
  min-height: 116px;
}

.product-grid-catalog .product-card-body {
  padding: 12px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(165px, auto);
  grid-template-rows: auto auto 1fr;
  column-gap: 16px;
}

.product-grid-catalog .product-category,
.product-grid-catalog .product-card-body > a,
.product-grid-catalog .product-card-body > p {
  grid-column: 1;
}

.product-grid-catalog .product-category {
  font-size: 9px;
}

.product-grid-catalog .product-card h3 {
  min-height: 0;
  margin: 3px 0;
  font-size: 18px;
}

.product-grid-catalog .product-card-body > p {
  overflow: hidden;
  align-self: end;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-grid-catalog .product-card-rating {
  display: none;
}

.product-grid-catalog .product-card-buy {
  min-width: 165px;
  margin: 0;
  padding-left: 16px;
  grid-column: 2;
  grid-row: 1 / 4;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--border);
}

.product-grid-catalog .product-card-buy > span {
  align-items: flex-end;
  text-align: right;
}

.product-grid-catalog .product-card-buy strong {
  font-size: 17px;
}

.product-grid-catalog .product-card-buy button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.product-grid-catalog .product-badge {
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  font-size: 8px;
}

.catalog-guide {
  margin: -6px 0 16px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #536458;
  font-size: 12px;
  line-height: 1.4;
  background: #e7f1e6;
  border-radius: 14px;
}

.product-card-rating {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-card-rating span,
.rating-line span {
  color: #eca51e;
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.empty-state {
  min-height: 400px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
}

.empty-state h1,
.empty-state h2 {
  margin: 12px 0 8px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.empty-state p {
  max-width: 500px;
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.breadcrumbs {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--text-muted);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(45px, 7vw, 105px);
  align-items: center;
}

.product-detail-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #f1eadc;
  border-radius: 38px;
}

.product-detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy h1 {
  margin: 10px 0 8px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.product-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.rating-line {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-line a {
  color: var(--green);
  font-size: 12px;
  text-decoration: underline;
}

.product-detail-copy > p:not(.product-lead) {
  color: #4f6051;
  font-size: 16px;
  line-height: 1.7;
}

.trait-list {
  margin: 25px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.trait-list li {
  min-height: 80px;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  color: #405d49;
  font-size: 12px;
  line-height: 1.35;
  background: #e7f1e5;
  border-radius: 14px;
}

.product-buy {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price strong {
  font-size: 31px;
}

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

.quantity-control {
  min-width: 112px;
  height: 48px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.quantity-control button {
  width: 32px;
  height: 36px;
  font-size: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.quantity-control button:disabled {
  color: #9ca59e;
  cursor: not-allowed;
}

.quantity-control span {
  font-weight: 800;
}

.product-add {
  grid-column: 1 / -1;
  width: 100%;
}

.product-mini-benefits {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  color: var(--text-muted);
  font-size: 11px;
}

.product-info-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-info-grid article {
  min-height: 420px;
  padding: 48px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
}

.product-info-grid h2,
.linked-video h2,
.reviews-section h2,
.featured-video h2,
.about-hero h2,
.social-banner h2,
.contact-form-section h2 {
  margin: 10px 0 18px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.product-info-grid p {
  color: var(--text-muted);
  line-height: 1.7;
}

.grow-card {
  color: #fff5df;
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

.grow-card .eyebrow {
  color: #a9d7ae;
}

.grow-card ol {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.grow-card li {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.grow-card li span {
  color: #b8d0c0;
  font-size: 13px;
}

.linked-video {
  margin-top: 20px;
  padding: 24px 60px 24px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background: #ffe2d8;
  border-radius: 32px;
}

.video-embed-placeholder {
  min-height: 360px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: white;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(13, 58, 34, 0.05), rgba(13, 58, 34, 0.72)),
    url("/images/garden-tour.jpg") center / cover no-repeat;
  border-radius: 24px;
}

.video-embed-placeholder > span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  padding-left: 4px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 50%;
}

.video-embed-placeholder strong {
  font-size: 12px;
}

.reviews-section {
  margin-top: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  background: #ffe8a9;
  border-radius: 32px;
}

.review-placeholder {
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
}

.review-placeholder p {
  color: var(--text-muted);
  line-height: 1.5;
}

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

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 55px;
  align-items: start;
}

.cart-lines > h1 {
  margin-top: 0;
  font-size: clamp(54px, 6vw, 80px);
}

.cart-line {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 130px 1fr auto 110px;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.cart-line img {
  width: 130px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-line-copy > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-line-copy h2 {
  margin: 5px 0;
  font-size: 20px;
}

.cart-line-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.cart-line-copy button {
  margin-top: 14px;
  padding: 0;
  color: var(--coral);
  font-size: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
}

.order-summary {
  position: sticky;
  top: 110px;
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.order-summary > div {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.order-summary .order-total {
  padding-top: 20px;
  font-size: 20px;
  border-bottom: 0;
}

.order-summary p {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}

.order-summary .button {
  width: 100%;
  margin-top: 12px;
}

.empty-cart {
  min-height: 570px;
}

.empty-cart-icon {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  color: var(--green);
  background: #e5f1e6;
  border-radius: 50%;
}

.checkout-form {
  display: grid;
  gap: 22px;
}

.checkout-form fieldset {
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
}

.checkout-form legend {
  padding: 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid label,
.contact-form-section label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #445c4a;
  font-size: 12px;
  font-weight: 700;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-grid textarea,
.contact-form-section textarea {
  min-height: 110px;
  padding-top: 15px;
  resize: vertical;
}

.radio-card-list {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-card-list label {
  min-height: 90px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.radio-card-list input {
  margin-top: 3px;
  accent-color: var(--green);
}

.radio-card-list label > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-card-list small {
  color: var(--text-muted);
  line-height: 1.4;
}

.notice {
  padding: 18px 20px;
  color: #57440a;
  line-height: 1.5;
  background: #fff0b5;
  border: 1px solid #ead47c;
  border-radius: 16px;
}

.checkout-success {
  min-height: 570px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: white;
  border-radius: 34px;
}

.checkout-success > span {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  color: white;
  font-size: 42px;
  background: var(--green);
  border-radius: 50%;
}

.checkout-success p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.featured-video {
  padding: 24px 60px 24px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
  background: #e0efdf;
  border-radius: 34px;
}

.video-embed-large {
  min-height: 500px;
}

.featured-video p {
  color: var(--text-muted);
  line-height: 1.6;
}

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

.video-grid article {
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.video-grid article > span,
.video-grid article > h3,
.video-grid article > p {
  margin-right: 20px;
  margin-left: 20px;
}

.video-grid article > span {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-grid h3 {
  margin-top: 7px;
  margin-bottom: 8px;
  font-size: 21px;
}

.video-grid p {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.video-card-art {
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
}

.video-card-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(14, 62, 35, 0.18);
}

.video-card-art span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding-left: 3px;
  background: var(--yellow);
  border-radius: 50%;
}

.video-card-art-1 {
  background-image: url("/images/garden-tomatoes.jpg");
}

.video-card-art-2 {
  background-image: url("/images/garden-peppers.jpg");
}

.video-card-art-3 {
  background-image: url("/images/garden-cucumbers.jpg");
}

.video-card-art-4 {
  background-image: url("/images/garden-harvest.jpg");
}

.integration-note {
  margin-top: 70px;
  padding: 30px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  color: #e2eee5;
  background: var(--green-dark);
  border-radius: 24px;
}

.integration-note p {
  margin: 0;
  color: #b7cdbc;
  line-height: 1.6;
}

.about-hero {
  padding: 24px 60px 24px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
  background: #ffe4d9;
  border-radius: 34px;
}

.about-photo {
  min-height: 560px;
  background: url("/images/irina-garden.jpg") center / cover no-repeat;
  border-radius: 26px;
}

.about-hero p {
  color: #5b675d;
  line-height: 1.7;
}

.values-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.values-grid article,
.contact-grid article {
  min-height: 280px;
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
}

.values-grid article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.values-grid h2 {
  margin: 70px 0 10px;
  font-size: 29px;
}

.values-grid p,
.contact-grid p {
  color: var(--text-muted);
  line-height: 1.6;
}

.social-banner {
  margin-top: 70px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #dfeedd;
  border-radius: 30px;
}

.social-banner h2 {
  max-width: 650px;
}

.center-link {
  padding: 70px 0 0;
  text-align: center;
}

.narrow-page {
  max-width: 1040px;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-stack article {
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.info-stack article > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.info-stack h2 {
  margin: 0 0 6px;
  font-size: 25px;
}

.info-stack p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.narrow-page > .notice {
  margin-top: 20px;
}

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

.contact-grid h2 {
  margin: 50px 0 8px;
  font-size: 25px;
}

.contact-form-section {
  margin-top: 20px;
  padding: 55px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  background: #e0efdf;
  border-radius: 30px;
}

.contact-form-section p {
  color: var(--text-muted);
  line-height: 1.6;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scale {
  from {
    opacity: 0.75;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes badge-pop {
  0% {
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 200px 1fr auto;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .search-trigger {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .search-placeholder {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding-left: 50px;
  }

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

  .product-grid-catalog .product-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .product-grid-catalog .product-card-body {
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  }

  .product-grid-catalog .product-card-buy {
    min-width: 150px;
    padding-left: 14px;
  }

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

  .product-image-wrap {
    height: 360px;
  }
}

@media (max-width: 820px) {
  .home-discovery {
    display: flex;
    flex-direction: column;
  }

  .home-catalog {
    order: -1;
  }

  .page-shell {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 74px;
    padding: 10px 14px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 48px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 14px;
    left: 14px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .hero::after {
    background: linear-gradient(180deg, #fff9e9 0%, rgba(255, 248, 232, 0.94) 45%, rgba(255, 248, 232, 0.05) 72%);
  }

  .hero-copy {
    min-height: 480px;
    padding: 86px 26px 44px;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 60px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-art {
    position: relative;
    inset: auto;
    z-index: 0;
    min-height: 360px;
    margin-top: -40px;
    background-position: 68% center;
  }

  .hero-person {
    right: 50%;
    bottom: 24px;
    width: min(72vw, 330px);
    border-width: 6px;
    border-radius: 32px;
    transform: translateX(50%) rotate(1deg);
  }

  .hero-shape-yellow {
    width: 190px;
    height: 63px;
  }

  .hero-shape-coral {
    width: 90px;
    height: 100px;
  }

  .benefits {
    overflow-x: auto;
    grid-template-columns: repeat(3, 82vw);
    scroll-snap-type: x mandatory;
  }

  .benefits article {
    scroll-snap-align: start;
  }

  .section {
    padding-top: 82px;
  }

  .inner-main {
    padding-top: 48px;
    padding-bottom: 84px;
  }

  .page-title {
    margin-bottom: 38px;
  }

  .page-title-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .catalog-sidebar {
    display: none;
  }

  .catalog-mobile-categories {
    margin-bottom: 18px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .catalog-mobile-categories button {
    min-height: 42px;
    padding: 0 16px;
    flex: 0 0 auto;
    color: var(--green-dark);
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
  }

  .catalog-mobile-categories button.active {
    color: white;
    background: var(--green);
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-detail-image {
    min-height: 550px;
  }

  .product-info-grid,
  .linked-video,
  .reviews-section,
  .featured-video,
  .about-hero,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .linked-video,
  .featured-video,
  .about-hero {
    padding: 14px 14px 34px;
    gap: 30px;
  }

  .linked-video > div:last-child,
  .featured-video > div:last-child,
  .about-hero > article {
    padding-inline: 18px;
  }

  .reviews-section {
    gap: 24px;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .cart-line {
    grid-template-columns: 100px 1fr auto;
  }

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

  .cart-line .quantity-control {
    grid-column: 2 / 3;
    width: 112px;
  }

  .cart-line > strong {
    grid-column: 3;
    grid-row: 1 / 3;
  }

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

  .social-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .video-story h2 {
    font-size: 40px;
  }

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

  .garden-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 190px 190px;
  }

  .garden-gallery-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .garden-gallery figure:nth-child(2) {
    grid-column: 1 / 3;
  }

  .category-card {
    min-height: 235px;
  }

  .product-image-wrap {
    height: 360px;
  }

  .video-story {
    margin-top: 84px;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 28px;
  }

  .video-placeholder {
    min-height: 340px;
  }

  .video-story-copy {
    padding: 8px 12px 28px;
  }

  .newsletter {
    margin-top: 84px;
    margin-bottom: 84px;
    padding: 36px 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter form {
    flex-direction: column;
    background: transparent;
  }

  .newsletter input {
    min-height: 56px;
    background: white;
    border-radius: 16px;
  }

  .site-footer {
    padding: 48px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > div:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .search-trigger {
    display: none;
  }

  .hero-copy {
    min-height: 490px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .button-video {
    justify-content: flex-start;
  }

  .product-image-wrap {
    height: 300px;
  }

  .product-grid-catalog .product-card {
    min-height: 112px;
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .product-grid-catalog .product-image-wrap {
    min-height: 112px;
  }

  .product-grid-catalog .product-badge {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .product-grid-catalog .product-card-body {
    padding: 10px 11px;
    display: block;
  }

  .product-grid-catalog .product-card h3 {
    margin-top: 3px;
    font-size: 15px;
  }

  .product-grid-catalog .product-card-body > p,
  .product-grid-catalog .product-card-rating {
    display: none;
  }

  .product-grid-catalog .product-card-buy {
    min-width: 0;
    margin-top: 8px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
    border-left: 0;
  }

  .product-grid-catalog .product-card-buy > span {
    align-items: flex-start;
    text-align: left;
  }

  .product-grid-catalog .product-card-buy strong {
    font-size: 14px;
  }

  .product-grid-catalog .product-card-buy button:disabled {
    min-width: 84px;
    padding-inline: 8px;
    font-size: 9px;
  }

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

  .catalog-availability {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .catalog-availability button {
    min-width: 128px;
    min-height: 40px;
    flex: 1 0 auto;
    justify-content: center;
    scroll-snap-align: start;
  }

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

  .catalog-result-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .product-detail-image {
    min-height: 430px;
  }

  .trait-list {
    grid-template-columns: 1fr;
  }

  .product-info-grid article,
  .reviews-section {
    padding: 28px;
  }

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

  .quantity-control,
  .product-add {
    grid-column: 1;
  }

  .radio-card-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: 1;
  }

  .cart-line {
    grid-template-columns: 86px 1fr;
  }

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

  .cart-line .quantity-control,
  .cart-line > strong {
    grid-column: 2;
    grid-row: auto;
  }

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

  .garden-moments {
    padding-top: 70px;
  }

  .garden-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 260px repeat(3, 190px);
  }

  .garden-gallery-main,
  .garden-gallery figure:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
  }

  .integration-note,
  .info-stack article {
    grid-template-columns: 1fr;
  }

  .social-banner,
  .contact-form-section {
    padding: 30px 24px;
  }

  .video-placeholder {
    min-height: 300px;
    padding: 20px;
  }

  .video-placeholder div {
    display: none;
  }

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

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

/* Design system v2 — fixed Ubuntu typography, 8px rhythm and restrained controls. */
:root {
  --type-display: 36px;
  --type-heading: 24px;
  --type-body: 16px;
  --radius-control: 12px;
  --radius-card: 20px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
}

body,
button,
input,
select,
textarea {
  font-family: "Ubuntu Local", Ubuntu, "Segoe UI", Arial, sans-serif;
}

body,
p,
a,
button,
input,
select,
textarea,
label,
small,
span {
  font-size: var(--type-body);
  line-height: 1.5;
}

h1,
.admin-header h1,
.setup-card h1,
.admin-edit-page h1,
.hero h1 {
  font-size: var(--type-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2,
h3,
.section-heading h2,
.video-story h2,
.newsletter h2,
.admin-section-heading h2,
.admin-password-card h2,
.admin-profile-card h3,
.category-card h3,
.catalog-result-line strong {
  font-size: var(--type-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.eyebrow,
.hero-kicker,
.product-category {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

strong,
.button,
.main-nav a,
.admin-tabs a,
.admin-tabs button {
  font-weight: 700;
}

.page-shell {
  width: min(100% - 48px, 1280px);
}

.admin-main {
  width: min(100% - 48px, 1120px);
  padding-block: 48px 72px;
}

.admin-header,
.admin-toolbar,
.admin-editor-head,
.admin-order-card header,
.admin-order-actions,
.admin-profile-card > header,
.admin-reset-action {
  gap: var(--space-3);
}

.admin-header h1,
.admin-section-heading h2,
.admin-password-card h2,
.admin-profile-card h3 {
  margin: var(--space-1) 0;
}

.admin-header p,
.admin-section-heading p,
.admin-password-card > p {
  margin: 0;
  line-height: 1.5;
}

.admin-stats {
  margin: var(--space-4) 0 var(--space-3);
  gap: var(--space-2);
}

.admin-stats article,
.admin-profile-card,
.admin-password-card,
.admin-list-panel,
.admin-order-card,
.admin-edit-card,
.setup-card {
  border-radius: var(--radius-card);
}

.admin-stats article {
  padding: var(--space-3);
}

.admin-stats strong {
  font-size: var(--type-heading);
  line-height: 1.25;
}

.admin-tabs {
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.admin-tabs a,
.admin-tabs button {
  min-height: 44px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-control);
}

.admin-tabs a span,
.admin-tabs span {
  font-size: 14px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-control);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: none;
}

.admin-profile-layout {
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: var(--space-3);
}

.admin-profile-column,
.admin-profile-form {
  gap: var(--space-3);
}

.admin-section-heading {
  padding: 0;
}

.admin-profile-card,
.admin-password-card {
  padding: var(--space-3);
}

.admin-profile-form {
  margin-top: var(--space-3);
}

.admin-profile-form label,
.setup-form label,
.admin-product-form label,
.admin-editor label,
.admin-order-actions label {
  display: grid;
  gap: var(--space-1);
  font-size: var(--type-body);
  font-weight: 500;
}

.admin-profile-form input,
.setup-form input,
.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea,
.admin-editor input,
.admin-editor select,
.admin-editor textarea,
.admin-order-actions input,
.admin-order-actions select,
.admin-toolbar input {
  min-width: 0;
  min-height: 48px;
  padding: 10px 14px;
  font-size: var(--type-body);
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #d9ded8;
  border-radius: var(--radius-control);
}

.admin-profile-form small,
.admin-reset-action small,
.setup-form small,
.admin-product-form small {
  margin-top: 0;
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.admin-reset-action {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
}

.admin-reset-action > div {
  min-width: 0;
}

.admin-reset-action small {
  max-width: 520px;
}

.admin-product-row,
.admin-product-row > span,
.admin-order-meta > *,
.site-footer > *,
.admin-profile-card > *,
.admin-password-card > * {
  min-width: 0;
}

.admin-product-row strong,
.admin-product-row small {
  overflow-wrap: anywhere;
}

.admin-order-meta,
.site-footer,
.admin-reset-action,
.admin-profile-card {
  overflow-wrap: anywhere;
}

.product-card button,
.cart-link,
.menu-button {
  min-width: 44px;
  min-height: 44px;
}

.main-nav {
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
}

@media (max-width: 900px) {
  .admin-profile-layout {
    grid-template-columns: 1fr;
  }

  .admin-profile-card > header,
  .admin-reset-action {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-product-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .admin-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-padding-inline: 16px;
    overscroll-behavior-x: contain;
  }

  .admin-tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --type-display: 32px;
    --type-heading: 24px;
    --type-body: 16px;
  }

  .page-shell,
  .admin-main {
    width: min(100% - 32px, 1120px);
  }

  .admin-main {
    padding-block: 32px 56px;
  }

  .admin-profile-card,
  .admin-password-card,
  .admin-edit-card,
  .admin-order-card,
  .admin-list-panel,
  .setup-card,
  .checkout-form fieldset {
    padding: 20px;
  }

  .admin-profile-form,
  .admin-profile-column {
    gap: 20px;
  }

  .admin-profile-form .button,
  .admin-reset-action .button,
  .admin-header-actions .button,
  .admin-order-actions .button {
    width: 100%;
  }

  .admin-product-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .admin-product-row > span:nth-child(4) {
    grid-column: 2;
    text-align: left;
  }

  .search-trigger {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .search-placeholder {
    display: none;
  }

  .benefits,
  .catalog-availability {
    scrollbar-width: none;
    scroll-padding-inline: 16px;
    overscroll-behavior-x: contain;
  }

  .benefits::-webkit-scrollbar,
  .catalog-availability::-webkit-scrollbar {
    display: none;
  }
}

/* Admin catalog controls */
.admin-products-heading,
.admin-filter-summary,
.admin-bulk-bar,
.admin-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-products-heading {
  margin-bottom: 22px;
}

.admin-products-heading h2 {
  margin: 5px 0 0;
  font-size: var(--type-heading, 28px);
  line-height: 1.15;
}

.admin-filters {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1.55fr) repeat(5, minmax(140px, 1fr));
  gap: 12px;
  background: #fffaf0;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.admin-filters label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.admin-filters input,
.admin-filters select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  color: var(--green-dark);
  font: inherit;
  font-weight: 500;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.admin-filter-summary {
  min-height: 46px;
  padding: 10px 2px 8px;
}

.admin-filter-summary strong,
.admin-bulk-bar span {
  font-size: 14px;
}

.admin-reset-filters,
.admin-delete-product {
  padding: 0;
  color: var(--green);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  background: none;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.admin-reset-filters:hover {
  color: var(--green-dark);
}

.admin-bulk-bar {
  margin-bottom: 14px;
  padding: 13px 15px;
  justify-content: flex-start;
  background: #f4f7f2;
  border: 1px solid #dbe6dc;
  border-radius: 14px;
}

.admin-bulk-bar .button {
  margin-left: auto;
  min-height: 42px;
  padding: 0 16px;
}

.admin-select-visible,
.admin-product-select {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-select-visible input,
.admin-product-select input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--green);
}

.admin-product-row {
  grid-template-columns: 24px 58px minmax(220px, 1fr) 110px 145px 110px auto;
}

.admin-product-actions {
  justify-content: flex-end;
  gap: 10px;
}

.admin-product-actions .button {
  min-height: 40px;
  padding: 0 14px;
}

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

.admin-delete-product {
  color: #a33729;
  white-space: nowrap;
}

.admin-delete-product:hover {
  color: #70251c;
}

.admin-products-empty {
  padding: 46px 20px;
  color: var(--text-muted);
  text-align: center;
  background: #fffaf0;
  border: 1px dashed var(--border);
  border-radius: 16px;
}

.admin-products-empty h3 {
  margin: 0 0 6px;
  color: var(--green-dark);
}

.admin-products-empty p {
  margin: 0;
}

/* Keep paired product fields on one precise baseline. */
.admin-edit-card .form-grid {
  align-items: start;
}

.admin-edit-card .form-grid > label {
  grid-template-rows: minmax(20px, auto) 54px auto;
  align-content: start;
}

.admin-edit-card .form-grid > label > input,
.admin-edit-card .form-grid > label > select,
.admin-edit-card > label > input,
.admin-edit-card > label > select {
  height: 54px;
}

.admin-edit-card .form-grid > label > small {
  min-height: 20px;
}

.site-footer .footer-credit {
  width: 100%;
  margin-left: 0;
  padding-top: 4px;
}

.site-footer .footer-credit a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .admin-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-product-row {
    grid-template-columns: 24px 58px minmax(200px, 1fr) 145px auto;
  }

  .admin-product-row > span:nth-child(4),
  .admin-product-row > span:nth-child(6) {
    display: none;
  }

  .admin-product-row > span:nth-child(3),
  .admin-product-row > span:nth-child(5) {
    display: grid;
  }
}

@media (max-width: 760px) {
  .admin-products-heading,
  .admin-filter-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-products-heading .button {
    width: 100%;
  }

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

  .admin-filter-search {
    grid-column: 1 / -1;
  }

  .admin-bulk-bar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .admin-bulk-bar .button {
    width: 100%;
    margin-left: 0;
  }

  .admin-product-row {
    grid-template-columns: 24px 52px minmax(0, 1fr);
    gap: 10px;
  }

  .admin-product-row img {
    width: 52px;
    height: 52px;
  }

  .admin-product-row > span:nth-child(5),
  .admin-product-actions {
    grid-column: 3;
  }

  .admin-product-row > span:nth-child(5) {
    text-align: left;
  }

  .admin-product-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .admin-filters {
    padding: 14px;
    grid-template-columns: 1fr;
  }

  .admin-filter-search {
    grid-column: auto;
  }

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

  .admin-product-actions .button,
  .admin-product-actions form,
  .admin-delete-product {
    width: 100%;
  }

  .admin-delete-product {
    min-height: 40px;
    text-align: left;
  }

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

  .site-footer .footer-credit {
    margin-left: 0;
  }
}

/* Logged-in administrator bar */
.admin-mode-bar {
  position: sticky;
  z-index: 80;
  top: 0;
  min-height: 46px;
  padding: 7px max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: #102d20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-mode-bar > div,
.admin-mode-bar nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-mode-bar strong,
.admin-mode-bar span,
.admin-mode-bar a {
  color: white;
  font-size: 13px;
}

.admin-mode-bar span {
  color: #bcd0c3;
}

.admin-mode-bar nav > a {
  padding: 7px 12px;
  border-radius: 9px;
}

.admin-mode-bar nav > a:first-child {
  color: #dce8df;
}

.admin-mode-bar .admin-mode-edit {
  color: var(--green-dark);
  font-weight: 700;
  background: var(--yellow);
}

.admin-mode-bar + .site-header {
  top: 46px;
}

/* Customer account entry in header */
.account-link {
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.account-icon {
  flex: 0 0 auto;
}

/* Page editor */
.admin-page-editor .admin-editor-head {
  margin-bottom: 28px;
}

.admin-page-editor .admin-editor-head h1 {
  white-space: pre-line;
}

.admin-page-form {
  max-width: 880px;
}

.admin-page-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.admin-page-form textarea[name="heading"] {
  min-height: 100px;
}

.admin-page-form textarea[name="intro"],
.admin-page-form textarea[name="seo_description"] {
  min-height: 130px;
}

.admin-page-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-page-list {
  display: grid;
  gap: 12px;
}

.admin-page-list > .admin-section-heading {
  margin-bottom: 8px;
}

.admin-page-list > article {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.admin-page-list h3 {
  margin: 5px 0;
  white-space: pre-line;
}

.admin-page-list p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.admin-page-list-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Customer authentication and dashboard */
.account-auth-page {
  min-height: 68vh;
  padding-block: 70px 100px;
  display: grid;
  place-items: start center;
}

.account-auth-card {
  width: min(560px, 100%);
  padding: 38px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card, 24px);
  box-shadow: var(--shadow);
}

.account-auth-card h1 {
  margin: 8px 0 10px;
  font-size: var(--type-display, 48px);
  line-height: 1.05;
}

.account-auth-card > p {
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.55;
}

.account-form {
  display: grid;
  gap: 17px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.account-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--green-dark);
  font: inherit;
  font-weight: 500;
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.account-form input[readonly] {
  color: var(--text-muted);
  background: #f3f4ef;
}

.account-form small {
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.account-auth-switch {
  margin: 22px 0 0 !important;
  font-size: 14px;
}

.account-auth-switch a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-forgot-link {
  margin-top: 14px;
  display: inline-block;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-verify-message {
  margin: 22px 0;
  padding: 24px;
  text-align: center;
  background: #eef7f0;
  border: 1px solid #cfe2d3;
  border-radius: 18px;
}

.account-verify-message > span {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: var(--green);
  border-radius: 50%;
}

.account-verify-message h2 {
  margin: 0 0 8px;
}

.account-verify-message p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.account-page {
  min-height: 70vh;
  padding-block: 64px 100px;
}

.account-header,
.account-section-title,
.account-order-card header,
.account-order-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.account-header {
  margin-bottom: 28px;
}

.account-header h1 {
  margin: 8px 0 10px;
  font-size: var(--type-display, 48px);
  line-height: 1.05;
}

.account-header p {
  margin: 0;
  color: var(--text-muted);
}

.account-stats {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.account-stats article {
  min-width: 0;
  padding: 20px;
  display: grid;
  gap: 7px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.account-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.account-stats strong {
  overflow-wrap: anywhere;
  font-size: 22px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 22px;
}

.account-orders {
  display: grid;
  gap: 16px;
}

.account-section-title {
  margin-bottom: 4px;
}

.account-section-title h2,
.account-settings h2 {
  margin: 5px 0 0;
}

.account-order-card,
.account-settings > section {
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(28, 57, 35, 0.06);
}

.account-order-card h3 {
  margin: 5px 0 0;
}

.account-order-progress {
  position: relative;
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.account-order-progress::before {
  position: absolute;
  top: 14px;
  right: 16.66%;
  left: 16.66%;
  height: 2px;
  content: "";
  background: #dfe7df;
}

.account-order-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--text-muted);
  text-align: center;
}

.account-order-progress i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #7a887c;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  background: #edf0eb;
  border: 2px solid white;
  border-radius: 50%;
}

.account-order-progress .done {
  color: var(--green-dark);
}

.account-order-progress .done i {
  color: white;
  background: var(--green);
}

.account-order-stopped {
  margin: 20px 0;
  padding: 13px 15px;
  color: #8d3327;
  background: #fde8e3;
  border-radius: 12px;
}

.account-order-items {
  padding-block: 13px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.account-order-items div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.account-order-items span,
.account-order-card footer span {
  color: var(--text-muted);
  font-size: 14px;
}

.account-order-card footer {
  padding-top: 16px;
}

.account-settings {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.admin-mode-bar + .site-header ~ .account-page .account-settings {
  top: 150px;
}

.account-settings > section {
  display: grid;
  gap: 18px;
}

.account-checkout-note {
  margin-top: 18px;
  padding: 13px 15px;
  color: var(--text-muted);
  font-size: 14px;
  background: #f4f7f2;
  border: 1px solid #dbe6dc;
  border-radius: 12px;
}

.account-checkout-note a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.cart-page-copy {
  margin-bottom: 30px;
}

.cart-page-copy h1 {
  margin: 8px 0 10px;
  font-size: var(--type-display, 48px);
  white-space: pre-line;
}

.cart-page-copy p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 1040px) {
  .account-link > span {
    display: none;
  }

  .account-link {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-settings {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .admin-mode-bar {
    padding-inline: 16px;
  }

  .admin-mode-bar > div span,
  .admin-mode-bar nav > a:first-child {
    display: none;
  }

  .admin-page-form-grid,
  .account-stats,
  .account-settings {
    grid-template-columns: 1fr;
  }

  .admin-page-list > article {
    grid-template-columns: 1fr;
  }

  .admin-page-list-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .account-header,
  .account-section-title,
  .account-order-card header,
  .account-order-card footer {
    align-items: stretch;
    flex-direction: column;
  }

  .account-section-title .button,
  .account-header .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .admin-mode-bar {
    min-height: 50px;
    gap: 10px;
  }

  .admin-mode-bar + .site-header {
    top: 50px;
  }

  .admin-mode-bar strong,
  .admin-mode-bar a {
    font-size: 12px;
  }

  .admin-mode-bar nav > a {
    padding: 7px 9px;
  }

  .account-auth-page {
    width: min(100% - 24px, 1280px);
    padding-block: 24px 60px;
  }

  .account-auth-card,
  .account-order-card,
  .account-settings > section {
    padding: 20px;
  }

  .account-page {
    padding-block: 36px 70px;
  }

  .account-order-progress small {
    font-size: 11px;
  }

  .account-order-items div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .admin-page-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
