:root {
  --ink: #17211b;
  --muted: #5e6b62;
  --paper: #fffaf4;
  --surface: #ffffff;
  --sage: #315640;
  --sage-soft: #dce9df;
  --coral: #e0775f;
  --citrus: #f5bd45;
  --plum: #573b5e;
  --line: #ded7cc;
  --shadow: 0 20px 50px rgba(23, 33, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.site-booting body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(220, 233, 223, 0.94)),
    var(--paper);
  color: var(--sage);
  content: "Five Seasons";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 72px);
  letter-spacing: 0;
  opacity: 1;
  transition: opacity 260ms ease, visibility 260ms ease;
}

html.site-booting body::after {
  position: fixed;
  top: calc(50% + 58px);
  left: 50%;
  z-index: 1000;
  width: 68px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sage), var(--coral), var(--citrus));
  content: "";
  animation: loader-pulse 900ms ease-in-out infinite alternate;
}

html.site-ready body {
  animation: page-reveal 360ms ease both;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.product-card,
.poster-product-card,
.flower-card,
.add-on-card,
.occasion-card,
.guide-card,
.care-problem-card,
.season-care-list article,
.delivery-card,
.review-grid article,
.plant-care-deep-dive article,
.loyalty-card,
.flower-taste-card,
.purchase-card,
.reminder-card,
.quick-links a,
.button,
.icon-button,
.header-contact {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.product-card:hover,
.poster-product-card:hover,
.flower-card:hover,
.add-on-card:hover,
.occasion-card:hover,
.guide-card:hover,
.care-problem-card:hover,
.season-care-list article:hover,
.delivery-card:hover,
.review-grid article:hover,
.plant-care-deep-dive article:hover,
.loyalty-card:hover,
.flower-taste-card:hover,
.purchase-card:hover,
.reminder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(23, 33, 27, 0.12);
  border-color: rgba(49, 86, 64, 0.22);
}

.product-card img,
.poster-product-card img,
.flower-card img,
.add-on-card img,
.guide-card img,
.product-detail__image,
.care-hero-collage img {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.product-card:hover img,
.poster-product-card:hover img,
.flower-card:hover img,
.add-on-card:hover img,
.guide-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.button:hover,
.icon-button:hover,
.header-contact:hover,
.quick-links a:hover {
  transform: translateY(-2px);
}

.button:active,
.icon-button:active,
.header-contact:active,
.quick-links a:active {
  transform: translateY(0) scale(0.98);
}

.brand-mark {
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.34), transparent 70%);
  content: "";
  transform: translateX(-130%) rotate(18deg);
}

.brand:hover .brand-mark::after {
  animation: brand-glint 780ms ease;
}

.care-hero-collage img,
.hero-visual img,
.care-media img {
  animation: floral-float 6.5s ease-in-out infinite;
}

.care-hero-collage img:nth-child(2n),
.hero-visual img:nth-child(2n),
.care-media img:nth-child(2n) {
  animation-delay: -2.1s;
}

.section-heading h2,
.page-hero h1,
.product-detail__copy h1 {
  text-wrap: balance;
}

.section-heading h2::after,
.page-hero h1::after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sage), var(--coral), var(--citrus));
  content: "";
  transform-origin: left;
  animation: line-grow 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes page-reveal {
  from {
    opacity: 0.86;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-pulse {
  from {
    opacity: 0.38;
    transform: translateX(-50%) scaleX(0.48);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes brand-glint {
  from {
    transform: translateX(-130%) rotate(18deg);
  }
  to {
    transform: translateX(130%) rotate(18deg);
  }
}

@keyframes floral-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.012);
  }
}

@keyframes line-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

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

  html.site-ready body {
    animation: none;
  }

  html.site-booting body::after {
    animation: none;
  }

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

body.cart-open {
  overflow: hidden;
}

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

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

.promo-bar {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--ink);
  color: #ffffff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 750;
}

.promo-bar a {
  color: var(--citrus);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 34px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(49, 86, 64, 0.12);
  box-shadow: 0 8px 28px rgba(23, 33, 27, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--sage);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(49, 86, 64, 0.18);
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 124px;
}

.brand-copy strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 22px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.main-nav > a,
.nav-dropdown__toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown.active .nav-dropdown__toggle,
.nav-dropdown__toggle:hover {
  color: var(--sage);
  border-bottom-color: var(--sage);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  gap: 5px;
}

