:root {
  --green-950: #064b2b;
  --green-900: #056335;
  --green-800: #08783e;
  --green-700: #0d914b;
  --green-600: #19aa58;
  --green-100: #dff6e6;
  --green-50: #effaf2;
  --lime: #c9f35c;
  --ink: #18251e;
  --muted: #69766f;
  --line: #dfe7e1;
  --surface: #ffffff;
  --canvas: #f5f7f2;
  --warning: #f59e0b;
  --danger: #cf3d43;
  --shadow-sm: 0 4px 16px rgba(14, 48, 28, 0.06);
  --shadow-md: 0 18px 45px rgba(14, 48, 28, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

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

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(25, 170, 88, 0.25);
  outline-offset: 2px;
}

button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.announcement {
  color: #eaf8ef;
  background: var(--green-950);
  font-size: 12px;
}

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

.text-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(16, 70, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand__mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.brand__mark img {
  position: absolute;
  width: 100px;
  max-width: none;
  top: -11px;
  left: -27px;
}

.brand__copy {
  display: grid;
  color: var(--green-950);
  line-height: 1;
  text-align: left;
}

.brand__copy strong {
  font-size: 19px;
  letter-spacing: 0.08em;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.48em;
}

.search {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #d6e2da;
  border-radius: 16px;
  background: #f7faf7;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search:focus-within {
  border-color: var(--green-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25, 170, 88, 0.1);
}

.search > span {
  color: var(--green-800);
  font-size: 27px;
  line-height: 1;
  transform: rotate(-18deg);
}

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

.search input::placeholder {
  color: #8c9991;
}

.search kbd {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font: 10px "Manrope", sans-serif;
}

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

.location-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.location-button:hover {
  background: var(--green-50);
}

.location-button > span:first-child {
  color: var(--green-700);
  font-size: 24px;
}

.location-button > span:last-child {
  display: grid;
  text-align: left;
}

.location-button small {
  color: var(--muted);
  font-size: 10px;
}

.location-button strong {
  font-size: 12px;
}

.account-button {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.account-button:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.account-button__avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--green-800);
  font-size: 19px;
}

.account-button > span:last-child {
  display: grid;
  min-width: 76px;
  text-align: left;
}

.account-button small {
  color: var(--muted);
  font-size: 9px;
}

.account-button strong {
  overflow: hidden;
  max-width: 105px;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button,
.close-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.icon-button:hover,
.close-button:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.badge {
  position: absolute;
  top: -6px;
  right: -7px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--danger);
  font-size: 10px;
  font-weight: 800;
}

.mobile-search-wrap {
  display: none;
  padding-bottom: 12px;
}

.page {
  min-height: calc(100vh - 112px);
  padding-top: 28px;
  padding-bottom: 80px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 340px;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 75% 30%, rgba(201, 243, 92, 0.28), transparent 26%),
    linear-gradient(125deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow-md);
}

.hero::after {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -150px;
  border: 50px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 660px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 56px;
}