.nav-dropdown__toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.catalog-open .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: none;
  width: 310px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(49, 86, 64, 0.15);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 54px rgba(23, 33, 27, 0.16);
  padding: 8px;
}

.catalog-open .nav-dropdown__menu {
  display: grid;
}

.nav-dropdown__menu a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 6px;
  padding: 10px;
}

.nav-dropdown__menu a:hover {
  background: var(--sage-soft);
}

.nav-dropdown__menu svg {
  width: 19px;
  height: 19px;
  color: var(--sage);
}

.nav-dropdown__menu span {
  display: grid;
  gap: 2px;
}

.nav-dropdown__menu strong {
  color: var(--ink);
  font-size: 14px;
}

.nav-dropdown__menu small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

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

.header-phone,
.header-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 14px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
}

.header-phone svg,
.header-contact svg {
  width: 17px;
  height: 17px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.icon-button {
  display: inline-grid;
  position: relative;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-button.menu-toggle {
  display: none;
}

.icon-button:hover {
  border-color: var(--sage);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 152px clamp(18px, 6vw, 72px) 74px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 24, 18, 0.2), transparent 58%),
    url("./assets/hero/five-seasons-hero-v2.png") center/cover;
}

.hero-content {
  position: relative;
  max-width: 730px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--citrus);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-content p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 28px 0 0;
}

.hero-stats div {
  border-left: 2px solid rgba(245, 189, 69, 0.85);
  padding-left: 12px;
}

.hero-stats dt {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.primary {
  background: var(--sage);
  color: #ffffff;
}

.hero .button.primary {
  background: #ffffff;
  color: var(--sage);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.button.ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--sage);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  color: var(--sage);
  font-weight: 800;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links svg {
  width: 22px;
  height: 22px;
}

.section-band,
.shop,
.delivery,
.occasions,
.reviews,
.plant-guide,
.site-footer {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
}

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

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

.section-heading p,
.care-copy p,
.delivery p,
.shop-header p {
  color: var(--muted);
  line-height: 1.65;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.occasions {
  background: var(--surface);
}

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

.occasion-grid a {
  display: grid;
  min-height: 132px;
  align-content: end;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(220, 233, 223, 0.92), rgba(255, 255, 255, 0.92));
  padding: 18px;
}

.occasion-grid a:hover {
  border-color: var(--sage);
}

.occasion-grid span {
  color: var(--sage);
  font-size: 21px;
  font-weight: 900;
}

.occasion-grid small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

.finder-option {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(49, 86, 64, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--sage);
  font-weight: 850;
  cursor: pointer;
}

.finder-option.active,
.finder-option:hover {
  background: var(--sage);
  color: #ffffff;
}

.shop {
  background: var(--paper);
}

.shop-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.shop-tools {
  display: grid;
  gap: 10px;
}

.search-box {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0 16px;
}

.search-box input,
.sort-box select,
.cart-field input,
.cart-field textarea,
.newsletter input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.sort-box {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0 14px;
}

.sort-box select {
  appearance: none;
  cursor: pointer;
}

.filter-summary {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage);
  padding: 0 13px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 850;
}

.storefront-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

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

.category-tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--sage);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 850;
}

.category-tab.active,
.category-tab:hover {
  border-color: var(--sage);
  background: var(--sage);
  color: #ffffff;
}

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

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

.flower-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.flower-card > :not(.flower-card__image) {
  margin-inline: 16px;
}

.flower-card > :last-child {
  margin-bottom: 16px;
}

.flower-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sage-soft);
}

.flower-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.flower-card--linked {
  align-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.flower-card--linked:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 86, 64, 0.38);
  box-shadow: 0 14px 28px rgba(23, 33, 27, 0.08);
}

.flower-card--linked .details-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flower-card--linked .details-link svg,
.product-card .details-link svg {
  width: 15px;
  height: 15px;
}

.flower-card h3 {
  margin: 10px 0 8px;
  color: var(--sage);
  font-size: 19px;
  line-height: 1.2;
}

.flower-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.flower-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.flower-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.flower-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.flower-card dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.poster-showcase-section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(23, 33, 27, 0.1);
}

.product-image-link {
  display: block;
  background: var(--sage-soft);
}

.product-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  background: var(--sage-soft);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.tag-ok {
  background: #dff0df;
  color: #245334;
}

.tag-warn {
  background: #fff0cf;
  color: #735018;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-row h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.price {
  white-space: nowrap;
  color: var(--plum);
  font-weight: 900;
}