.promo-pill,
.eyebrow {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.promo-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero h1 {
  max-width: 590px;
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero p {
  max-width: 510px;
  margin: 0 0 26px;
  color: #dceee3;
  font-size: 15px;
}

.hero__actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button--lime {
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 8px 20px rgba(2, 57, 28, 0.2);
}

.button--primary {
  color: #fff;
  background: var(--green-800);
}

.button--primary:hover {
  background: var(--green-900);
}

.button--secondary {
  border-color: var(--line);
  color: var(--green-900);
  background: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.produce-orbit {
  position: relative;
  display: grid;
  width: min(310px, 80%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.05);
}

.produce-orbit::before,
.produce-orbit::after {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.produce-orbit::before { inset: 25px; }
.produce-orbit::after { inset: 72px; }

.produce-orbit__main {
  z-index: 1;
  font-size: 86px;
  filter: drop-shadow(0 18px 18px rgba(3, 47, 24, 0.26));
}

.produce-orbit span:not(.produce-orbit__main) {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 32px;
  backdrop-filter: blur(8px);
}

.produce-orbit span:nth-child(2) { top: 14px; left: 25px; transform: rotate(-8deg); }
.produce-orbit span:nth-child(3) { top: 40px; right: 4px; transform: rotate(9deg); }
.produce-orbit span:nth-child(4) { bottom: 18px; right: 34px; transform: rotate(-6deg); }
.produce-orbit span:nth-child(5) { bottom: 32px; left: 5px; transform: rotate(8deg); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--green-50);
  font-size: 21px;
}

.trust-item div {
  display: grid;
}

.trust-item strong {
  font-size: 13px;
}

.trust-item small {
  color: var(--muted);
  font-size: 10px;
}

.section {
  margin-top: 34px;
}

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

.section-heading h2,
.page-heading h1 {
  margin: 4px 0 0;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-heading p,
.page-heading p {
  margin: 7px 0 0;
  color: var(--muted);
}

.link-button {
  padding: 6px 0;
  border: 0;
  color: var(--green-800);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 10px;
}

.category-card {
  display: grid;
  min-height: 125px;
  place-items: center;
  gap: 4px;
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.category-card.is-active {
  border-color: #9bd3ad;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.category-card.is-active {
  background: var(--green-50);
}

.category-card > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 20px;
  background: var(--green-50);
  font-size: 32px;
}

.category-card strong {
  font-size: 12px;
  text-align: center;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 14px 32px rgba(14, 48, 28, 0.11);
  transform: translateY(-3px);
}

.product-card__visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: linear-gradient(145deg, #f0faee, #e1f2df);
  cursor: pointer;
}

.product-card__visual::after {
  position: absolute;
  width: 115px;
  height: 115px;
  right: -32px;
  bottom: -48px;
  border: 28px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.product-card__tag {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--green-950);
  background: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__tag:empty {
  display: none;
}

.product-card__emoji {
  position: relative;
  z-index: 1;
  font-size: 76px;
  filter: drop-shadow(0 16px 13px rgba(28, 90, 49, 0.16));
  transition: transform 180ms ease;
}

.product-card__emoji.has-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  font-size: 0;
  filter: none;
}

.product-card__emoji.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__visual .product-card__tag {
  z-index: 2;
}

.product-card:hover .product-card__emoji {
  transform: scale(1.06) rotate(-2deg);
}

.product-card__content {
  padding: 15px;
}

.product-card__category {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__name {
  display: block;
  width: 100%;
  min-height: 43px;
  margin-top: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}

.rating span {
  color: var(--warning);
  font-size: 13px;
}

.rating b {
  color: var(--ink);
}

.product-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
}

.product-card__bottom > div {
  display: grid;
}

.product-card__price {
  color: var(--green-900);
  font-size: 15px;
}

.product-card__unit {
  color: var(--muted);
  font-size: 9px;
}

.add-button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--green-800);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.add-button:hover {
  background: var(--green-950);
}

.empty-state {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 48px 20px;
  border: 1px dashed #bdd0c2;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.empty-state > div {
  max-width: 420px;
}

.empty-state__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 24px;
  background: var(--green-50);
  font-size: 32px;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 6px;
}

.empty-state p {
  margin: 0 0 18px;
  color: var(--muted);
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 5px 0 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.filter-chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--green-800);
  color: #fff;
  background: var(--green-800);
}

.bottom-nav {
  display: none;
}

.overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(8, 26, 16, 0.56);
  backdrop-filter: blur(3px);
}

.drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  display: grid;
  width: min(430px, 100%);
  height: 100dvh;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -24px 0 60px rgba(2, 25, 13, 0.22);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

.drawer__header,
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer__header h2,
.modal__header h2 {
  margin: 2px 0 0;
  font-size: 24px;
}

.close-button {
  flex: 0 0 auto;
  font-size: 25px;
}

.drawer__body {
  overflow: auto;
  padding: 18px 22px;
}