.product-body p {
  min-height: 48px;
  color: var(--muted);
  line-height: 1.45;
}

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

.product-notes div {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px;
}

.product-notes dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-notes dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.add-button {
  width: 100%;
}

.details-link {
  color: var(--sage);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.care {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.care-media {
  min-height: 520px;
  border-radius: 8px;
  background: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1300&q=84") center/cover;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sage);
  font-weight: 800;
}

.delivery {
  background: var(--surface);
}

.plant-guide {
  background: var(--surface);
}

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

.guide-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 12px;
}

.guide-card img {
  width: 118px;
  height: 100%;
  min-height: 170px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--sage-soft);
}

.guide-card h3 {
  margin: 0 0 10px;
  color: var(--sage);
}

.guide-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.guide-card strong {
  color: var(--ink);
}

.guide-card--expanded {
  min-height: 100%;
}

.guide-card--expanded img {
  min-height: 230px;
}

.guide-card--expanded .product-meta {
  margin: 0 0 10px;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

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

.season-care-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 6vw, 72px);
  background: var(--sage-soft);
}

.season-care-panel h2 {
  color: var(--sage);
}

.season-care-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.season-care-list article {
  border: 1px solid rgba(47, 94, 69, 0.16);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.season-care-list h3 {
  margin: 0 0 10px;
  color: var(--sage);
  font-size: 20px;
}

.season-care-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plant-care-deep-dive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 6vw, 72px) clamp(48px, 6vw, 82px);
}

.plant-care-deep-dive article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.plant-care-deep-dive h2 {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 28px;
}

.plant-care-deep-dive p,
.plant-care-deep-dive li {
  color: var(--muted);
  line-height: 1.55;
}

.plant-care-deep-dive ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.reviews {
  background: var(--paper);
}

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

.review-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.review-grid p {
  min-height: 112px;
  color: var(--muted);
  line-height: 1.6;
}

.stars {
  margin-bottom: 14px;
  color: var(--citrus);
  font-weight: 900;
}

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

.delivery article {
  border-left: 4px solid var(--coral);
  padding: 8px 22px 8px 18px;
}

.delivery svg {
  color: var(--sage);
}

.faq-list {
  display: grid;
  max-width: 880px;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(49, 86, 64, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--sage);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-drawer {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  justify-content: end;
  background: rgba(23, 33, 27, 0.42);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: grid;
  width: min(560px, 100%);
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-header,
.cart-footer {
  max-height: min(72vh, 760px);
  overflow: auto;
  padding: 18px;
  background: var(--surface);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-size: 30px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quantity-controls {
  display: inline-grid;
  grid-template-columns: 28px 28px 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.quantity-controls button {
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--sage-soft);
  color: var(--sage);
  cursor: pointer;
  font-weight: 900;
}

.quantity-controls span {
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
}

.checkout-actions {
  position: sticky;
  bottom: -18px;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), var(--surface) 18%);
  margin: 4px -18px -18px;
  padding: 14px 18px 18px;
  box-shadow: 0 -16px 28px rgba(23, 33, 27, 0.08);
}

.cart-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.cart-field input,
.cart-field textarea,
.cart-field select {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 11px 12px;
  resize: vertical;
}

.field-hint {
  color: rgba(95, 102, 98, 0.86);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.cart-field input:invalid,
.cart-field textarea:invalid,
.cart-field select:invalid {
  border-color: rgba(138, 33, 64, 0.45);
}

.cart-field select {
  width: 100%;
  color: var(--ink);
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  color: var(--sage);
  font-weight: 950;
}

.checkout-step span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #ffffff;
  font-size: 12px;
}

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

.bonus-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 8px;
  background: var(--sage-soft);
  color: var(--sage);
  padding: 12px;
  font-size: 13px;
  font-weight: 850;
}

.bonus-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--sage);
}