.drawer__footer {
  padding: 18px 22px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-line {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line__visual {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 18px;
  background: var(--green-50);
  font-size: 34px;
}

.cart-line__detail {
  display: grid;
  align-content: center;
}

.cart-line__detail strong {
  font-size: 12px;
}

.cart-line__detail small {
  color: var(--muted);
  font-size: 10px;
}

.cart-line__detail b {
  margin-top: 4px;
  color: var(--green-900);
  font-size: 12px;
}

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

.quantity button {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

.quantity span {
  min-width: 16px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.summary-row span {
  color: var(--muted);
  font-size: 12px;
}

.summary-row strong {
  font-size: 16px;
}

.modal {
  position: fixed;
  z-index: 60;
  top: 50%;
  left: 50%;
  display: none;
  width: min(760px, calc(100% - 32px));
  max-height: min(88dvh, 820px);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}

.modal.is-open {
  display: block;
}

.modal__body {
  max-height: calc(88dvh - 90px);
  overflow: auto;
  padding: 22px;
}

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

.field {
  display: grid;
  gap: 6px;
}

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

.field label,
.choice-group > label {
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: #fff;
}

.field textarea {
  min-height: 85px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(25, 170, 88, 0.1);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(245px, 0.75fr);
  gap: 22px;
}

.checkout-section + .checkout-section {
  margin-top: 22px;
}

.checkout-section h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

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

.choice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: var(--green-700);
  background: var(--green-50);
}

.choice input {
  accent-color: var(--green-700);
}

.choice span {
  display: grid;
}

.choice strong {
  font-size: 12px;
}

.choice small {
  color: var(--muted);
  font-size: 9px;
}

.choice b {
  color: var(--green-900);
  font-size: 11px;
}

.order-summary {
  position: sticky;
  top: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8faf7;
}

.order-summary h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.order-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 7px 0;
  font-size: 10px;
}

.order-summary__line span {
  color: var(--muted);
}

.order-summary__total {
  margin: 10px 0 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.order-summary__total strong {
  font-size: 18px;
}

.hint-box {
  margin: 12px 0;
  padding: 12px;
  border-radius: 12px;
  color: #72540d;
  background: #fff8df;
  font-size: 10px;
  white-space: pre-line;
}

.order-list,
.admin-list {
  display: grid;
  gap: 14px;
}

.order-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.order-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.order-card__head h3 {
  margin: 2px 0;
  font-size: 16px;
}

.order-card__head small {
  color: var(--muted);
  font-size: 10px;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

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

.timeline__step {
  position: relative;
  padding-top: 24px;
  color: #9aa69e;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.timeline__step::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #cfd8d1;
  box-shadow: 0 0 0 1px #cfd8d1;
  content: "";
  transform: translateX(-50%);
}

.timeline__step::after {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #dfe6e1;
  content: "";
}

.timeline__step:first-child::after {
  display: none;
}

.timeline__step.is-done,
.timeline__step.is-current {
  color: var(--green-900);
}

.timeline__step.is-done::before,
.timeline__step.is-current::before,
.timeline__step.is-done::after {
  background: var(--green-700);
}

.profile-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(120deg, var(--green-950), var(--green-700));
}

.profile-card h2 {
  margin: 5px 0;
  font-size: 25px;
}

.profile-card p {
  margin: 0;
  color: #d7ece0;
}

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

.account-tile {
  display: grid;
  min-height: 135px;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.account-tile:hover {
  border-color: var(--green-600);
}

.account-tile > span {
  font-size: 28px;
}

.account-tile strong {
  font-size: 13px;
}

.account-tile small {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.stat-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.stat-card span {
  color: var(--muted);
  font-size: 10px;
}

.stat-card strong {
  display: block;
  margin-top: 3px;
  color: var(--green-900);
  font-size: 23px;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.admin-table th,
.admin-table td {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: var(--muted);
  background: #f8faf8;
  font-size: 9px;
  text-transform: uppercase;
}

.stock-control {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stock-control button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

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

.toast {
  position: fixed;
  z-index: 80;
  bottom: 30px;
  left: 50%;
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 17px;
  border-radius: 12px;
  color: #fff;
  background: var(--green-950);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.success-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-700);
  font-size: 35px;
}

.success-content {
  max-width: 450px;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}

.success-content h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.success-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-detail-grid {
  display: grid;
}

.product-detail__visual {
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-50);
  font-size: 110px;
}

.product-detail__image:not(img) {
  font-size: 110px;
}

img.product-detail__image {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.auth-form {
  display: grid;
  max-width: 460px;
  gap: 14px;
  margin: 0 auto;
}

.auth-switch {
  justify-self: center;
}

.store-info-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.store-info-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.store-info-list > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--green-900);
  background: var(--green-50);
  font-weight: 800;
}

.store-info-list p {
  display: grid;
  margin: 0;
}

.store-info-list small {
  color: var(--muted);
  font-size: 9px;
}

.store-info-list strong {
  font-size: 11px;
}

.store-info-list--admin {
  grid-template-columns: repeat(2, 1fr);
}

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

.admin-section-head h3,
.admin-section-head p {
  margin: 0;
}

.admin-section-head p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.admin-product {
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-thumb {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--green-50);
  font-size: 20px;
}

img.admin-thumb__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-pill--off {
  color: #6e7770;
  background: #e9eeea;
}

.table-actions {
  display: flex;
  gap: 6px;
}

.table-actions button {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.table-actions button:hover {
  border-color: var(--green-700);
}

.table-actions .danger-action {
  color: var(--danger);
}

.product-upload {
  padding: 14px;
  border: 1px dashed #a9c6b2;
  border-radius: 15px;
  background: #f8fbf8;
}

.product-upload__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-upload__row > div:last-child {
  display: grid;
  gap: 7px;
}

.product-upload__row input[type="file"] {
  max-width: 100%;
  min-height: auto;
  padding: 6px;
  background: #fff;
}

.product-upload__row small {
  color: var(--muted);
  font-size: 9px;
}

.product-preview {
  display: grid;
  width: 110px;
  height: 110px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--green-50);
  font-size: 46px;
}

img.product-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image,
.product-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 13px;
  border-radius: 12px;
  background: var(--green-50);
}

.product-options input,
.remove-image input {
  min-height: auto;
  padding: 0;
  accent-color: var(--green-700);
}

.report-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.report-toolbar h3,
.report-toolbar p,
.report-panel h4 {
  margin: 0;
}

.report-toolbar p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.report-toolbar__actions,
.report-range {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.report-range .filter-chip {
  padding: 7px 10px;
  font-size: 9px;
}

.report-stats .stat-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}

.report-stats .report-money {
  font-size: 16px;
}

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

.report-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.report-panel--wide {
  grid-column: 1 / -1;
  overflow: hidden;
}

.report-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.report-panel__head h4 {
  font-size: 12px;
}

.report-panel__head small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.sales-chart {
  display: flex;
  min-height: 190px;
  align-items: flex-end;
  gap: 5px;
  overflow-x: auto;
  padding: 45px 4px 3px;
  border-bottom: 1px solid var(--line);
}

.sales-chart__column {
  position: relative;
  display: grid;
  min-width: 24px;
  flex: 1;
  justify-items: center;
  align-content: end;
  gap: 4px;
}

.sales-chart__value {
  position: absolute;
  bottom: calc(100% + 4px);
  max-width: 54px;
  overflow: hidden;
  color: var(--green-900);
  font-size: 6px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sales-chart__bar {
  width: min(22px, 76%);
  min-height: 2px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--green-600), var(--green-900));
}

.sales-chart__column small {
  min-height: 12px;
  color: var(--muted);
  font-size: 6px;
}

.report-breakdown {
  display: grid;
  gap: 9px;
}

.report-breakdown > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.report-breakdown > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.report-breakdown span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.report-breakdown i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: hsl(calc(140 + var(--tone) * 28) 55% 42%);
}

.top-products {
  display: grid;
}

.top-products > div {
  display: grid;
  grid-template-columns: 26px 36px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.top-products > div:last-child {
  border-bottom: 0;
}

.top-products__rank {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-900);
  background: var(--green-50);
  font-size: 9px;
  font-weight: 800;
}

.top-products__emoji {
  font-size: 22px;
}

.top-products p {
  display: grid;
  margin: 0;
}

.top-products p strong,
.top-products b {
  font-size: 10px;
}

.top-products p small {
  color: var(--muted);
  font-size: 8px;
}

.top-products b {
  color: var(--green-900);
}

.report-empty {
  padding: 28px;
  color: var(--muted);
  background: #f8faf8;
  font-size: 10px;
  text-align: center;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 0.75fr; }
  .hero__content { padding: 42px; }
  .produce-orbit { width: 240px; }
  .produce-orbit__main { font-size: 70px; }
  .category-row { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .shell { width: min(100% - 28px, 640px); }
  .announcement__inner { justify-content: center; text-align: center; }
  .announcement .text-button { display: none; }
  .header__inner { grid-template-columns: 1fr auto; min-height: 68px; gap: 14px; }
  .search--desktop,
  .location-button,
  .account-button { display: none; }
  .mobile-search-wrap { display: block; }
  .search { height: 44px; }
  .page { padding-top: 18px; padding-bottom: 30px; }
  .hero { min-height: auto; grid-template-columns: 1fr; border-radius: 23px; }
  .hero__content { padding: 32px 25px 24px; }
  .hero h1 { margin-top: 15px; font-size: clamp(32px, 10vw, 44px); }
  .hero p { margin-bottom: 20px; font-size: 13px; }
  .hero__visual { min-height: 210px; overflow: hidden; }
  .produce-orbit { width: 210px; margin-bottom: -45px; }
  .produce-orbit__main { font-size: 62px; }
  .produce-orbit span:not(.produce-orbit__main) { width: 48px; height: 48px; border-radius: 15px; font-size: 24px; }
  .trust-strip { margin: 12px 0 28px; }
  .trust-item { min-height: 68px; justify-content: flex-start; padding: 11px; }
  .trust-item > span { width: 36px; height: 36px; border-radius: 11px; font-size: 18px; }
  .section { margin-top: 28px; }
  .section-heading { align-items: flex-start; }
  .category-row { display: flex; width: calc(100% + 14px); overflow-x: auto; padding: 3px 14px 10px 0; scrollbar-width: none; }
  .category-row::-webkit-scrollbar { display: none; }
  .category-card { min-width: 105px; min-height: 112px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card__visual { min-height: 150px; }
  .product-card__emoji { font-size: 62px; }
  .product-card__content { padding: 12px; }
  .product-card__name { min-height: 40px; font-size: 12px; }
  .product-card__price { font-size: 13px; }
  .bottom-nav {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }
  .bottom-nav__item { display: grid; place-items: center; gap: 2px; padding: 4px; border: 0; color: #849188; background: transparent; cursor: pointer; }
  .bottom-nav__item span { font-size: 21px; line-height: 1; }
  .bottom-nav__item small { font-size: 9px; font-weight: 700; }
  .bottom-nav__item.is-active { color: var(--green-800); }
  .modal { width: calc(100% - 20px); max-height: 92dvh; border-radius: 20px; }
  .modal__body { max-height: calc(92dvh - 82px); padding: 17px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .account-grid { grid-template-columns: 1fr; }
  .account-tile { min-height: 105px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card .button { justify-self: start; }
  .toast { bottom: calc(83px + env(safe-area-inset-bottom)); }
  .product-detail-grid { grid-template-columns: 1fr !important; }
  .product-detail-grid > div:first-child { min-height: 190px !important; font-size: 84px !important; }
  .product-detail__visual { min-height: 190px; }
  img.product-detail__image { height: 220px; }
  .store-info-list--admin { grid-template-columns: 1fr; }
  .admin-section-head { align-items: flex-start; flex-direction: column; }
  .product-upload__row { align-items: flex-start; flex-direction: column; }
  .product-preview { width: 100%; height: 180px; }
  .report-toolbar { flex-direction: column; }
  .report-toolbar__actions { align-items: flex-start; justify-content: flex-start; }
  .report-grid { grid-template-columns: 1fr; }
  .report-panel--wide { grid-column: auto; }
  .sales-chart__column { min-width: 28px; }
}

@media (max-width: 420px) {
  .brand__copy strong { font-size: 16px; }
  .hero__actions .button { width: 100%; }
  .trust-item small { display: none; }
  .trust-item strong { font-size: 11px; }
  .product-card__visual { min-height: 135px; }
  .product-card__emoji { font-size: 56px; }
  .rating small { display: none; }
  .timeline__step { font-size: 8px; }
}

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