.checkout-summary {
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 14px;
  padding: 12px 0;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary dt,
.checkout-summary dd {
  margin: 0;
}

.checkout-summary dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.checkout-summary dd {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.checkout-button {
  width: 100%;
}

.checkout-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.checkout-result {
  border: 1px solid rgba(49, 86, 64, 0.22);
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  background: #f4fbf5;
  margin-top: 12px;
  padding: 12px;
}

.checkout-result strong {
  display: block;
  color: var(--sage);
  margin-bottom: 6px;
}

.checkout-result p,
.checkout-result small {
  display: block;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 28px;
  background: var(--ink);
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .brand {
  color: #ffffff;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.newsletter {
  display: grid;
  align-content: start;
  gap: 12px;
}

.newsletter label {
  font-size: 18px;
  font-weight: 900;
}

.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 12px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.detail-page,
.care-page {
  padding-top: 110px;
  background: var(--paper);
}

.breadcrumbs {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 0 clamp(18px, 6vw, 72px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

.breadcrumbs svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.breadcrumbs span {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
}

.page-hero {
  padding: clamp(72px, 8vw, 112px) clamp(18px, 6vw, 72px) clamp(42px, 6vw, 70px);
  background: var(--sage-soft);
}

.page-hero h1 {
  max-width: 980px;
  color: var(--sage);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.care-page .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.care-hero-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 86px;
  gap: 10px;
  min-height: 360px;
}

.care-hero-collage img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(35, 54, 43, 0.12);
}

.care-hero-collage img:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1 / span 3;
}

.care-hero-collage img:nth-child(2) {
  grid-column: 4 / span 3;
  grid-row: 2 / span 3;
}

.care-hero-collage img:nth-child(3) {
  grid-column: 1 / span 2;
  grid-row: 4 / span 2;
}

.care-hero-collage img:nth-child(4) {
  grid-column: 3 / span 2;
  grid-row: 4 / span 2;
}

.care-hero-collage img:nth-child(5) {
  grid-column: 5 / span 2;
  grid-row: 1 / span 1;
}

.care-assistant {
  background: var(--paper);
}

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

.care-problem-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.care-problem-card h3 {
  margin: 0 0 8px;
  color: var(--sage);
  font-size: 20px;
}

.care-problem-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.care-problem-card small {
  color: var(--ink);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(46px, 6vw, 82px) clamp(18px, 6vw, 72px);
}

.product-detail__image {
  width: 100%;
  max-height: 720px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-detail__copy h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.product-detail__copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.detail-price {
  color: var(--plum) !important;
  font-size: 30px !important;
  font-weight: 950;
}

.product-kicker {
  margin: 0 0 12px !important;
  color: var(--coral) !important;
  font-size: 13px !important;
  font-weight: 900;
  text-transform: uppercase;
}

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

.detail-specs div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.detail-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 0 clamp(18px, 6vw, 72px);
}

.service-strip > div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 104px;
  border-right: 1px solid var(--line);
  padding: 18px clamp(12px, 2vw, 28px);
}

.service-strip > div:first-child {
  padding-left: 0;
}

.service-strip > div:last-child {
  border-right: 0;
}

.service-strip svg {
  width: 24px;
  height: 24px;
  color: var(--sage);
}

.service-strip span {
  display: grid;
  gap: 3px;
}

.service-strip strong {
  color: var(--ink);
  font-size: 14px;
}

.service-strip small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.related-products {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.poster-product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(46px, 6vw, 82px) clamp(18px, 6vw, 72px);
}

.poster-product-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #e7d9e8;
  color: var(--plum);
}

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

.poster-product-visual::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(23, 33, 27, 0.08), rgba(23, 33, 27, 0.34));
  opacity: 1;
  z-index: 1;
}

.poster-product-visual--plant {
  background: var(--sage-soft);
  color: var(--sage);
}

.poster-product-visual::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.16;
  z-index: 2;
}

.poster-product-visual::after {
  width: 410px;
  height: 410px;
}

.poster-product-visual > svg {
  position: relative;
  z-index: 3;
  color: #ffffff;
  width: 92px;
  height: 92px;
  stroke-width: 1.2;
}

.poster-product-visual > span {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-product-visual > strong {
  position: absolute;
  right: 20px;
  bottom: -36px;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 240px;
  line-height: 1;
  opacity: 0.09;
  z-index: 3;
}

.availability-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-left: 3px solid var(--citrus);
  background: #fff8e7;
  padding: 12px 14px;
  margin: 20px 0;
  color: #665024;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.availability-note svg {
  width: 19px;
  height: 19px;
}

.checkout-info {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 8px;
  background: var(--sage-soft);
  padding: 12px 14px;
  color: var(--sage);
}

.checkout-info svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.checkout-info p {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.site-toast {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: flex;
  max-width: min(380px, calc(100vw - 36px));
  align-items: center;
  gap: 10px;
  transform: translateY(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #ffffff;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.site-toast svg {
  width: 20px;
  height: 20px;
  color: var(--citrus);
}

.site-toast a {
  color: var(--citrus);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.poster-panel,
.availability-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.poster-panel h2,
.availability-panel h2 {
  color: var(--sage);
}

.poster-panel p,
.availability-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.ingredient-list,
.availability-list {
  display: grid;
  gap: 10px;
}

.ingredient-list article,
.availability-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px 72px;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-left-width: 5px;
  border-radius: 8px;
  background: var(--paper);
  padding: 12px;
}

.availability-list article {
  grid-template-columns: 32px minmax(0, 1fr);
}

.availability-list svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
}

.ingredient-ok {
  border-left-color: var(--sage) !important;
}

.ingredient-warn {
  border-left-color: var(--citrus) !important;
}

.ingredient-list strong,
.availability-list strong {
  display: block;
  color: var(--ink);
}

.ingredient-list span,
.ingredient-list small,
.availability-list span,
.availability-list small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.ingredient-list b {
  color: var(--sage);
  font-size: 20px;
}

.add-ons-panel {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.add-on-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.add-on-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--sage-soft);
}

.add-on-card div {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.add-on-card h3 {
  margin: 0;
  color: var(--sage);
}

.add-on-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.add-on-card strong {
  color: var(--plum);
  font-size: 18px;
}

.account-page {
  padding-top: 110px;
  background: var(--paper);
}

.admin-page {
  padding-top: 110px;
  background: var(--paper);
}

.status-page {
  padding-top: 110px;
  background: var(--paper);
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 72px);
}

.status-panel {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 72px);
}

.status-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.status-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.status-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 12px;
}

.status-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
}

.status-card h2 {
  margin: 0;
  color: var(--sage);
}

.status-card p {
  color: var(--muted);
  line-height: 1.6;
}

.status-card .status-note {
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 8px;
  background: var(--sage-soft);
  color: var(--sage);
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

.status-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.status-card dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px;
}

.status-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.status-card small {
  color: var(--muted);
  font-weight: 800;
}

.status-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 2px;
}

.status-step {
  position: relative;
  min-width: 106px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px;
}

.status-step span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 8px;
}

.status-step strong,
.status-step small {
  display: block;
}

.status-step strong {
  color: var(--ink);
  font-size: 13px;
}

.status-step small {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.35;
}

.status-step.done,
.status-step.active {
  border-color: rgba(49, 86, 64, 0.28);
  background: var(--sage-soft);
}

.status-step.done span,
.status-step.active span {
  background: var(--sage);
  color: #ffffff;
}

.status-step.active {
  box-shadow: inset 0 0 0 1px rgba(49, 86, 64, 0.22);
}

.status-timeline--cancelled {
  grid-template-columns: minmax(180px, 260px);
}

.status-timeline--cancelled .status-step.active {
  border-color: rgba(130, 35, 62, 0.28);
  background: rgba(130, 35, 62, 0.08);
}

.status-timeline--cancelled .status-step.active span {
  background: var(--plum);
}

.admin-secret-form {
  display: grid;
  grid-template-columns: minmax(220px, 420px) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.admin-secret-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.admin-secret-form input,
.admin-order-card select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 12px;
}

.admin-orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
}

.admin-filter-field {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-filter-field input,
.admin-filter-field select {
  min-height: 42px;
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 10px;
}

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

.admin-order-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
}

.admin-order-card__head,
.admin-order-meta,
.admin-order-items {
  display: grid;
  gap: 10px;
}

.admin-order-card__head {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  align-items: start;
}

.admin-order-card__head small {
  color: var(--muted);
  font-weight: 800;
}

.admin-order-card__head h2 {
  margin: 3px 0 0;
  color: var(--sage);
  font-size: 30px;
}

.admin-order-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.admin-order-meta div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px;
}

.admin-order-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-order-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.admin-order-items div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.admin-order-items span,
.admin-note {
  color: var(--muted);
}

.admin-note {
  margin: 0;
  line-height: 1.5;
}

.admin-payment-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 8px;
  background: var(--sage-soft);
  padding: 10px;
}

.admin-payment-row span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 850;
}

.admin-products-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 16px;
  align-items: start;
}

.admin-products-list {
  display: grid;
  max-height: 760px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.admin-product-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.admin-product-row:hover,
.admin-product-row.active {
  background: var(--sage-soft);
}

.admin-product-row img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
}

.admin-product-row strong,
.admin-product-row small {
  display: block;
}

.admin-product-row strong {
  color: var(--sage);
  font-size: 14px;
  line-height: 1.25;
}

.admin-product-row small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  margin-top: 3px;
}

.admin-product-row__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.admin-product-row__tags em {
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 999px;
  background: var(--surface);
  color: var(--sage);
  padding: 3px 7px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.admin-product-editor {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
}

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

.admin-product-editor__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.admin-product-editor__head small {
  color: var(--muted);
  font-weight: 850;
}

.admin-product-editor__head h2 {
  margin: 4px 0 0;
  color: var(--sage);
  font-size: 26px;
  line-height: 1.15;
}

.admin-product-editor label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.admin-product-editor input,
.admin-product-editor select,
.admin-product-editor textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
}

.admin-product-editor input,
.admin-product-editor select {
  min-height: 44px;
}

.admin-product-preview {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(49, 86, 64, 0.18);
  border-radius: 8px;
  background: var(--paper);
  padding: 12px;
}

.admin-product-preview img {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.admin-product-preview h3 {
  margin: 8px 0 4px;
  color: var(--sage);
  font-size: 20px;
}

.admin-product-preview p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  padding: clamp(72px, 8vw, 112px) clamp(18px, 6vw, 72px) clamp(42px, 6vw, 70px);
  background:
    linear-gradient(90deg, rgba(23, 33, 27, 0.72), rgba(23, 33, 27, 0.2)),
    url("./assets/hero/five-seasons-hero-v2.png") center/cover;
  color: #ffffff;
}

.account-hero h1 {
  margin-bottom: 16px;
}

.account-hero p:not(.eyebrow),
.phone-login small {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.phone-login {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.phone-login label {
  font-weight: 900;
}

.phone-login div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.phone-login input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0 12px;
}

.account-dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 28px clamp(18px, 6vw, 72px);
}

.account-dashboard-bar h2,
.account-dashboard-bar p {
  margin: 0;
}

.account-dashboard-bar small {
  display: block;
  color: var(--muted);
  font-weight: 750;
  margin-top: 4px;
}

.account-loading [data-account-content] {
  opacity: 0.58;
  pointer-events: none;
}

.account-loading .loyalty-card,
.account-loading .flower-taste-card,
.account-loading .purchase-list,
.account-loading .reminder-list {
  position: relative;
}

.account-loading .loyalty-card::after,
.account-loading .flower-taste-card::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 244, 0.64);
  color: var(--sage);
  content: "Оновлюємо Poster";
  font-weight: 900;
}

.account-grid,
.account-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 72px);
}

.account-sync-status {
  display: block;
  color: var(--sage);
  font-weight: 850;
  margin-top: 8px;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: 18px;
}

.loyalty-card,
.flower-taste-card,
.reminder-form,
.reminder-card,
.purchase-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
}

.loyalty-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 189, 69, 0.34), transparent 34%),
    linear-gradient(145deg, var(--sage), #203a2b);
  color: #ffffff;
  padding: 24px;
}

.loyalty-card__top,
.loyalty-stats,
.purchase-card,
.reminder-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.loyalty-card__top span,
.loyalty-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.loyalty-card__top strong {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
}

.loyalty-card__name h2 {
  margin-bottom: 6px;
  color: #ffffff;
}

.loyalty-card__name p,
.loyalty-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.loyalty-stats {
  align-items: stretch;
}

.loyalty-stats div {
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 12px;
}

.loyalty-stats span {
  display: block;
  font-size: 24px;
  font-weight: 950;
}

.loyalty-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.loyalty-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--citrus);
}

.flower-taste-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.flower-taste-card h2 {
  color: var(--sage);
}

.flower-taste-card p {
  color: var(--muted);
  line-height: 1.6;
}

.flower-orbit {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.flower-orbit span {
  display: grid;
  width: var(--size);
  height: var(--size);
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.taste-list,
.purchase-list,
.reminder-list {
  display: grid;
  gap: 12px;
}

.taste-list article {
  display: grid;
  gap: 7px;
}

.taste-list strong,
.purchase-card h3,
.reminder-card h3 {
  color: var(--sage);
}

.taste-list div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage-soft);
}

.taste-list div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.taste-list small,
.purchase-card small,
.purchase-card span,
.reminder-card small,
.reminder-card p {
  color: var(--muted);
}

.purchase-card {
  padding: 18px;
}

.purchase-card h3,
.reminder-card h3 {
  margin: 4px 0 0;
}

.purchase-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(49, 86, 64, 0.2);
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage) !important;
  font-size: 12px;
  font-weight: 850;
  margin-top: 8px;
  padding: 4px 9px;
}

.purchase-card strong {
  display: block;
  color: var(--plum);
  font-size: 19px;
  text-align: right;
}

.reminder-section {
  background: var(--sage-soft);
}

.reminder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
}

.reminder-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.reminder-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.reminder-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 12px;
}

.reminder-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  padding: 16px;
}

.reminder-card > svg {
  width: 22px;
  height: 22px;
  color: var(--coral);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .main-nav {
    display: none;
  }

  .header-contact span {
    display: none;
  }

  .header-contact {
    width: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

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

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 110px);
    overflow: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 22px 40px rgba(23, 33, 27, 0.14);
    padding: 10px clamp(16px, 5vw, 52px) 18px;
  }

  .mobile-open .mobile-nav {
    display: grid;
  }

  .mobile-nav a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid rgba(222, 215, 204, 0.7);
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-nav svg {
    width: 18px;
    height: 18px;
    color: var(--sage);
  }

  .quick-links,
  .finder-grid,
  .product-grid,
  .flower-grid,
  .add-ons-grid,
  .delivery-grid,
  .occasion-grid,
  .review-grid,
  .guide-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .guide-card img {
    width: 100px;
  }

  .shop-header,
  .care-page .page-hero,
  .care,
  .care-problem-grid,
  .season-care-panel,
  .plant-care-deep-dive,
  .product-detail,
  .poster-product-detail,
  .poster-panel,
  .availability-panel,
  .account-hero,
  .account-grid,
  .account-dashboard-bar,
  .reminder-layout,
  .admin-secret-form,
  .admin-products-layout,
  .admin-product-preview,
  .admin-order-card__head,
  .admin-order-meta,
  .status-panel,
  .status-card dl {
    grid-template-columns: 1fr;
  }

  .phone-login div {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-dashboard-bar {
    display: grid;
  }

  .poster-product-visual {
    min-height: 420px;
  }

  .care-media {
    min-height: 360px;
  }

  .care-hero-collage {
    min-height: 320px;
  }

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

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

  .admin-product-editor {
    position: static;
  }
}

@media (max-width: 620px) {
  .promo-bar {
    position: static;
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .site-header {
    position: sticky;
    top: 0;
    padding: 10px 14px;
  }

  .header-phone span,
  .header-contact {
    display: none;
  }

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

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    display: none;
  }

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

  .hero {
    min-height: 88vh;
    padding: 84px 18px 48px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .quick-links,
  .finder-grid,
  .product-grid,
  .flower-grid,
  .add-ons-grid,
  .delivery-grid,
  .occasion-grid,
  .review-grid,
  .care-problem-grid,
  .season-care-list,
  .plant-care-deep-dive,
  .guide-grid,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .quick-links {
    display: grid;
  }

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

  .admin-product-row__tags {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .admin-products-list {
    max-height: none;
  }

  .quick-links a {
    min-height: 72px;
    justify-content: start;
    padding: 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }

  .product-notes,
  .newsletter div,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
  }

  .cart-footer {
    max-height: 70vh;
    padding-bottom: 0;
  }

  .checkout-actions {
    bottom: 0;
    margin-bottom: 0;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .guide-card img {
    width: 100%;
    min-height: 220px;
  }

  .care-hero-collage {
    grid-auto-rows: 68px;
    min-height: 280px;
  }

  .detail-page,
  .care-page {
    padding-top: 0;
  }

  .detail-specs,
  .ingredient-list article,
  .availability-list article,
  .loyalty-card__top,
  .loyalty-stats,
  .purchase-card,
  .reminder-card {
    grid-template-columns: 1fr;
  }

  .loyalty-card__top,
  .purchase-card,
  .reminder-card {
    align-items: start;
  }

  .loyalty-card__top,
  .purchase-card {
    flex-direction: column;
  }

  .account-page {
    padding-top: 0;
  }

  .account-hero {
    padding-top: 46px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip > div,
  .service-strip > div:first-child {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .service-strip > div:last-child {
    border-bottom: 0;
  }

  .poster-product-visual {
    min-height: 340px;
  }

  .poster-product-visual > strong {
    font-size: 180px;
  }
}
