﻿:root {
  --forest-900: #0a3b27;
  --forest-800: #0f4a31;
  --forest-700: #1f6544;
  --sage-500: #9fc19a;
  --sage-300: #d9e7d4;
  --sage-200: #ebf2e8;
  --sand-100: #fbf8f3;
  --sand-200: #f3ede4;
  --sand-300: #e6dccd;
  --sand-400: #cfbfa8;
  --text-900: #183427;
  --text-800: #2c4537;
  --text-700: #52645b;
  --text-500: #666666;
  --text-400: #999999;
  --white: #ffffff;
  --border: rgba(10, 59, 39, 0.1);
  /* Scale tokens referenced across the stylesheet that were previously only
     supplied via inline var() fallbacks (and broken where no fallback was
     given, e.g. --forest on the active admin tab / primary buttons). Values
     match the existing fallbacks so rendering is unchanged where a fallback
     already existed, and fixed where one was missing. */
  --forest: #123f2e;
  --forest-600: #2c7d56;
  --forest-100: #d4eddf;
  --forest-50: #edf7f1;
  --sand-50: #faf9f7;
  --border-100: #ece9e2;
  --border-200: #e0ddd6;
  --shadow-sm: 0 12px 35px rgba(17, 47, 32, 0.06);
  --shadow-md: 0 20px 55px rgba(17, 47, 32, 0.09);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --content-max: 1860px;
  --hero-max: 1860px;
  --vw: max(1vw, 15px);
  --content-gutter: clamp(13rem, calc(2 * var(--vw) + 12rem), 14rem);
  --header-gutter: clamp(1rem, calc(2 * var(--vw)), 2rem);
  --hero-gutter: clamp(1rem, calc(2 * var(--vw)), 2rem);
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

.button--small {
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
}

.button--ghost {
  background: transparent;
  border: 1px dashed rgba(18, 63, 46, 0.2);
  color: var(--forest);
  box-shadow: none;
}

.button--danger {
  background: rgba(150, 40, 38, 0.08);
  border: 1px solid rgba(150, 40, 38, 0.22);
  color: #8f2624;
  box-shadow: none;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: #f5f1e8;
}

.admin-sidebar {
  background: #123f2e;
  color: #f6f1e8;
  padding: 2rem 1.35rem;
  display: grid;
  align-content: start;
  gap: 1.4rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar__brand,
.admin-sidebar__exit {
  color: inherit;
  text-decoration: none;
}

.admin-sidebar__brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.3;
}

.admin-sidebar__eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(246, 241, 232, 0.74);
}

.admin-sidebar__nav {
  display: grid;
  gap: 0.45rem;
}

.admin-sidebar__link {
  color: rgba(246, 241, 232, 0.82);
  text-decoration: none;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  transition: background-color 180ms ease, color 180ms ease;
}

.admin-sidebar__link.is-active,
.admin-sidebar__link:hover,
.admin-sidebar__exit:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.admin-sidebar__exit {
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-main {
  min-width: 0;
  padding: 2rem;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.admin-topbar h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, calc(2.6 * var(--vw)), 2.7rem);
  line-height: 1.08;
  color: var(--forest);
}

.admin-topbar__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.admin-content {
  display: grid;
  gap: 1.4rem;
}

.admin-section,
.admin-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(41, 61, 43, 0.08);
}

.admin-section {
  padding: 1.4rem;
}

.admin-panel {
  padding: 1.25rem;
}

.admin-section__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-section__header h2 {
  margin: 0;
  color: var(--forest);
}

.admin-section__header p {
  margin: 0.35rem 0 0;
  color: rgba(18, 63, 46, 0.72);
}

.admin-section__actions,
.admin-form__actions-top,
.admin-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, 0.7fr) auto;
  gap: 0.9rem 1rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(18, 63, 46, 0.09);
  border-radius: 22px;
  background: rgba(247, 249, 243, 0.72);
}

.admin-toolbar__field {
  display: grid;
  gap: 0.45rem;
}

.admin-toolbar__field label {
  display: grid;
  gap: 0.45rem;
}

.admin-toolbar__field span {
  color: var(--forest);
  font-weight: 700;
}

.admin-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.admin-toolbar__summary {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(18, 63, 46, 0.68);
}

.admin-card__danger-zone {
  display: flex;
  justify-content: flex-end;
}

.admin-card__actions--caution {
  padding-top: 0.15rem;
  border-top: 1px dashed rgba(165, 68, 68, 0.2);
}

.admin-card__danger-zone .button--danger {
  box-shadow: 0 12px 22px rgba(143, 47, 37, 0.16);
}

.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.admin-filter-tab {
  text-decoration: none;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 46, 0.12);
  color: rgba(18, 63, 46, 0.78);
  background: rgba(255, 255, 255, 0.86);
}

.admin-filter-tab.is-active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.admin-grid {
  display: grid;
  gap: 1rem;
}

.admin-grid--metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-grid--metrics-small {
  grid-template-columns: repeat(1, minmax(0, 280px));
}

.admin-grid--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-metric {
  background: #fffdf9;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 22px;
  padding: 1.15rem;
}

.admin-metric span {
  display: block;
  color: rgba(18, 63, 46, 0.7);
  font-size: 0.9rem;
}

.admin-metric strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 2rem;
  color: var(--forest);
}

.admin-metric p {
  margin: 0.45rem 0 0;
  color: rgba(18, 63, 46, 0.68);
}

.admin-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 24px;
  background: #fffdf9;
}

.admin-card__media img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  border-radius: 18px;
  background: #eff1ea;
}

.admin-card__body {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.admin-card__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
}

.admin-card__status-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.admin-card__meta-row strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.admin-card__supplier {
  margin: -0.25rem 0 0;
  color: rgba(18, 63, 46, 0.7);
}

.admin-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
}

.admin-card__facts div {
  min-width: 0;
}

.admin-card__facts dt {
  color: rgba(18, 63, 46, 0.58);
  font-size: 0.82rem;
}

.admin-card__facts dd {
  margin: 0.16rem 0 0;
  color: var(--forest);
  font-weight: 600;
}

.admin-card__warnings strong,
.admin-note strong {
  display: block;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.admin-flag-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #915527;
}

.admin-clear,
.admin-card__seed-note,
.admin-note p {
  color: rgba(18, 63, 46, 0.7);
}

.admin-note--warning {
  border: 1px solid rgba(196, 127, 43, 0.24);
  background: rgba(252, 245, 227, 0.84);
}

.admin-note--success {
  border: 1px solid rgba(34, 136, 82, 0.18);
  background: rgba(240, 251, 245, 0.82);
}

.admin-readiness-section + .admin-readiness-section {
  margin-top: 1.25rem;
}

.admin-readiness-section h3 {
  margin: 0 0 0.7rem;
  font-size: 0.98rem;
}

.admin-readiness-list {
  display: grid;
  gap: 0.75rem;
}

.admin-readiness-item {
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
}

.admin-readiness-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}

.admin-readiness-item__header strong {
  font-size: 0.95rem;
}

.admin-readiness-item p {
  margin: 0;
  color: var(--text-700);
  line-height: 1.5;
}

.admin-readiness-pill,
.admin-readiness-summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-readiness-pill--pass,
.admin-readiness-summary-pill--ready {
  background: rgba(233, 245, 239, 0.95);
  color: #226548;
}

.admin-readiness-pill--warning,
.admin-readiness-summary-pill--review {
  background: rgba(252, 241, 218, 0.95);
  color: #946118;
}

.admin-readiness-pill--fail,
.admin-readiness-summary-pill--fail {
  background: rgba(249, 225, 225, 0.95);
  color: #9a2f2f;
}

.admin-readiness-summary-pill--risk {
  background: rgba(250, 232, 210, 0.95);
  color: #955126;
}

.admin-auth-error {
  color: #8f2f25;
  font-weight: 600;
}

.admin-card--detail {
  grid-template-columns: 1fr;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  text-transform: capitalize;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(18, 63, 46, 0.08);
  color: var(--forest);
}

.admin-status-badge--published {
  background: rgba(34, 136, 82, 0.13);
  color: #1f6a42;
}

.admin-status-badge--subscribed,
.admin-status-badge--sent {
  background: rgba(34, 136, 82, 0.13);
  color: #1f6a42;
}

.admin-status-badge--test {
  background: rgba(28, 102, 166, 0.12);
  color: #245f96;
}

.admin-status-badge--scheduled {
  background: rgba(76, 151, 104, 0.16);
  color: #0b6b43;
}

.admin-status-badge--approved {
  background: rgba(28, 102, 166, 0.12);
  color: #245f96;
}

.admin-status-badge--needs_review,
.admin-status-badge--imported {
  background: rgba(216, 154, 29, 0.14);
  color: #8b5b18;
}

.admin-status-badge--rejected,
.admin-status-badge--archived,
.admin-status-badge--failed,
.admin-status-badge--unsubscribed,
.admin-status-badge--bounced {
  background: rgba(165, 68, 68, 0.13);
  color: #8a3f3f;
}

.admin-live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.admin-live-badge.is-live {
  background: rgba(34, 136, 82, 0.1);
  color: #1f6a42;
}

.admin-live-badge.is-off {
  background: rgba(18, 63, 46, 0.07);
  color: rgba(18, 63, 46, 0.72);
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
}

.admin-two-column--edit {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form__section {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(18, 63, 46, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-form__section-header h3 {
  margin: 0;
  color: var(--forest);
}

.admin-form__section-header p {
  margin: 0.3rem 0 0;
  color: rgba(18, 63, 46, 0.68);
}

.admin-form label {
  display: grid;
  gap: 0.45rem;
}

.admin-form label > span {
  color: var(--forest);
  font-weight: 700;
}

.admin-field-note,
.admin-field-warning {
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
}

.admin-field-note {
  color: rgba(18, 63, 46, 0.66);
}

.admin-field-warning {
  color: #8a4c17;
}

.admin-form__field-panel {
  padding: 1rem;
  border: 1px solid rgba(18, 63, 46, 0.1);
  border-radius: 20px;
  background: rgba(245, 249, 243, 0.65);
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 46, 0.14);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.96);
}

.admin-form textarea {
  resize: vertical;
}

.admin-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.9rem;
}

.admin-filter-groups {
  display: grid;
  gap: 0.85rem;
}

.admin-filter-group {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.admin-filter-group h4 {
  margin: 0 0 0.7rem;
  color: var(--forest);
  font-size: 0.95rem;
}

.admin-checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-checkbox-option input {
  width: 18px;
  height: 18px;
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.admin-form__wide {
  grid-column: 1 / -1;
}

.admin-form__checks {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-toggle input {
  width: 18px;
  height: 18px;
}

.admin-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.admin-form__status {
  min-width: 220px;
}

.admin-form__status p {
  margin: 0.2rem 0;
}

.admin-empty {
  padding: 1.6rem;
  border: 1px dashed rgba(18, 63, 46, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.admin-empty h3,
.admin-empty h2 {
  margin: 0 0 0.45rem;
  color: var(--forest);
}

.admin-empty p {
  margin: 0;
  color: rgba(18, 63, 46, 0.72);
}

.admin-notice {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 106, 66, 0.18);
  background: rgba(242, 250, 245, 0.94);
  color: #1f6a42;
  font-weight: 600;
}

.admin-notice--error {
  border-color: rgba(143, 38, 36, 0.18);
  background: rgba(255, 245, 244, 0.95);
  color: #8f2624;
}

.admin-code-block {
  display: block;
  overflow-x: auto;
  padding: 0.8rem 0.95rem;
  margin-top: 0.45rem;
  border-radius: 14px;
  background: rgba(18, 63, 46, 0.05);
  color: var(--forest);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-radio-group {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(18, 63, 46, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.admin-radio-group legend {
  padding: 0 0.4rem;
  font-weight: 700;
  color: var(--forest);
}

.admin-radio-option {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  margin-top: 0.85rem;
}

.admin-radio-option:first-of-type {
  margin-top: 0.35rem;
}

.admin-radio-option input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.admin-radio-option span {
  display: grid;
  gap: 0.18rem;
}

.admin-radio-option small {
  color: rgba(18, 63, 46, 0.7);
}

.admin-pricing-table {
  display: grid;
  gap: 0.8rem;
}

.admin-pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 180px) repeat(3, minmax(0, 1fr)) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
}

.admin-pricing-row small {
  color: rgba(18, 63, 46, 0.7);
}

.admin-invalid-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.admin-invalid-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(138, 76, 23, 0.16);
  border-radius: 18px;
  background: rgba(255, 249, 240, 0.92);
}

.admin-table {
  display: grid;
  gap: 0.6rem;
}

.admin-table__row {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr 1fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
  align-items: center;
}

.admin-table__row--head {
  background: transparent;
  border: none;
  color: rgba(18, 63, 46, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-compare-table-wrap {
  overflow-x: auto;
}

.admin-compare-table {
  display: grid;
  gap: 0.6rem;
  min-width: 1380px;
}

.admin-compare-table__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr 1.2fr 1fr 1fr 0.9fr 0.9fr 0.8fr 0.8fr 0.7fr 1.4fr;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
  align-items: center;
}

.admin-compare-table__row--head {
  background: transparent;
  border: none;
  color: rgba(18, 63, 46, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-compare-table__id strong {
  color: var(--forest);
}

.admin-summary-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.admin-summary-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(247, 243, 236, 0.85);
  border: 1px solid rgba(18, 63, 46, 0.08);
}

.admin-summary-list__item span {
  color: rgba(18, 63, 46, 0.72);
}

.admin-summary-list__item strong {
  color: var(--forest);
}

.admin-read-table-wrap {
  overflow-x: auto;
}

.admin-read-table {
  display: grid;
  gap: 0.6rem;
  min-width: 980px;
}

.admin-read-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr 0.9fr 0.7fr 1fr;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
  align-items: center;
}

.admin-read-table__row--head {
  background: transparent;
  border: none;
  color: rgba(18, 63, 46, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-admin-hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(235, 244, 236, 0.92));
}

.newsletter-admin-compose-section {
  background: rgba(255, 255, 255, 0.94);
}

.newsletter-admin-compose > .admin-form__grid {
  gap: 1.05rem 1.15rem;
}

.newsletter-admin-compose input,
.newsletter-admin-compose textarea {
  border-radius: 18px;
}

.newsletter-admin-compose input:focus,
.newsletter-admin-compose textarea:focus {
  outline: none;
  border-color: rgba(18, 63, 46, 0.28);
  box-shadow: 0 0 0 4px rgba(159, 193, 154, 0.16);
}

.newsletter-admin-compose textarea::placeholder,
.newsletter-admin-compose input::placeholder {
  color: rgba(18, 63, 46, 0.56);
}

.newsletter-admin-compose > .admin-form__grid > .admin-form__wide textarea {
  min-height: clamp(340px, 42vh, 430px);
}

.newsletter-admin-compose__advanced {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 63, 46, 0.08);
}

.newsletter-admin-compose__advanced textarea {
  min-height: 118px;
}

.newsletter-admin-lists {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.newsletter-admin-table {
  min-width: 760px;
}

.newsletter-admin-table--subscribers .admin-read-table__row {
  grid-template-columns: minmax(220px, 1.4fr) minmax(130px, 0.7fr) minmax(120px, 0.7fr) minmax(190px, 0.9fr);
}

.newsletter-admin-table--campaigns {
  min-width: 960px;
}

.newsletter-admin-table--campaigns .admin-read-table__row {
  grid-template-columns: minmax(260px, 1.6fr) minmax(120px, 0.7fr) minmax(90px, 0.45fr) minmax(80px, 0.45fr) minmax(80px, 0.45fr) minmax(180px, 0.8fr);
}

.newsletter-admin-send-list {
  display: grid;
  gap: 0.75rem;
}

.newsletter-admin-send {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
}

.newsletter-admin-send strong {
  color: var(--forest);
}

.newsletter-admin-send p,
.newsletter-admin-send small {
  margin: 0.25rem 0 0;
  color: rgba(18, 63, 46, 0.66);
}

.newsletter-admin-send > div:last-child {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  min-width: 120px;
}

.newsletter-studio {
  display: grid;
  gap: 1.4rem;
}

.newsletter-studio-hero,
.newsletter-studio-compose-card,
.newsletter-studio-record-card {
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 50px rgba(41, 61, 43, 0.08);
}

.newsletter-studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(238, 247, 240, 0.95));
}

.newsletter-studio-hero__copy {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 0.5rem 0.4rem;
}

.newsletter-studio-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(225, 241, 229, 0.9);
  color: #0d5a3b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-studio-hero h2,
.newsletter-studio-compose-card h2,
.newsletter-studio-record-card h2 {
  margin: 0.55rem 0 0;
  color: var(--forest);
  letter-spacing: 0;
}

.newsletter-studio-hero h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.newsletter-studio-hero p,
.newsletter-studio-compose-card p,
.newsletter-studio-record-card p,
.newsletter-studio-form__footer p {
  margin: 0.45rem 0 0;
  color: rgba(18, 63, 46, 0.68);
}

.newsletter-studio-hero__panel {
  display: grid;
  gap: 0.65rem;
  align-content: center;
  padding: 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 20px;
  background: #fffdf9;
}

.newsletter-studio-hero__panel span,
.newsletter-studio-send-note span,
.newsletter-studio-metric span {
  color: rgba(18, 63, 46, 0.65);
  font-size: 0.84rem;
}

.newsletter-studio-hero__panel strong {
  color: var(--forest);
  font-size: 1.08rem;
  word-break: break-word;
}

.newsletter-studio-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.newsletter-studio-metric {
  min-height: 134px;
  padding: 1.05rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 20px;
  background: #fffdf9;
  box-shadow: 0 14px 34px rgba(41, 61, 43, 0.055);
}

.newsletter-studio-metric strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--forest);
  font-size: 2.1rem;
  line-height: 1;
}

.newsletter-studio-metric p {
  margin: 0.55rem 0 0;
  color: rgba(18, 63, 46, 0.68);
  line-height: 1.35;
}

.newsletter-studio-metric--growth {
  background: linear-gradient(145deg, #fffdf9, #edf7f1);
}

.newsletter-studio-metric--send {
  background: linear-gradient(145deg, #fffdf9, #f2f7ee);
}

.newsletter-studio-compose-card {
  padding: 1.35rem;
}

.newsletter-studio-compose-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

.newsletter-studio-send-note {
  display: grid;
  min-width: 260px;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: rgba(247, 250, 245, 0.92);
}

.newsletter-studio-send-note strong {
  color: var(--forest);
}

.newsletter-studio-send-note small {
  color: rgba(18, 63, 46, 0.62);
}

.newsletter-studio-form,
.newsletter-studio-form label {
  display: grid;
  gap: 0.55rem;
}

.newsletter-studio-form__top,
.newsletter-studio-settings__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.newsletter-studio-form label > span,
.newsletter-studio-settings summary {
  color: var(--forest);
  font-weight: 800;
}

.newsletter-studio-form input,
.newsletter-studio-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 46, 0.14);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.96);
}

.newsletter-studio-form input:focus,
.newsletter-studio-form textarea:focus {
  outline: none;
  border-color: rgba(18, 63, 46, 0.28);
  box-shadow: 0 0 0 4px rgba(159, 193, 154, 0.16);
}

.newsletter-studio-form ::placeholder {
  color: rgba(18, 63, 46, 0.5);
}

.newsletter-studio-editor textarea {
  min-height: clamp(360px, 45vh, 470px);
  resize: vertical;
}

.newsletter-studio-editor small {
  color: rgba(18, 63, 46, 0.62);
}

.newsletter-studio-settings {
  margin-top: 0.65rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: rgba(250, 249, 246, 0.76);
}

.newsletter-studio-settings summary {
  cursor: pointer;
}

.newsletter-studio-settings__grid {
  margin-top: 0.9rem;
}

.newsletter-studio-settings__side {
  display: grid;
  gap: 1rem;
}

.newsletter-studio-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 63, 46, 0.08);
}

.newsletter-studio-records {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 1rem;
}

.newsletter-studio-record-card {
  padding: 1.2rem;
}

.newsletter-studio-record-card__header {
  margin-bottom: 1rem;
}

.newsletter-studio-list,
.newsletter-studio-campaigns {
  display: grid;
  gap: 0.75rem;
}

.newsletter-studio-list-item,
.newsletter-studio-campaign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
}

.newsletter-studio-list-item__main,
.newsletter-studio-campaign > div:first-child {
  min-width: 0;
}

.newsletter-studio-list-item strong,
.newsletter-studio-campaign strong {
  display: block;
  color: var(--forest);
  word-break: break-word;
}

.newsletter-studio-list-item p,
.newsletter-studio-list-item time,
.newsletter-studio-campaign time,
.newsletter-studio-list-item__meta span:not(.admin-status-badge),
.newsletter-studio-campaign__stats span:not(.admin-status-badge) {
  color: rgba(18, 63, 46, 0.64);
}

.newsletter-studio-list-item p {
  margin: 0.25rem 0 0;
}

.newsletter-studio-list-item__meta,
.newsletter-studio-campaign__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.65rem;
  align-items: center;
  text-align: right;
}

.newsletter-admin-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(220, 241, 225, 0.75), transparent 32%),
    linear-gradient(115deg, #f7f2e9 0%, #fbfaf6 42%, #ffffff 100%);
  color: #073f2c;
}

.newsletter-admin-shell svg {
  width: 20px;
  height: 20px;
}

.newsletter-admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 1.25rem;
  width: 292px;
  height: 100vh;
  padding: 1.75rem 1.25rem;
  overflow-y: auto;
  background:
    radial-gradient(circle at 72% 18%, rgba(76, 151, 104, 0.26), transparent 34%),
    linear-gradient(150deg, #05422e 0%, #075438 45%, #073c2e 100%);
  color: #f7fff9;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
}

.newsletter-admin-sidebar {
  scrollbar-width: none;
}

.newsletter-admin-sidebar::-webkit-scrollbar {
  display: none;
}

.newsletter-admin-sidebar__brand,
.newsletter-admin-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.newsletter-admin-sidebar__brand-mark,
.newsletter-admin-sidebar__profile-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #075438;
}

.newsletter-admin-sidebar__brand strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1;
}

.newsletter-admin-sidebar__brand span,
.newsletter-admin-sidebar__profile span {
  display: block;
  color: rgba(247, 255, 249, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-admin-sidebar__switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #f7fff9;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-admin-sidebar__switcher svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.newsletter-admin-sidebar__nav {
  display: grid;
  gap: 0.35rem;
}

.newsletter-admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 48px;
  padding: 0 0.85rem;
  border-radius: 8px;
  color: rgba(247, 255, 249, 0.9);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.newsletter-admin-sidebar__link:hover,
.newsletter-admin-sidebar__link.is-active {
  background: rgba(255, 255, 255, 0.17);
  color: #ffffff;
}

.newsletter-admin-sidebar__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.newsletter-admin-sidebar__help {
  align-self: end;
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-admin-sidebar__help strong,
.newsletter-admin-sidebar__profile strong {
  color: #ffffff;
}

.newsletter-admin-sidebar__help p {
  margin: 0;
  color: rgba(247, 255, 249, 0.78);
  line-height: 1.42;
}

.newsletter-admin-sidebar__help a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
}

.newsletter-admin-sidebar__help a svg {
  width: 16px;
  height: 16px;
}

.newsletter-admin-sidebar__profile {
  margin: 0 -1.25rem -1.75rem;
  padding: 1.35rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.08);
}

.newsletter-admin-sidebar__profile span {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  letter-spacing: 0;
}

.newsletter-admin-main {
  grid-column: 2;
  min-width: 0;
  padding: 1.5rem 2rem 2.4rem;
}

.newsletter-admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  margin-bottom: 0.5rem;
}

.newsletter-admin-topbar__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.newsletter-admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0 1.15rem;
  border-radius: 8px;
  border: 1px solid rgba(7, 63, 44, 0.14);
  font-weight: 900;
  color: #073f2c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(17, 44, 31, 0.06);
}

.newsletter-admin-action svg {
  width: 18px;
  height: 18px;
}

.newsletter-admin-action--primary {
  border-color: rgba(4, 66, 45, 0.95);
  color: #ffffff;
  background: #054a32;
}

.newsletter-admin-content {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.newsletter-dashboard {
  position: relative;
  display: grid;
  gap: 1.15rem;
  min-width: 0;
  max-width: 100%;
}

.newsletter-dashboard--locked {
  max-width: 820px;
  padding: 3rem;
  border: 1px solid rgba(7, 63, 44, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.newsletter-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 8px;
  background: #dff0df;
  color: #0b6a42;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-page-kicker svg {
  width: 13px;
  height: 13px;
}

.newsletter-dashboard__hero h1 {
  max-width: none;
  margin: 0.45rem 0 0;
  color: #073f2c;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.25vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.newsletter-dashboard__hero p,
.newsletter-dashboard--locked p {
  margin: 0.45rem 0 0;
  color: rgba(7, 63, 44, 0.66);
  font-weight: 600;
}

.newsletter-primary-link,
.newsletter-primary-button,
.newsletter-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.1rem;
  border: 1px solid rgba(7, 63, 44, 0.14);
  border-radius: 8px;
  color: #073f2c;
  background: #ffffff;
  font-weight: 900;
}

.newsletter-primary-link,
.newsletter-primary-button {
  border-color: #064b32;
  color: #ffffff;
  background: #064b32;
}

.newsletter-overview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.newsletter-overview-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  min-height: 96px;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(7, 63, 44, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 26px rgba(42, 58, 44, 0.065);
}

.newsletter-overview-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #073f2c;
  background: #e6eadc;
}

.newsletter-overview-card--mint .newsletter-overview-card__icon { background: #a9efbd; }
.newsletter-overview-card--gold .newsletter-overview-card__icon { background: #ffe29a; }
.newsletter-overview-card--coral .newsletter-overview-card__icon { background: #ffc5ba; }
.newsletter-overview-card--sage .newsletter-overview-card__icon { background: #dde9d1; }
.newsletter-overview-card--green .newsletter-overview-card__icon { background: #dbeccb; }

.newsletter-overview-card span:not(.newsletter-overview-card__icon) {
  color: rgba(7, 63, 44, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
}

.newsletter-overview-card strong {
  display: block;
  min-width: 0;
  margin-top: 0.2rem;
  overflow: hidden;
  color: #073f2c;
  font-size: 1.2rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsletter-overview-card p {
  margin: 0.25rem 0 0;
  color: rgba(7, 63, 44, 0.6);
  font-size: 0.78rem;
  line-height: 1.35;
}

.newsletter-mode-tabs,
.newsletter-builder-card,
.newsletter-preview-card,
.newsletter-recent-card {
  border: 1px solid rgba(7, 63, 44, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(42, 58, 44, 0.065);
}

.newsletter-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.newsletter-mode-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "icon title" "icon copy";
  gap: 0.05rem 0.85rem;
  min-height: 72px;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-left: 1px solid rgba(7, 63, 44, 0.09);
  color: #073f2c;
  text-align: left;
  background: transparent;
}

.newsletter-mode-tab:first-child {
  border-left: 0;
}

.newsletter-mode-tab > span {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  align-self: center;
}

.newsletter-mode-tab strong {
  grid-area: title;
  align-self: end;
}

.newsletter-mode-tab small {
  grid-area: copy;
  color: rgba(7, 63, 44, 0.62);
}

.newsletter-mode-tab.is-active {
  margin: 0.25rem;
  border: 1px solid rgba(7, 111, 64, 0.55);
  border-radius: 8px;
  background: rgba(250, 255, 250, 0.98);
}

.newsletter-dashboard__workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.newsletter-builder-card {
  min-width: 0;
  padding: 1rem 1rem 0.75rem;
}

.newsletter-builder-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-builder-card h2,
.newsletter-preview-card h2,
.newsletter-recent-card h2,
.newsletter-template-section h3 {
  margin: 0;
  color: #073f2c;
  font-size: 1.22rem;
  line-height: 1.15;
}

.newsletter-builder-card__header p,
.newsletter-template-section p {
  margin: 0.35rem 0 0;
  color: rgba(7, 63, 44, 0.64);
  font-size: 0.86rem;
}

.newsletter-auto-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: #176c3d;
  background: #dff0df;
  font-size: 0.75rem;
  font-weight: 900;
}

.newsletter-manual-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: start;
  min-height: 34px;
  padding: 0 0.75rem;
  border: 1px solid rgba(7, 63, 44, 0.12);
  border-radius: 999px;
  color: #075438;
  background: #fffaf3;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.newsletter-manual-chip svg {
  width: 15px;
  height: 15px;
}

.newsletter-auto-chip svg {
  width: 13px;
  height: 13px;
}

.newsletter-automation-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: start;
  color: #073f2c;
  font-weight: 900;
}

.newsletter-automation-toggle input {
  appearance: none;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #0a7b45;
}

.newsletter-automation-toggle input::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px 3px 3px auto;
  border-radius: 999px;
  background: #ffffff;
}

.newsletter-builder-form,
.newsletter-builder-field {
  display: grid;
  gap: 0.55rem;
}

.newsletter-builder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.newsletter-builder-field span {
  color: #073f2c;
  font-weight: 900;
}

.newsletter-builder-field em {
  color: #b43f33;
  font-style: normal;
}

.newsletter-builder-field input,
.newsletter-builder-field select,
.newsletter-builder-field textarea {
  width: 100%;
  min-height: 40px;
  padding: 0 0.75rem;
  border: 1px solid rgba(7, 63, 44, 0.16);
  border-radius: 8px;
  color: #073f2c;
  background: #ffffff;
}

.newsletter-builder-field input:focus,
.newsletter-builder-field select:focus,
.newsletter-builder-field textarea:focus {
  outline: none;
  border-color: rgba(7, 111, 64, 0.55);
  box-shadow: 0 0 0 3px rgba(106, 173, 117, 0.15);
}

.newsletter-builder-field textarea {
  min-height: 180px;
  padding: 0.75rem;
  overflow: auto;
  resize: vertical;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.newsletter-builder-field small code {
  font-size: 0.75rem;
}

.newsletter-html-section {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.newsletter-builder-field--html textarea {
  min-height: 300px;
}

.newsletter-builder-field--text textarea {
  min-height: 120px;
}

.newsletter-builder-field small {
  color: rgba(7, 63, 44, 0.55);
  font-size: 0.76rem;
}

.newsletter-automation-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(7, 63, 44, 0.12);
  border-radius: 8px;
  background: #fffdf8;
}

.newsletter-automation-note > span {
  color: #31a763;
}

.newsletter-automation-note strong {
  color: #073f2c;
}

.newsletter-automation-note p {
  margin: 0.2rem 0 0;
  color: rgba(7, 63, 44, 0.62);
  font-size: 0.78rem;
}

.newsletter-automation-note button,
.newsletter-template-section__header button,
.newsletter-recent-card__header button,
.newsletter-settings-list button,
.newsletter-recent-table button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.4rem;
  border: 0;
  color: #0a6a42;
  background: transparent;
  font-weight: 900;
}

.newsletter-schedule-panel {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(7, 111, 64, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fff8, #fffaf3);
}

.newsletter-schedule-panel h3 {
  margin: 0;
  color: #073f2c;
  font-size: 1rem;
}

.newsletter-schedule-panel p {
  margin: 0.25rem 0 0;
  color: rgba(7, 63, 44, 0.62);
  font-size: 0.82rem;
}

.newsletter-schedule-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.45fr) minmax(180px, 0.7fr);
  gap: 0.75rem;
}

.newsletter-secondary-button--schedule {
  border-color: rgba(7, 111, 64, 0.34);
  color: #075438;
  background: #f5fff4;
}

.newsletter-template-section {
  margin-top: 1rem;
}

.newsletter-template-section__header,
.newsletter-recent-card__header,
.newsletter-checklist-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.newsletter-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.newsletter-template-card {
  position: relative;
  display: grid;
  gap: 0.35rem;
  min-height: 112px;
  padding: 0.65rem;
  border: 1px solid rgba(7, 63, 44, 0.12);
  border-radius: 8px;
  color: #073f2c;
  text-align: left;
  background: #ffffff;
}

.newsletter-template-card.is-active {
  border-color: rgba(7, 111, 64, 0.6);
  box-shadow: 0 0 0 3px rgba(106, 173, 117, 0.12);
}

.newsletter-template-card__radio {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(7, 63, 44, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: #0b7a49;
}

.newsletter-template-card__radio svg {
  width: 12px;
  height: 12px;
}

.newsletter-template-card__thumb {
  display: block;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f8f3e8, #dcebd9);
}

.newsletter-template-card__thumb--warm {
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.25)),
    url("../public/images/newsletter/welcome-hero-window.jpg?v=20260812") center/cover;
}

.newsletter-template-card__thumb--simple {
  background: linear-gradient(180deg, #f7f7f3 0 50%, #32382e 50% 60%, #f7f7f3 60%);
}

.newsletter-template-card__thumb--brand {
  background: linear-gradient(135deg, #c45b4f, #f2c7a8 54%, #d7e9cf);
}

.newsletter-template-card__thumb--product {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(236, 245, 226, 0.35)),
    url("../public/images/home/canopykind-hero-peat-pots.png?v=20260726") center/cover;
}

.newsletter-template-card__thumb--weekly {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(237, 247, 237, 0.32)),
    linear-gradient(90deg, #e6f2e3 0 30%, #fffaf3 30% 34%, #f8fbf5 34% 66%, #dfeadb 66% 100%);
}

.newsletter-template-card__thumb--guide {
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.15), rgba(255, 255, 255, 0.35)),
    url("../public/images/category/home-living-hero.jpg?v=20260726") center/cover;
}

.newsletter-template-card__thumb--promotion {
  background: linear-gradient(135deg, #f7decf, #fff2cc 52%, #dcebd9);
}

.newsletter-template-card__thumb--fresh {
  background: linear-gradient(90deg, #edf7ed 0 42%, #b6d2a7 42% 47%, #f9f5e9 47% 100%);
}

.newsletter-template-card__thumb--arrivals {
  background: linear-gradient(135deg, #f8f1df 0 36%, #d8e8dc 36% 62%, #7aa284 62% 100%);
}

.newsletter-template-card__thumb--upgrade {
  background: linear-gradient(180deg, #f9f6ee 0 28%, #0b5a3e 28% 34%, #e6efe4 34% 100%);
}

.newsletter-template-card__thumb--savings {
  background: linear-gradient(135deg, #fff2df 0 42%, #e4bd79 42% 50%, #dcebd9 50% 100%);
}

.newsletter-template-card__thumb--finds {
  background: linear-gradient(90deg, #e7eee5 0 31%, #fffdf7 31% 36%, #d5bfa3 36% 67%, #f6f1e8 67% 100%);
}

.newsletter-template-card__thumb--loving {
  background: linear-gradient(135deg, #f5e5dc 0 34%, #dcebd9 34% 58%, #275842 58% 100%);
}

.newsletter-template-card__plus {
  display: grid;
  place-items: center;
  height: 44px;
  border: 1px dashed rgba(7, 63, 44, 0.24);
  border-radius: 6px;
  color: #073f2c;
  font-size: 1.5rem;
}

.newsletter-template-card strong,
.newsletter-template-card small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsletter-template-card small {
  color: rgba(7, 63, 44, 0.6);
}

.newsletter-send-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px auto;
  gap: 0.85rem;
  align-items: end;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(7, 63, 44, 0.08);
}

.newsletter-send-controls__buttons {
  display: flex;
  gap: 0.6rem;
}

.newsletter-preview-panel {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.newsletter-preview-card {
  min-width: 0;
  padding: 1rem;
}

.newsletter-preview-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.newsletter-preview-card__header a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
  overflow: hidden;
  color: #0a6a42;
  font-size: 0.76rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsletter-preview-card__header a svg {
  width: 14px;
  height: 14px;
}

.newsletter-preview-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  margin: 0.85rem 0;
  padding: 0.15rem;
  border: 1px solid rgba(7, 63, 44, 0.11);
  border-radius: 8px;
}

.newsletter-preview-tabs button {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: rgba(7, 63, 44, 0.64);
  background: transparent;
}

.newsletter-preview-tabs button.is-active {
  color: #0b6a42;
  background: #edf8ed;
  box-shadow: inset 0 0 0 1px rgba(7, 111, 64, 0.5);
}

.newsletter-email-preview {
  max-width: 100%;
  overflow: hidden;
  border: 8px solid #f0ece4;
  border-radius: 8px;
  background: #fffdf8;
  text-align: center;
}

.newsletter-email-preview--flyer {
  display: block;
  overflow: hidden;
  padding: 0;
  background: #fffdf8;
}

.newsletter-email-preview--flyer > div,
.newsletter-email-preview--flyer > table,
.newsletter-email-preview--flyer table,
.newsletter-email-preview--flyer tbody,
.newsletter-email-preview--flyer tr,
.newsletter-email-preview--flyer td {
  max-width: 100% !important;
  box-sizing: border-box;
}

.newsletter-email-preview--flyer > div,
.newsletter-email-preview--flyer > table {
  width: 100% !important;
  margin-inline: auto;
}

.newsletter-email-preview--flyer img {
  max-width: 100% !important;
  height: auto !important;
}

.newsletter-email-preview--flyer h2,
.newsletter-email-preview--flyer p,
.newsletter-email-preview--flyer a,
.newsletter-email-preview--flyer div {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.newsletter-email-preview--flyer table table table td {
  display: block !important;
  width: 100% !important;
  padding: 0 0 1.35rem !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.newsletter-email-preview--flyer table table table td:last-child {
  padding-bottom: 0 !important;
}

.newsletter-flyer-preview {
  overflow: hidden;
  background: #fffaf3;
}

.newsletter-flyer-preview__brand {
  display: grid;
  place-items: center;
  padding: 0.75rem 1rem 0.65rem;
}

.newsletter-flyer-preview__brand img {
  width: 128px;
  height: auto;
}

.newsletter-flyer-preview__hero {
  position: relative;
  display: grid;
  min-height: 220px;
  overflow: hidden;
}

.newsletter-flyer-preview__hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-flyer-preview__hero-card {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(82%, 260px);
  margin: 0 auto;
  padding: 1.05rem 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(21, 48, 35, 0.08);
}

.newsletter-flyer-preview__hero-card span {
  display: block;
  color: #0b6a42;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.newsletter-flyer-preview__hero-card strong,
.newsletter-flyer-preview__features h3,
.newsletter-flyer-preview__cta h3 {
  display: block;
  color: #073f2c;
  font-family: var(--font-serif);
}

.newsletter-flyer-preview__hero-card strong {
  margin-top: 0.2rem;
  font-size: 2.1rem;
  line-height: 1;
}

.newsletter-flyer-preview__hero-card p {
  max-width: 220px;
  margin: 0.55rem auto 0;
  color: rgba(7, 63, 44, 0.68);
  font-size: 0.68rem;
  line-height: 1.45;
}

.newsletter-flyer-preview__features {
  padding: 1.35rem 1rem 1.1rem;
}

.newsletter-flyer-preview__features h3,
.newsletter-flyer-preview__cta h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.newsletter-flyer-preview__features > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1rem;
}

.newsletter-flyer-preview__features section {
  min-width: 0;
  padding: 0 0.35rem;
  border-left: 1px solid rgba(7, 63, 44, 0.13);
}

.newsletter-flyer-preview__features section:first-child {
  border-left: 0;
}

.newsletter-flyer-preview__features section > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 0.55rem;
  border-radius: 999px;
  color: #0b6a42;
  background: #e8f2e6;
}

.newsletter-flyer-preview__features svg {
  width: 20px;
  height: 20px;
}

.newsletter-flyer-preview__features strong {
  display: block;
  overflow-wrap: anywhere;
  color: #073f2c;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.newsletter-flyer-preview__features p,
.newsletter-flyer-preview__cta p {
  margin: 0.45rem 0 0;
  color: rgba(7, 63, 44, 0.64);
  font-size: 0.68rem;
  line-height: 1.42;
}

.newsletter-flyer-preview__cta {
  padding: 1.35rem 1rem 1.55rem;
  background: #eaf4ea;
}

.newsletter-flyer-preview__cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 0.9rem;
  padding: 0 1.1rem;
  border-radius: 7px;
  color: #ffffff;
  background: #07543a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-email-preview__header {
  display: grid;
  place-items: center;
  padding: 1rem 1rem 0.4rem;
}

.newsletter-email-preview__header img {
  width: 128px;
}

.newsletter-email-preview__copy {
  padding: 0.8rem 1.2rem 1rem;
}

.newsletter-email-preview__copy h3 {
  margin: 0;
  color: #073f2c;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
}

.newsletter-email-preview__copy p {
  margin: 0.55rem 0 0;
  color: rgba(7, 63, 44, 0.66);
  font-size: 0.8rem;
}

.newsletter-email-preview__copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 0.8rem;
  padding: 0 1rem;
  border-radius: 5px;
  color: #ffffff;
  background: #064b32;
  font-size: 0.78rem;
  font-weight: 900;
}

.newsletter-email-preview__image {
  width: 100%;
  height: 104px;
  object-fit: cover;
}

.newsletter-settings-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
}

.newsletter-settings-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.newsletter-settings-list dt,
.newsletter-settings-list dd {
  margin: 0;
  color: rgba(7, 63, 44, 0.72);
  font-size: 0.8rem;
}

.newsletter-settings-list dd {
  color: #073f2c;
}

.newsletter-settings-list button {
  min-width: 34px;
  min-height: 22px;
  padding: 0;
  color: rgba(7, 63, 44, 0.45);
}

.newsletter-checklist-header span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: #176c3d;
  background: #dff0df;
  font-size: 0.76rem;
  font-weight: 900;
}

.newsletter-checklist {
  display: grid;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #073f2c;
  font-size: 0.82rem;
  font-weight: 700;
}

.newsletter-checklist svg {
  width: 18px;
  height: 18px;
  padding: 0.18rem;
  border-radius: 999px;
  color: #ffffff;
  background: #0b7a49;
}

.newsletter-recent-card {
  padding: 0.85rem 1rem 1rem;
}

.newsletter-recent-table {
  margin-top: 0.75rem;
  border: 1px solid rgba(7, 63, 44, 0.09);
  border-radius: 8px;
  overflow-x: auto;
}

.newsletter-recent-table__row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) 0.7fr 0.75fr 0.75fr 1fr 0.65fr 0.55fr 0.55fr;
  gap: 0.8rem;
  align-items: center;
  min-width: 1000px;
  padding: 0.65rem 0.8rem;
  border-top: 1px solid rgba(7, 63, 44, 0.08);
  color: rgba(7, 63, 44, 0.72);
  font-size: 0.78rem;
}

.newsletter-recent-table__row:first-child {
  border-top: 0;
}

.newsletter-recent-table__row--head {
  background: #faf8f1;
  color: rgba(7, 63, 44, 0.6);
  font-weight: 900;
}

.newsletter-recent-table__row strong {
  min-width: 0;
  overflow: hidden;
  color: #073f2c;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsletter-recent-empty {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  min-height: 92px;
  place-content: center;
  color: rgba(7, 63, 44, 0.64);
  text-align: center;
}

.newsletter-recent-empty > span {
  color: rgba(7, 63, 44, 0.42);
}

.newsletter-recent-empty strong {
  color: #073f2c;
}

.newsletter-recent-empty p {
  margin: 0;
}

.newsletter-floating-leaf {
  position: fixed;
  right: 1.65rem;
  bottom: 1.65rem;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #075438;
  box-shadow: 0 16px 36px rgba(7, 63, 44, 0.24);
}

.newsletter-floating-leaf svg {
  width: 30px;
  height: 30px;
}

body:has(.newsletter-admin-shell) #ck-chat-root {
  display: none;
}

html:has(.newsletter-admin-shell),
body:has(.newsletter-admin-shell) {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1440px) {
  .newsletter-admin-main {
    padding-inline: 1.25rem;
  }

  .newsletter-dashboard__workspace {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }
}

@media (max-width: 1240px) {
  .newsletter-dashboard__workspace,
  .newsletter-builder-grid,
  .newsletter-send-controls,
  .newsletter-schedule-panel__grid {
    grid-template-columns: 1fr;
  }

  .newsletter-send-controls__buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .newsletter-admin-shell {
    display: block;
  }

  .newsletter-admin-sidebar {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 0;
  }

  .newsletter-admin-main {
    padding: 1rem;
  }
}

.admin-export-preview-wrap {
  border: 1px solid rgba(18, 63, 46, 0.08);
  border-radius: 18px;
  background: #fffdf9;
}

.admin-export-preview-table {
  width: 100%;
  min-width: 1480px;
  border-collapse: collapse;
  table-layout: fixed;
}

.admin-export-preview-table th,
.admin-export-preview-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(18, 63, 46, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-export-preview-table th {
  position: sticky;
  top: 0;
  background: #f4efe6;
  color: rgba(18, 63, 46, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-export-preview-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-export-preview-cell {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}

.admin-export-preview-raw {
  margin-top: 1rem;
}

.admin-export-preview-raw summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--forest);
}

.admin-compare-cell-stack {
  display: grid;
  gap: 0.22rem;
}

.admin-compare-cell-label {
  color: rgba(18, 63, 46, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-grid--metrics,
  .admin-grid--cards,
  .admin-two-column,
  .admin-two-column--edit,
  .newsletter-studio-hero,
  .newsletter-studio-records {
    grid-template-columns: 1fr;
  }

  .newsletter-studio-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-toolbar__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .admin-main {
    padding: 1rem;
  }

  .admin-topbar,
  .admin-section__header,
  .admin-form__footer,
  .admin-card,
  .admin-card__meta-row,
  .admin-pricing-row,
  .admin-table__row,
  .admin-compare-table__row,
  .admin-read-table__row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-topbar,
  .admin-section__header,
  .admin-form__footer,
  .admin-card__meta-row {
    align-items: start;
  }

  .admin-card {
    gap: 0.8rem;
  }

  .admin-form__grid,
  .admin-card__facts,
  .admin-checkbox-grid,
  .newsletter-studio-metrics,
  .newsletter-studio-form__top,
  .newsletter-studio-settings__grid {
    grid-template-columns: 1fr;
  }

  .newsletter-studio-compose-card__header,
  .newsletter-studio-form__footer,
  .newsletter-studio-list-item,
  .newsletter-studio-campaign {
    display: grid;
    grid-template-columns: 1fr;
  }

  .newsletter-studio-list-item__meta,
  .newsletter-studio-campaign__stats {
    justify-content: flex-start;
    text-align: left;
  }

  .admin-card__danger-zone {
    justify-content: flex-start;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: auto;
}

body {
  margin: 0;
  min-width: 1500px;
  font-family: var(--font-sans);
  color: var(--text-900);
  background: #ffffff;
}

/* Responsive activation: below the fixed 1500px desktop canvas, drop the
   desktop floor so laptops, tablets, and phones can flow to the screen. */
@media (max-width: 1499px) {
  body {
    min-width: 0;
  }
  html {
    overflow-x: hidden;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.header-shell .container {
  width: calc(100% - (var(--header-gutter) * 2));
  max-width: none;
}

/* Below 1500px .container has no margin of its own, so sections run flush into
   the viewport edge. Applied per-section rather than on .container itself: the
   home landing sets its own `padding: x 0` shorthands that would zero it out,
   leaving headings flush while their grids inset. */
.page-gutter {
  padding-inline: clamp(1rem, 2.4vw, 2.5rem);
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  width: auto;
  height: auto;
  clip: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background: var(--forest-900);
  color: var(--white);
  border-radius: 999px;
  z-index: 999;
}

.header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header {
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 59, 39, 0.07);
}

.site-header__top {
  display: grid;
  /* Side columns floor at min-content: a 0-floor lets the logo and header
     actions overflow their track and slide under the centred search field. */
  grid-template-columns: minmax(min-content, 1fr) minmax(380px, 620px) minmax(min-content, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 0.28rem 0 0.24rem;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  overflow: visible;
}

.site-logo img {
  width: min(100%, 190px);
  max-width: none;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
  justify-self: stretch;
}

.search-form input,
.filter-form input[type="search"],
.newsletter-form__field,
.footer-subscribe-form input,
.collection-sort select,
.product-detail__actions input {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  min-height: 50px;
  padding: 0 1rem;
  color: var(--text-900);
}

.search-form input {
  min-height: 44px;
  padding: 0 3.35rem 0 1.35rem;
}

.search-form .button--primary {
  position: absolute;
  right: 0.22rem;
  width: 38px;
  min-height: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(10, 59, 39, 0.58);
  box-shadow: none;
}

.search-form .button--primary:hover {
  transform: none;
  color: var(--forest-900);
  box-shadow: none;
}

.search-form input:focus,
.filter-form input[type="search"]:focus,
.footer-subscribe-form input:focus,
.collection-sort select:focus,
.newsletter-form__field input:focus,
.product-detail__actions input:focus {
  outline: 2px solid rgba(31, 101, 68, 0.18);
  border-color: rgba(31, 101, 68, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.05rem;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-700);
  white-space: nowrap;
}

.header-action .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.header-action--contact {
  display: none;
}

.header-action b {
  min-width: 1.2rem;
  height: 1.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--forest-800);
  color: var(--white);
  font-size: 0.72rem;
}

.header-cart {
  position: relative;
}

.header-cart__trigger {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header-cart-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  width: min(380px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.98);
  border: 1px solid rgba(10, 59, 39, 0.1);
  box-shadow: 0 24px 58px rgba(17, 47, 32, 0.18);
  z-index: 80;
}

.header-cart-menu::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: -0.48rem;
  width: 0.9rem;
  height: 0.9rem;
  background: rgba(255, 253, 250, 0.98);
  border-left: 1px solid rgba(10, 59, 39, 0.1);
  border-top: 1px solid rgba(10, 59, 39, 0.1);
  transform: rotate(45deg);
}

.header-cart-menu__head,
.header-cart-menu__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-cart-menu__head {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.header-cart-menu__head span,
.header-cart-menu__empty {
  color: var(--text-700);
  font-size: 0.9rem;
}

.header-cart-menu__items {
  display: grid;
  gap: 0.75rem;
  max-height: 310px;
  overflow-y: auto;
  padding: 0.85rem 0;
}

.header-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.header-cart-item img {
  width: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(245, 241, 232, 0.85);
}

.header-cart-item div {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.header-cart-item a {
  color: var(--text-900);
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-cart-item span,
.header-cart-item small {
  color: var(--text-700);
  font-size: 0.82rem;
  line-height: 1.3;
}

.header-cart-menu__subtotal {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
  font-weight: 800;
}

.header-cart-menu__actions {
  display: grid;
  gap: 0.6rem;
}

.site-header__nav {
  border-top: 1px solid rgba(10, 59, 39, 0.06);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.72rem, 1.15vw, 1.55rem);
  padding: 0.48rem 0 0.55rem;
  overflow: visible;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -0.4rem;
  right: -0.4rem;
  top: 100%;
  height: 1rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  color: #5b6c63;
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding-bottom: 0.32rem;
}

.nav-link.is-active,
.nav-link:hover,
.text-link:hover,
.footer-links a:hover,
.footer-policies a:hover,
.product-card__title:hover,
.cart-item__copy a:hover {
  color: var(--forest-800);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 2px;
  border-radius: 999px;
  background: var(--forest-800);
}

.nav-link__caret {
  width: 0.78rem;
  height: 0.78rem;
  opacity: 0.72;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 220px;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.7rem;
  border-radius: 18px;
  border: 1px solid rgba(10, 59, 39, 0.08);
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 18px 42px rgba(17, 47, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255, 253, 250, 0.98);
  border-top: 1px solid rgba(10, 59, 39, 0.08);
  border-left: 1px solid rgba(10, 59, 39, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown__overview {
  display: block;
  padding: 0.7rem 0.85rem 0.8rem;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-dropdown__list {
  display: grid;
  padding-top: 0.45rem;
  max-height: min(60vh, 420px);
  overflow-y: auto;
}

.nav-dropdown__link {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  color: var(--text-700);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown__link:hover,
.nav-dropdown__overview:hover {
  background: rgba(235, 242, 232, 0.72);
}

/* Desktop-only. These rules carry higher specificity than the mobile
   `.nav-dropdown` reset in the 920px block, so if they are left unscoped they
   still win there: on a touch tap the sticky :hover/:focus-within state applied
   `translate(-50%, 0)` to a now-`position: static` panel, dragging the whole
   submenu half its width off the left edge of the screen. */
@media (min-width: 921px) {
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  /* Trailing nav items would push a centred dropdown past the viewport edge
     (hidden panels still count toward scrollWidth), so anchor them right. */
  .nav-item:nth-last-child(-n + 3) .nav-dropdown {
    left: auto;
    right: 0;
    transform: translate(0, 10px);
  }

  .nav-item:nth-last-child(-n + 3):hover .nav-dropdown,
  .nav-item:nth-last-child(-n + 3):focus-within .nav-dropdown {
    transform: translate(0, 0);
  }

  .nav-item:nth-last-child(-n + 3) .nav-dropdown::before {
    left: auto;
    right: 2.4rem;
    transform: translateX(50%) rotate(45deg);
  }

  .nav-item:hover .nav-link__caret,
  .nav-item:focus-within .nav-link__caret {
    transform: rotate(180deg);
  }
}

.icon-button.header-menu-toggle {
  display: none;
}

.hero-banner {
  padding: 0 0 0.1rem;
  border-top: 1px solid rgba(10, 59, 39, 0.05);
}

.hero-banner__stage {
  position: relative;
  padding-top: 0.1rem;
  width: 100%;
  min-height: 360px;
  height: clamp(340px, calc(21 * var(--vw)), 380px);
  overflow: hidden;
}

.hero-banner__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 65% 42%;
}

.hero-banner__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 30%,
    rgba(255, 255, 255, 0.86) 44%,
    rgba(255, 255, 255, 0.28) 60%,
    transparent 74%
  );
}

.hero-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(43%, 620px);
  max-width: 620px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  padding-left: max(var(--hero-gutter), calc((100vw - 1500px) / 2));
}

.hero-banner__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 0.5rem;
}

.hero-banner h1,
.empty-state h1,
.support-hero h1,
.product-detail__content h1,
.account-panel__copy h1 {
  margin: 0.62rem 0 0.9rem;
  font-size: clamp(2.7rem, calc(4.15 * var(--vw)), 4.45rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-banner p,
.support-hero p,
.story-copy p,
.product-detail__content p,
.empty-state p,
.account-panel__copy p {
  margin: 0;
  color: var(--text-700);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-banner__actions,
.account-actions,
.product-detail__actions,
.filter-actions,
.footer-subscribe-form {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-banner__actions {
  margin-top: 1.1rem;
}

.hero-banner__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
  margin-top: 1.05rem;
}

.hero-inline-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-inline-badge__icon {
  width: 2.28rem;
  height: 2.28rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 101, 68, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-700);
  flex-shrink: 0;
}

.hero-inline-badge strong,
.hero-inline-badge span {
  display: block;
}

.hero-inline-badge strong {
  font-size: 0.73rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-inline-badge span {
  margin-top: 0.18rem;
  color: var(--text-700);
  font-size: 0.71rem;
  line-height: 1.4;
}

.collection-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-top: 1px solid rgba(10, 59, 39, 0.05);
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
  background: #f7f3ed;
}

.collection-hero--embedded {
  min-height: 0;
  border: 0;
  background: transparent;
}

.collection-hero__image,
.collection-hero__overlay {
  position: absolute;
  inset: 0;
}

.collection-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.collection-hero__overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.96) 18%, rgba(251, 248, 243, 0.8) 36%, rgba(251, 248, 243, 0.28) 58%, rgba(251, 248, 243, 0) 76%);
}

.collection-hero__banner {
  display: block;
  width: min(var(--hero-max), calc(100% - (var(--hero-gutter) * 2)));
  margin: 0 auto;
  height: auto;
}

.collection-hero__content {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.collection-hero__copy {
  max-width: 420px;
  padding: 2rem 0;
}

.collection-hero--plain {
  /* Fixed band height so one- and two-line descriptions don't produce
     differently sized heroes as you move between tabs. */
  min-height: 310px;
  background:
    radial-gradient(120% 150% at 88% 50%, rgba(214, 232, 214, 0.55) 0%, rgba(214, 232, 214, 0) 62%),
    linear-gradient(114deg, #fbf8f3 0%, #f4f7f0 52%, #eaf1e6 100%);
}

.collection-hero--plain .collection-hero__content {
  min-height: 310px;
}

/* Long two-word titles ("Garden & Outdoor Living") ran to three lines against
   the 420px photo-hero measure; without a photo there is room to breathe. */
.collection-hero--plain .collection-hero__copy {
  max-width: 620px;
}

.collection-hero--plain h1 {
  font-size: clamp(2.4rem, calc(4.2 * var(--vw)), 3.6rem);
}

.collection-hero__mark {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 6vw, 6rem);
  transform: translateY(-50%);
  color: rgba(15, 74, 49, 0.09);
  pointer-events: none;
}

.collection-hero__mark .icon {
  width: clamp(120px, 15vw, 210px);
  height: clamp(120px, 15vw, 210px);
}

@media (max-width: 780px) {
  .collection-hero__mark {
    display: none;
  }
}

.collection-hero h1 {
  margin: 0.7rem 0 0.85rem;
  font-size: clamp(2.6rem, calc(5 * var(--vw)), 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.collection-hero p {
  margin: 0;
  color: var(--text-700);
  font-size: 1.1rem;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.95);
  color: var(--forest-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button,
.text-button {
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
}

.button:hover,
.icon-button:hover,
.category-card:hover,
.product-card:hover,
.benefit-card:hover,
.info-card:hover,
.faq-item:hover,
.trust-badge:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 74, 49, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest-800);
  border: 1px solid rgba(15, 74, 49, 0.16);
}

.button--ghost {
  background: transparent;
  color: var(--forest-800);
  border: 1px solid rgba(15, 74, 49, 0.14);
}

.button--danger {
  background: rgba(150, 40, 38, 0.08);
  color: #8f2624;
  border: 1px solid rgba(150, 40, 38, 0.22);
}

.button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.button:disabled:hover,
.icon-button:disabled:hover {
  transform: none;
}

.button--icon {
  width: 50px;
  padding: 0;
}

.button--full {
  width: 100%;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 49, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest-800);
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.trust-badges-row,
.benefits-row,
.category-grid,
.info-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.trust-badges-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem 0 0.5rem;
}

.trust-badge,
.benefit-card,
.info-card,
.faq-item,
.promo-strip,
.filter-sidebar,
.cart-summary,
.account-panel,
.story-brand-panel,
.support-hero {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: var(--shadow-sm);
}

.trust-badge,
.benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
}

.trust-badge__icon,
.benefit-card__icon,
.empty-state__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sage-200);
  color: var(--forest-700);
  flex-shrink: 0;
}

.trust-badge strong,
.benefit-card strong,
.section-heading-row h2,
.story-copy h2,
.cart-summary h2,
.info-card h3,
.faq-item h3,
.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.trust-badge p,
.benefit-card p,
.info-card p,
.faq-item p,
.footer-newsletter p,
.story-brand-panel p {
  margin: 0;
  color: var(--text-700);
  line-height: 1.6;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1rem;
}

.home-rail-heading {
  align-items: center;
  padding: 0.9rem 0 0.65rem;
}

.home-rail-heading--featured {
  padding-top: 1rem;
}

.home-rail-title {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.section-heading-row--tight {
  padding-top: 0;
}

.section-heading-row h2 {
  font-size: clamp(1.7rem, calc(3 * var(--vw)), 2.6rem);
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-700);
  font-weight: 700;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.85rem;
}

.category-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 59, 39, 0.07);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.category-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.category-card__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  color: var(--forest-600);
  flex-shrink: 0;
}

.category-card__label {
  font-size: 0.98rem;
}

.home-category-grid .category-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.home-category-grid .category-card img {
  aspect-ratio: 1.55 / 1;
  object-position: left center;
}

.home-category-grid .category-card__body {
  padding: 0.65rem 0.8rem 0.7rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
}

.home-category-grid .category-card__label {
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 600;
}

.home-featured-grid {
  margin-bottom: 0.55rem;
}

.home-featured-grid .product-grid--home-featured {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.home-featured-card {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 148px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.home-featured-card__media {
  display: block;
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
}

.home-featured-card__media img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  padding: 0.85rem;
  object-fit: contain;
  box-sizing: border-box;
}

.home-featured-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  padding: 0.65rem 0.72rem 0.72rem;
}

.home-featured-card__title {
  font-size: 0.88rem;
  line-height: 1.22;
  font-weight: 700;
}

.home-featured-card__subtitle {
  color: var(--text-700);
  font-size: 0.7rem;
  line-height: 1.25;
}

.home-featured-card__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-700);
  font-size: 0.68rem;
  line-height: 1.15;
}

.home-featured-card__footer {
  margin-top: auto;
}

.home-featured-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.home-featured-card__price strong {
  font-size: 0.92rem;
}

.home-featured-card .product-card__compare {
  font-size: 0.74rem;
}

.home-featured-card__button {
  width: 100%;
  min-height: 30px;
  padding: 0.48rem 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: none;
}

.home-garden-feature {
  padding-top: 1.45rem;
}

.home-garden-feature__image {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(10, 59, 39, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.home-garden-feature__image img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 12;
  min-height: 560px;
  max-height: 780px;
  object-fit: cover;
  object-position: center;
}

.home-garden-feature__label {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  pointer-events: none;
}

.home-garden-feature__heading {
  padding-top: 1.2rem;
}

.home-garden-spotlight {
  margin-top: 1.25rem;
}

.product-grid--home-garden {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-routine {
  padding-top: 1.45rem;
}

.home-routine__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-routine-tile {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(10, 59, 39, 0.08);
  color: var(--text-900);
  background: #ffffff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}

.home-routine-tile::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), #ffffff 31%);
}

.home-routine-tile__img-link {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  display: block;
  height: 62%;
}

.home-routine-tile__img-link img {
  width: 100%;
  height: 100%;
  padding: 1rem;
  object-fit: contain;
  box-sizing: border-box;
  transition: transform 0.35s ease;
}

.home-routine-tile:hover .home-routine-tile__img-link img {
  transform: scale(1.045);
}

.home-routine-tile__category {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin: 1rem 1rem 0.35rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: var(--sage-200);
  color: var(--forest-800);
  font-size: 0.72rem;
  font-weight: 800;
}

.home-routine-tile strong {
  position: relative;
  z-index: 2;
  margin: 0 1rem;
  font-size: 1.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-routine-tile p {
  position: relative;
  z-index: 2;
  margin: 0.45rem 1rem 0;
  max-width: 24ch;
  color: var(--text-700);
  font-size: 0.84rem;
  line-height: 1.45;
}

.home-routine-tile__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0.9rem 1rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-routine-tile__link svg {
  width: 0.85rem;
  height: 0.85rem;
}

.home-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  gap: 0;
  margin-top: 1.35rem;
  margin-bottom: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 8%, rgba(112, 161, 119, 0.18), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.home-spotlight__media {
  min-height: 380px;
  background: #ffffff;
}

.home-spotlight__media img {
  width: 100%;
  height: 100%;
  padding: clamp(1.1rem, calc(3 * var(--vw)), 2.5rem);
  object-fit: contain;
  box-sizing: border-box;
}

.home-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, calc(4 * var(--vw)), 3.4rem);
}

.home-spotlight__copy h2 {
  max-width: 12ch;
  margin: 0.45rem 0 0.75rem;
  color: var(--text-900);
  font-size: clamp(2rem, calc(4 * var(--vw)), 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-spotlight__copy p {
  max-width: 46ch;
  margin: 0;
  color: var(--text-700);
  line-height: 1.65;
}

.home-spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.home-spotlight__meta span,
.home-spotlight__meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--sage-200);
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.home-category-showcase {
  padding-top: 1.15rem;
}

.home-category-showcase__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 178px;
  gap: 1rem;
}

.home-category-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(10, 59, 39, 0.08);
  background: #ffffff;
  color: var(--text-900);
  isolation: isolate;
}

.home-category-feature:nth-child(1),
.home-category-feature:nth-child(4) {
  grid-row: span 2;
}

.home-category-feature::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 54%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), #ffffff 36%);
}

.home-category-feature img {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 64%;
  padding: 1rem;
  object-fit: contain;
  background: #ffffff;
  box-sizing: border-box;
  transition: transform 0.35s ease;
}

.home-category-feature:hover img {
  transform: scale(1.04);
}

.home-category-feature span {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin: 1rem 1rem 0.35rem;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  background: var(--sage-200);
  color: var(--forest-800);
  font-size: 0.7rem;
  font-weight: 800;
}

.home-category-feature strong {
  position: relative;
  z-index: 2;
  max-width: 26ch;
  margin: 0 1rem 1rem;
  font-size: 0.98rem;
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: var(--shadow-sm);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(120, 164, 106, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(247, 250, 241, 0.96), rgba(232, 241, 223, 0.88));
  aspect-ratio: 1 / 1;
}

.product-card__image-link {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.product-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__wishlist {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
}

.product-card__wishlist.is-active {
  color: #b44d69;
}

.product-card__badges {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}

.product-badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-badge--bestseller {
  background: rgba(17, 95, 55, 0.9);
  color: #fff;
}

.product-badge--new {
  background: rgba(235, 242, 232, 0.92);
  color: var(--forest-700);
}

.product-badge--sale {
  background: rgba(236, 223, 209, 0.96);
  color: #8b4f2c;
}

.product-badge--stock {
  background: rgba(150, 40, 38, 0.92);
  color: var(--white);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 1rem 1.1rem;
}

.product-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__subtitle,
.product-detail__subtitle,
.cart-item__copy p,
.footer-copy {
  color: var(--text-700);
}

.product-card__subtitle,
.product-card__rating,
.collection-toolbar span,
.collection-sort label,
.product-meta,
.tag {
  font-size: 0.92rem;
}

.product-card__subtitle {
  display: -webkit-box;
  min-height: 2.35em;
  overflow: hidden;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__rating,
.product-card__price-row,
.summary-row,
.footer-bottom,
.footer-policies {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__rating {
  gap: 0.5rem;
  color: var(--text-700);
}

.product-card__stars {
  color: #d19837;
  display: inline-flex;
  gap: 0.1rem;
}

.product-card__stars .icon.is-muted {
  color: rgba(10, 59, 39, 0.18);
}

.product-card__rating--empty {
  color: var(--text-700);
  font-size: 0.82rem;
  opacity: 0.75;
}

.product-card__price-row strong,
.product-detail__price strong,
.summary-row strong {
  font-size: 1.25rem;
}

.product-card__compare,
.product-detail__price span {
  color: var(--text-700);
  text-decoration: line-through;
}

.promo-strip {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.promo-strip h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, calc(3 * var(--vw)), 2rem);
}

.promo-strip p {
  margin: 0;
  color: var(--text-700);
}

.promo-strip--home {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 0.8fr)) auto;
  gap: 0;
  align-items: center;
  padding: 1rem 1.15rem;
  margin-top: 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(249, 250, 245, 0.98), rgba(245, 247, 240, 0.98));
}

.promo-strip__lead {
  padding: 0 1rem 0 0.35rem;
}

.promo-strip__lead h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.02;
}

.promo-strip__feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0 1.1rem;
  border-left: 1px solid rgba(15, 74, 49, 0.12);
}

.promo-strip__icon {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 101, 68, 0.18);
  color: var(--forest-700);
  background: rgba(255, 255, 255, 0.88);
  flex-shrink: 0;
}

.promo-strip__feature strong {
  display: block;
  margin: 0 0 0.05rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-strip__feature p {
  font-size: 0.77rem;
  line-height: 1.35;
}

.promo-strip__cta {
  margin-left: 1rem;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: none;
}

.benefits-row,
.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 2rem 0;
}

.benefits-row--home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1rem 0 1.35rem;
  align-items: center;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
}

.home-benefit {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.home-benefit__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  color: var(--forest-700);
  flex-shrink: 0;
}

.home-benefit strong {
  display: block;
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
}

.home-benefit p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.8rem;
  line-height: 1.35;
}

.collection-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  /* Block-only so the .page-gutter inline padding survives. */
  padding-block: 1rem 2.2rem;
}

.collection-content {
  min-width: 0;
}

.collection-intro {
  padding: 0.15rem 0 1rem;
}

.collection-intro h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, calc(3.4 * var(--vw)), 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.collection-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--text-700);
  line-height: 1.6;
}

.collection-content .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.collection-showcase {
  display: grid;
  gap: 1.35rem;
  padding-block: 1.35rem 0.8rem;
}

.collection-showcase-card,
.collection-feature-strip,
.collection-product-shelf,
.collection-editorial-grid,
.collection-promise-strip {
  border: 1px solid rgba(10, 59, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.96);
}

.collection-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.collection-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--forest-900);
}

.collection-section-head p {
  max-width: 58ch;
  margin: 0.25rem 0 0;
  color: var(--text-700);
  font-size: 0.9rem;
  line-height: 1.45;
}

.collection-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--forest-800);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.collection-section-link .icon {
  width: 0.9rem;
  height: 0.9rem;
}

.collection-browse-section {
  padding: 1.35rem 1.45rem 1.45rem;
}

.collection-browse-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
}

.collection-browse-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.09);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collection-browse-card:hover,
.collection-browse-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(10, 59, 39, 0.18);
  box-shadow: 0 14px 28px rgba(17, 47, 32, 0.12);
}

.collection-browse-card__media {
  display: block;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  background: #f8f5ee;
}

.collection-browse-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 280ms ease;
}

.collection-browse-card:hover .collection-browse-card__media img,
.collection-browse-card:focus-visible .collection-browse-card__media img {
  transform: scale(1.035);
}

.collection-browse-card__body {
  display: grid;
  gap: 0.14rem;
  padding: 0.72rem 0.82rem 0.82rem;
  min-width: 0;
}

.collection-browse-card__body strong {
  color: var(--forest-900);
  font-size: 0.86rem;
  line-height: 1.2;
}

.collection-browse-card__body span {
  color: var(--text-700);
  font-size: 0.76rem;
}

.collection-feature-strip,
.collection-promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: linear-gradient(90deg, rgba(235, 242, 232, 0.86), rgba(255, 253, 249, 0.96));
}

.collection-feature-strip > div,
.collection-promise-strip > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.15rem 0.75rem;
  align-items: center;
  min-width: 0;
  padding: 1rem 1.15rem;
  border-right: 1px solid rgba(10, 59, 39, 0.09);
}

.collection-feature-strip > div:last-child,
.collection-promise-strip > div:last-child {
  border-right: 0;
}

.collection-feature-strip span,
.collection-promise-strip span {
  grid-row: span 2;
  display: inline-flex;
  color: var(--forest-700);
}

.collection-feature-strip .icon,
.collection-promise-strip .icon {
  width: 1.8rem;
  height: 1.8rem;
}

.collection-feature-strip strong,
.collection-promise-strip strong {
  min-width: 0;
  color: var(--forest-900);
  font-size: 0.9rem;
  line-height: 1.2;
}

.collection-feature-strip p,
.collection-promise-strip p {
  min-width: 0;
  margin: 0;
  color: var(--text-700);
  font-size: 0.76rem;
  line-height: 1.32;
}

.collection-product-shelf {
  padding: 1.35rem 1.45rem 1.45rem;
  background: linear-gradient(120deg, rgba(255, 253, 249, 0.98), rgba(242, 247, 239, 0.9));
}

.collection-product-shelf__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.native-product-tile {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.1);
  border-radius: 8px;
  background: #ffffff;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.native-product-tile:hover,
.native-product-tile:focus-within {
  transform: translateY(-3px);
  border-color: rgba(10, 59, 39, 0.18);
  box-shadow: 0 14px 28px rgba(17, 47, 32, 0.12);
}

.native-product-tile__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  background: #fbfaf6;
}

.native-product-tile__media > img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.75rem;
  object-fit: contain;
  box-sizing: border-box;
}

.native-product-tile__body {
  display: grid;
  gap: 0.24rem;
  padding: 0.78rem 0.82rem 0.86rem;
}

.native-product-tile__title {
  display: -webkit-box;
  min-height: 2.45em;
  overflow: hidden;
  color: var(--forest-900);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.native-product-tile__meta {
  display: block;
  min-height: 1.25em;
  overflow: hidden;
  color: var(--text-700);
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-product-tile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.native-product-tile__footer strong {
  color: var(--forest-900);
  font-size: 0.88rem;
}

.native-product-tile__add {
  width: 1.72rem;
  height: 1.72rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(10, 59, 39, 0.16);
  border-radius: 999px;
  background: var(--forest-800);
  color: #ffffff;
  cursor: pointer;
}

.native-product-tile__add:disabled {
  background: rgba(10, 59, 39, 0.28);
  cursor: not-allowed;
}

.native-product-tile__add .icon {
  width: 0.86rem;
  height: 0.86rem;
}

.collection-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 253, 249, 0.96);
}

.collection-editorial-feature,
.collection-editorial-mini {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: var(--forest-900);
  text-decoration: none;
  isolation: isolate;
}

.collection-editorial-feature {
  min-height: 350px;
  display: flex;
  align-items: stretch;
}

.collection-editorial-feature img,
.collection-editorial-mini img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.collection-editorial-feature::after,
.collection-editorial-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.6) 48%, rgba(255, 253, 249, 0.08));
}

.collection-editorial-feature:hover img,
.collection-editorial-mini:hover img {
  transform: scale(1.035);
}

.collection-editorial-feature > span {
  width: min(360px, 58%);
  display: grid;
  align-content: center;
  gap: 0.6rem;
  padding: 2rem;
}

.collection-editorial-feature small {
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-editorial-feature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.collection-editorial-feature em,
.collection-editorial-mini em {
  color: var(--text-700);
  font-style: normal;
  line-height: 1.45;
}

.collection-editorial-feature b,
.collection-editorial-mini b {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: max-content;
  color: var(--forest-800);
  font-size: 0.84rem;
}

.collection-editorial-feature b .icon,
.collection-editorial-mini b .icon {
  width: 0.88rem;
  height: 0.88rem;
}

.collection-editorial-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.collection-editorial-mini {
  min-height: 168px;
  border: 1px solid rgba(10, 59, 39, 0.09);
  background: #f8f5ee;
}

.collection-editorial-mini > span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.16rem;
  padding: 2.2rem 0.9rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(255, 253, 249, 0.96) 40%);
}

.collection-editorial-mini strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--forest-900);
  font-size: 0.9rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection-editorial-mini--text {
  display: grid;
  align-items: stretch;
  background: linear-gradient(145deg, var(--forest-800), #0a5a3e);
  color: #ffffff;
}

.collection-editorial-mini--text::after {
  display: none;
}

.collection-editorial-mini--text > span {
  position: static;
  align-content: center;
  padding: 1.2rem;
  background: transparent;
}

.collection-editorial-mini--text strong,
.collection-editorial-mini--text em,
.collection-editorial-mini--text b {
  color: #ffffff;
}

.collection-promise-strip {
  margin: 0.2rem 0 1.4rem;
}

.about-mockup-body {
  width: min(var(--content-max), calc(100% - 2rem));
  display: grid;
  gap: 1.45rem;
  margin: 1.45rem auto 0;
}

.about-mission-showcase,
.about-curation-process,
.about-loop-card {
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255, 253, 249, 0.98), rgba(240, 246, 236, 0.92));
}

.about-mission-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.35fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.65rem 1.8rem;
}

.about-mission-showcase__copy h2,
.about-section-heading h2,
.about-shop-reasons h2,
.about-support-grid h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-900);
  letter-spacing: 0;
}

.about-mission-showcase__copy h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.about-mission-showcase__copy p,
.about-section-heading p,
.about-mission-showcase__cards p,
.about-standards p,
.about-shop-reasons p,
.about-curation-process p,
.about-support-grid p,
.about-loop-card small {
  margin: 0;
  color: var(--text-700);
  line-height: 1.48;
}

.about-mission-showcase__copy p {
  margin-top: 0.85rem;
  max-width: 48ch;
}

.about-mission-showcase__cards,
.about-standards__grid,
.about-shop-reasons > div {
  display: grid;
  gap: 1rem;
}

.about-mission-showcase__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-mission-showcase__cards article,
.about-standards__grid article,
.about-shop-reasons article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.65rem;
  min-width: 0;
  padding: 1.1rem;
  text-align: center;
  border-left: 1px solid rgba(10, 59, 39, 0.08);
}

.about-mission-showcase__cards article:first-child {
  border-left: 0;
}

.about-mission-showcase__cards span,
.about-standards__grid span,
.about-shop-reasons span,
.about-curation-process li > span {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.95);
  color: var(--forest-700);
}

.about-mission-showcase__cards .icon,
.about-standards__grid .icon,
.about-shop-reasons .icon,
.about-curation-process li > span .icon {
  width: 2rem;
  height: 2rem;
}

.about-mission-showcase__cards strong,
.about-standards__grid strong,
.about-shop-reasons strong,
.about-curation-process strong {
  color: var(--forest-900);
  font-weight: 900;
}

.about-section-heading {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.about-section-heading h2,
.about-shop-reasons h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.about-standards,
.about-shop-reasons {
  padding: 1.2rem 0.4rem 0.2rem;
}

.about-standards__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.about-shop-reasons h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.about-shop-reasons > div {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-shop-reasons article {
  min-height: 174px;
  border: 1px solid rgba(10, 59, 39, 0.09);
  border-radius: 8px;
  background: #ffffff;
}

.about-curation-process {
  padding: 1.45rem 1.7rem;
}

.about-curation-process ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-curation-process li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: 0;
  text-align: center;
}

.about-curation-process li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 2.55rem);
  top: 2.05rem;
  width: calc(100% - 4.1rem);
  border-top: 2px dotted rgba(10, 59, 39, 0.35);
}

.about-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 1rem;
}

.about-faq-card,
.about-question-card,
.about-loop-card {
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.09);
  border-radius: 8px;
  background: #ffffff;
}

.about-faq-card,
.about-question-card {
  display: grid;
  align-content: start;
  padding: 1.2rem 1.35rem;
}

.about-faq-card h2,
.about-question-card h2,
.about-loop-card h2 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.about-faq-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
  color: var(--forest-900);
  font-weight: 750;
}

.about-faq-card a .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.about-faq-card__all {
  border-bottom: 0 !important;
  color: var(--forest-700) !important;
}

.about-question-card {
  gap: 0.8rem;
}

.about-question-card .button {
  width: max-content;
  min-height: 44px;
}

.about-loop-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1fr);
  align-items: stretch;
}

.about-loop-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.about-loop-card > div {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.2rem;
}

.about-loop-card__form {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.about-loop-card__form input {
  min-width: 0;
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(10, 59, 39, 0.12);
  border-radius: 8px;
  padding: 0 0.8rem;
}

.about-loop-card__form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 0.95rem;
  background: var(--forest-800);
  color: #ffffff;
  font-weight: 900;
}

.about-loop-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
}

.about-loop-card small .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--forest-700);
}

/* "Shop by type" rail — reuses the Featured panel's heading rhythm so the
   stacked modules under the hero read as one system. */
.collection-types {
  margin: 1.5rem 0 0.2rem;
}

.collection-types__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin-bottom: 1.05rem;
}

.collection-types__head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest-900);
}

.collection-types__head p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.86rem;
}

.collection-types__rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
}

.collection-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.collection-type-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(10, 59, 39, 0.09);
  background: linear-gradient(140deg, #fbf8f3 0%, #eef4ea 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Sits under the photo; becomes the tile face when a catalog image URL is dead
   (the img removes itself on error) or the product has no photo at all. */
.collection-type-card__glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(15, 74, 49, 0.16);
}

.collection-type-card__glyph .icon {
  width: 42%;
  height: 42%;
}

.collection-type-card__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-type-card:hover .collection-type-card__media,
.collection-type-card:focus-visible .collection-type-card__media {
  transform: translateY(-3px);
  border-color: rgba(10, 59, 39, 0.2);
  box-shadow: 0 12px 26px rgba(17, 47, 32, 0.14);
}

.collection-type-card__label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest-900);
}

.collection-type-card__count {
  font-size: 0.74rem;
  color: var(--text-700);
}

@media (max-width: 1120px) {
  .collection-browse-grid,
  .collection-product-shelf__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-feature-strip,
  .collection-promise-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-feature-strip > div:nth-child(2n),
  .collection-promise-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .collection-feature-strip > div:nth-child(n + 3),
  .collection-promise-strip > div:nth-child(n + 3) {
    border-top: 1px solid rgba(10, 59, 39, 0.09);
  }

  .collection-editorial-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-showcase,
  .about-support-grid {
    grid-template-columns: 1fr;
  }

  .about-shop-reasons > div,
  .about-curation-process ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-curation-process li::after {
    display: none;
  }

  .collection-types__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 1.4rem;
  }
}

@media (max-width: 560px) {
  .collection-types__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* "Start Here" — a numbered trio for first-time shoppers. Deliberately shaped
   unlike the round type tiles above and the product grid below, so it reads as
   guidance rather than another shelf of products. */
.collection-starters {
  margin: 2.4rem 0 0.2rem;
}

.collection-starters__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin-bottom: 1.05rem;
}

.collection-starters__head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest-900);
}

.collection-starters__head p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.86rem;
}

.collection-starters__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: starter;
}

.starter-card__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
  padding: 0.7rem 0.9rem 0.7rem 0.7rem;
  border: 1px solid rgba(10, 59, 39, 0.09);
  border-radius: 14px;
  background: linear-gradient(140deg, #fbf8f3 0%, #f3f7f0 100%);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.starter-card__link:hover,
.starter-card__link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(10, 59, 39, 0.2);
  box-shadow: 0 12px 26px rgba(17, 47, 32, 0.14);
}

.starter-card__step {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1;
  color: rgba(15, 74, 49, 0.32);
}

.starter-card__media {
  position: relative;
  flex: 0 0 auto;
  width: 74px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

/* Same trick as the type tiles: the glyph sits under the photo and becomes the
   face when a catalog image URL fails to load. */
.starter-card__glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(15, 74, 49, 0.16);
}

.starter-card__glyph .icon {
  width: 40%;
  height: 40%;
}

.starter-card__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.starter-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.starter-card__type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-700);
}

/* Supplier titles run long; clamping keeps the three cards the same height and
   stops the row from turning into a wall of text. */
.starter-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--forest-900);
}

.starter-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-700);
}

.starter-card__meta strong {
  font-size: 0.88rem;
  color: var(--forest-900);
}

@media (max-width: 1120px) {
  .collection-starters__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collection-starters__list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.collection-featured {
  margin: 1.5rem 0 0.2rem;
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(255, 253, 249, 0.98), rgba(239, 245, 235, 0.96));
}

.collection-featured__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin-bottom: 1.15rem;
}

.collection-featured__head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest-900);
}

.collection-featured__head p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.86rem;
}

.collection-featured .product-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

@media (max-width: 1120px) {
  .collection-featured .product-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .collection-featured .product-grid--featured {
    grid-template-columns: 1fr;
  }
}

.collection-all-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 0.35rem;
}

.collection-all-head h2 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forest-900);
  white-space: nowrap;
}

.collection-all-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10, 59, 39, 0.12);
}

.catalog-loading {
  min-height: min(58vh, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 clamp(3.5rem, 11vh, 7rem);
}

.catalog-loading__spinner {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-block;
  border-radius: 999px;
  border: 3px solid rgba(159, 193, 154, 0.38);
  border-top-color: var(--forest-800);
  border-right-color: rgba(31, 101, 68, 0.72);
  box-shadow: 0 0 0 0.5rem rgba(235, 242, 232, 0.72);
  animation: ck-catalog-spin 0.82s linear infinite;
}

@keyframes ck-catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

.filter-sidebar,
.cart-summary,
.story-brand-panel,
.support-hero,
.empty-state {
  border-radius: var(--radius-lg);
}

.filter-sidebar {
  padding: 0;
  position: sticky;
  top: 7.5rem;
  align-self: start;
  max-height: var(--filter-sidebar-max-height, calc(100vh - 8.5rem));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding-right: 0.35rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.filter-sidebar::-webkit-scrollbar {
  width: 0.45rem;
}

.filter-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background: rgba(10, 59, 39, 0.22);
  border-radius: 999px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 59, 39, 0.34);
}

.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.filter-sidebar__title h2 {
  margin: 0;
  font-size: 1.05rem;
}

.filter-sidebar__reset {
  color: var(--forest-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.filter-form {
  display: grid;
  gap: 0;
}

.filter-group {
  display: grid;
  gap: 0.7rem;
}

.filter-group--search {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.filter-group label,
.filter-section__heading strong {
  font-size: 0.95rem;
}

.filter-section {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.filter-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.filter-section__heading .icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--text-700);
}

.filter-option-list {
  display: grid;
  gap: 0.45rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-700);
  font-size: 0.92rem;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0;
  accent-color: var(--forest-700);
}

.filter-price {
  display: grid;
  gap: 0.75rem;
}

.filter-price__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-700);
  font-size: 0.85rem;
}

.filter-range {
  width: 100%;
  margin: 0;
  accent-color: var(--forest-700);
}

.filter-rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.filter-option--rating .product-card__stars {
  min-width: 4.75rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.65);
  color: var(--forest-700);
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 1rem;
}

.mobile-filter-sheet {
  display: none;
}

.filter-form__apply {
  display: none;
  margin-top: 1rem;
}

.collection-toolbar__meta {
  color: var(--text-700);
  font-size: 0.92rem;
}

.collection-sort {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.collection-sort select {
  min-width: 220px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.2rem;
  padding: 1.15rem 0 0.4rem;
}

.product-detail__media,
.product-detail__content {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 59, 39, 0.07);
}

.product-detail__media {
  padding: 0.9rem;
}

.product-detail__stage {
  position: relative;
}

.product-detail__media img,
.product-detail__stage-image {
  width: 100%;
  border-radius: 20px;
}

.product-detail__stage-image {
  pointer-events: none;
  aspect-ratio: 1 / 1;
  max-height: 560px;
  object-fit: contain;
  object-position: center center;
  background: rgba(245, 241, 232, 0.85);
}

.product-detail__gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(10, 59, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-900);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  line-height: 1;
}

.product-detail__gallery-control--prev {
  left: 0.75rem;
}

.product-detail__gallery-control--next {
  right: 0.75rem;
}

.product-detail__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
  align-items: flex-start;
}

.product-detail__gallery-item {
  width: 84px;
  padding: 0;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.product-detail__gallery-item.is-active {
  border-color: rgba(31, 101, 68, 0.34);
  box-shadow: inset 0 0 0 1px rgba(31, 101, 68, 0.22);
}

.product-detail__gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
}

.product-detail__content {
  padding: 1.2rem 1.2rem 1.25rem;
}

.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin: 0.75rem 0;
}

.product-detail__title {
  margin: 0.42rem 0 0.6rem;
  font-size: clamp(2rem, calc(3 * var(--vw)), 3rem);
  line-height: 1.02;
}

.feature-list {
  padding-left: 1rem;
  color: var(--text-700);
  line-height: 1.65;
  margin: 0.7rem 0 0;
}

.product-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: var(--text-700);
}

.product-detail__actions {
  margin-top: 1rem;
  align-items: stretch;
}

.quantity-picker {
  display: inline-grid;
  grid-template-columns: 44px minmax(72px, 90px) 44px;
  align-items: center;
  gap: 0.45rem;
}

.quantity-picker input,
.quantity-picker span {
  text-align: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
}

.quantity-picker--small {
  grid-template-columns: 38px 44px 38px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.product-detail {
  align-items: stretch;
  gap: 1.4rem;
  padding: 1.35rem 0 0.55rem;
}

.product-detail__media,
.product-detail__content,
.product-detail-body-card,
.product-detail-feature-strip {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: 0 18px 36px rgba(17, 47, 32, 0.08);
}

.product-detail__media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem;
}

.product-detail__stage {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 245, 238, 0.95), rgba(243, 237, 227, 0.85));
}

.product-detail__stage-image {
  min-height: 420px;
  height: 100%;
  max-height: min(68vh, 620px);
  border-radius: 22px;
  object-fit: contain;
  object-position: center center;
}

.product-detail__gallery-control {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--forest-900);
}

.product-detail__gallery-control:hover,
.product-detail__zoom:hover,
.product-detail-tabs__button:hover,
.product-detail__gallery-item:hover {
  border-color: rgba(31, 101, 68, 0.22);
  box-shadow: 0 10px 24px rgba(17, 47, 32, 0.12);
}

.product-detail__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(10, 59, 39, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest-900);
  box-shadow: var(--shadow-sm);
}

.product-detail__zoom .icon,
.product-detail__trust-icon .icon,
.product-detail-tabs__icon.icon,
.product-detail-feature-strip__icon .icon {
  width: 1rem;
  height: 1rem;
}

.product-zoom {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(0.65rem, calc(2.5 * var(--vw)), 2rem);
}

.product-zoom__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 24, 16, 0.76);
}

.product-zoom__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: min(1100px, 94vw);
  height: min(860px, 92vh);
  max-height: 92vh;
  padding: clamp(0.85rem, calc(2 * var(--vw)), 1.25rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 252, 245, 0.98);
  box-shadow: 0 28px 80px rgba(3, 22, 14, 0.36);
}

.product-zoom__image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(0.45rem, calc(1.2 * var(--vw)), 0.9rem);
  border-radius: 20px;
  background: #fff;
}

.product-zoom__image {
  pointer-events: none;
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
  background: #fff;
}

.product-zoom__close,
.product-zoom__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 59, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--forest-900);
  box-shadow: var(--shadow-sm);
}

.product-zoom__close {
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  font-size: 1.45rem;
  line-height: 1;
}

.product-zoom__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.product-zoom__nav--prev {
  left: 1rem;
}

.product-zoom__nav--next {
  right: 1rem;
}

.product-zoom__thumbs {
  display: flex;
  gap: 0.55rem;
  flex: 0 0 auto;
  max-height: 96px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.15rem 0 0.35rem;
}

.product-zoom__thumb {
  flex: 0 0 70px;
  width: 70px;
  padding: 0;
  border: 1px solid rgba(10, 59, 39, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.product-zoom__thumb.is-active {
  border-color: var(--forest-600);
  box-shadow: inset 0 0 0 2px rgba(31, 101, 68, 0.22);
}

.product-zoom__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail__gallery {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.6rem;
  margin-top: 0.85rem;
  max-width: 100%;
  max-height: 96px;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.product-detail__gallery-item {
  flex: 0 0 78px;
  width: 78px;
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-detail__gallery-item.is-active {
  border-color: var(--forest-600);
  box-shadow: inset 0 0 0 2px rgba(31, 101, 68, 0.2);
  transform: translateY(-1px);
}

.product-detail__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 1.35rem 1.45rem 1.3rem;
}

.product-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  align-items: center;
  color: var(--forest-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-detail__breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-detail__breadcrumb-separator {
  color: rgba(91, 108, 99, 0.58);
}

.product-detail__content .product-detail__title {
  margin: 0.5rem 0 0.65rem;
  width: 100%;
  max-width: none;
  font-size: clamp(1.62rem, calc(1.95 * var(--vw)), 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.product-detail__content .product-detail__subtitle {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.5;
}

.product-detail__content .product-detail__lead {
  margin-top: 0.25rem;
  width: 100%;
  font-size: 0.98rem;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-detail__benefits,
.product-detail-body__checks {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-detail__benefits li,
.product-detail-body__checks li {
  display: flex;
  gap: 0.6rem;
  align-items: start;
  color: var(--text-800);
}

.product-detail__benefit-check,
.product-detail-body__check {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  flex: 0 0 1.2rem;
  background: rgba(31, 101, 68, 0.1);
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-meta {
  margin-top: 1.05rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
}

.product-meta p {
  display: flex;
  gap: 0.45rem;
  font-size: 0.96rem;
  line-height: 1.55;
}

.product-detail__actions {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr 58px;
  gap: 0.75rem;
  align-items: stretch;
}

.product-detail__actions .button {
  justify-content: center;
}

.product-detail__actions .button .icon {
  width: 1rem;
  height: 1rem;
}

.product-detail__trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail__trust-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.product-detail__trust-item strong,
.product-detail__payment-row > span,
.product-detail-feature-strip__item h3,
.product-detail-body__copy h2,
.product-detail-body__copy h3 {
  color: var(--forest-900);
}

.product-detail__trust-item strong,
.product-detail-feature-strip__item h3 {
  display: block;
  font-size: 0.9rem;
}

.product-detail__trust-item span:last-child {
  color: var(--text-700);
  font-size: 0.82rem;
}

.product-detail__trust-icon,
.product-detail-feature-strip__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 101, 68, 0.14);
  background: rgba(245, 250, 246, 0.92);
  color: var(--forest-700);
  flex: 0 0 2.35rem;
}

.product-detail__payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail__payment-row > span {
  font-size: 0.84rem;
  font-weight: 700;
}

.product-detail__payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-detail__payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 59, 39, 0.08);
  background: rgba(252, 250, 246, 0.92);
  color: var(--forest-900);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-detail-body-card {
  margin-top: 1.15rem;
  border-radius: 26px;
  overflow: hidden;
}

.product-detail-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail-tabs__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 72px;
  padding: 1rem 1.1rem;
  border: 0;
  border-right: 1px solid rgba(10, 59, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-800);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-detail-tabs__button:last-child {
  border-right: 0;
}

.product-detail-tabs__button.is-active {
  color: var(--forest-900);
}

.product-detail-tabs__button.is-active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--forest-700);
}

.product-detail-tabs__count {
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: var(--forest-700);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-detail-body__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.96fr);
  gap: 2rem;
  padding: 1.25rem;
}

.product-detail-body__content--single {
  grid-template-columns: 1fr;
}

.product-detail-body__copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.product-detail-body__copy h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.6rem, calc(2.1 * var(--vw)), 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-detail-body__copy h3 {
  margin: 0;
  font-size: 1rem;
}

.product-detail-body__copy p,
.product-detail-feature-strip__item p {
  margin: 0;
  color: var(--text-700);
  line-height: 1.7;
}

.product-detail-body__description-text {
  white-space: normal;
}

.product-detail-body__description-media {
  display: grid;
  gap: 0.85rem;
  margin: 0.35rem 0 0.25rem;
  width: min(70%, 840px);
  max-width: 840px;
  justify-self: start;
  justify-items: start;
}

.product-detail-body__description-image {
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  display: block;
  margin-inline: 0;
  border-radius: 18px;
  background: rgba(251, 248, 243, 0.96);
  object-fit: contain;
  box-shadow: 0 14px 34px rgba(10, 59, 39, 0.08);
}

.product-detail-body__description-line,
.product-detail-body__description-heading,
.product-detail-body__description-gap {
  display: block;
}

.product-detail-body__description-heading {
  margin-top: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--text-900);
}

.product-detail-body__description-heading:first-child {
  margin-top: 0;
}

.product-detail-body__description-line + .product-detail-body__description-line {
  margin-top: 0.18rem;
}

.product-detail-body__description-gap {
  height: 0.65rem;
}

.product-detail-body__info-block {
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail-body__spec-table {
  margin-top: 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 59, 39, 0.08);
  overflow: hidden;
  background: rgba(249, 248, 244, 0.92);
}

.product-detail-body__spec-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail-body__spec-row:last-child {
  border-bottom: 0;
}

.product-detail-body__spec-row strong {
  font-size: 0.9rem;
}

.product-detail-body__spec-row span {
  color: var(--text-700);
  font-size: 0.92rem;
}

.product-detail-body__visuals {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.product-detail-body__visual,
.product-detail-body__visual-grid img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: contain;
  object-position: center center;
  background: rgba(251, 248, 243, 0.96);
}

.product-detail-body__visual--hero {
  aspect-ratio: 1.32 / 1;
}

.product-detail-body__visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-detail-body__visual--detail {
  aspect-ratio: 1 / 0.82;
}

.product-detail-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 1rem auto 0;
  padding: 0.5rem 0;
  border-radius: 24px;
}

.product-detail-feature-strip__item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail-feature-strip__item:last-child {
  border-right: 0;
}

.story-grid,
.cart-layout,
.account-panel {
  display: grid;
  gap: 1.4rem;
}

.story-grid,
.cart-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 1rem 0 2rem;
}

.story-brand-panel,
.support-hero,
.empty-state,
.account-panel {
  padding: 1.5rem;
}

.story-brand-panel img {
  width: 200px;
  margin-bottom: 1rem;
}

.info-grid {
  padding-top: 0;
}

.info-card,
.faq-item {
  border-radius: var(--radius-md);
  padding: 1.35rem;
}

.info-card__detail {
  color: var(--forest-700);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: var(--shadow-sm);
}

.cart-item img {
  border-radius: 20px;
}

.cart-item__copy {
  display: grid;
  gap: 0.35rem;
}

.cart-item__copy a {
  font-weight: 700;
  font-size: 1.05rem;
}

.cart-item__variant {
  color: var(--forest-700);
  font-weight: 800;
}

.cart-item__stock-note {
  color: var(--forest-800);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-item__actions {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.cart-summary {
  padding: 1.35rem;
  height: fit-content;
  position: sticky;
  top: 7.5rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 1.35rem;
  padding: 1.35rem 0 2.2rem;
}

.checkout-panel,
.checkout-summary {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: var(--shadow-sm);
}

.checkout-panel {
  padding: 1.5rem;
}

.checkout-panel h1,
.checkout-summary h2 {
  margin: 0.35rem 0 1rem;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-message {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 59, 39, 0.12);
  background: rgba(245, 241, 232, 0.78);
  color: var(--text-700);
  line-height: 1.55;
}

.checkout-message--ready {
  border-color: rgba(43, 124, 70, 0.26);
  background: rgba(225, 246, 226, 0.74);
  color: var(--forest-700);
}

.checkout-message--error {
  border-color: rgba(150, 42, 42, 0.28);
  background: rgba(255, 235, 232, 0.84);
  color: #7a2424;
}

.checkout-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-700);
  font-weight: 700;
}

.checkout-form input {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 1rem;
}

.checkout-form__note {
  margin: -0.2rem 0 0;
  color: var(--text-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-form__hint {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-700);
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-summary {
  padding: 1.25rem;
  height: fit-content;
  position: sticky;
  top: 7.5rem;
}

.checkout-summary__note {
  margin: 0.75rem 0 0;
  color: var(--text-700);
  font-size: 0.85rem;
  line-height: 1.5;
}

.checkout-summary__items {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.checkout-item img {
  width: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(245, 241, 232, 0.85);
}

.checkout-item div {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.checkout-item strong {
  line-height: 1.25;
}

.checkout-item span,
.checkout-item small {
  color: var(--text-700);
  font-size: 0.85rem;
}

.summary-row {
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.summary-row--total {
  border-bottom: 0;
  padding-top: 1rem;
}

.checkout-result {
  padding: 2rem 0 3rem;
}

.checkout-result__panel {
  max-width: 720px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: var(--shadow-sm);
}

.checkout-result__panel h1 {
  margin: 0.35rem 0 0.8rem;
}

.checkout-result__panel p {
  color: var(--text-700);
  line-height: 1.65;
}

.checkout-result__order-number {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.checkout-result__order-number strong {
  font-variant-numeric: tabular-nums;
  color: var(--text-900, inherit);
}

.checkout-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.text-button {
  padding: 0;
  background: transparent;
  color: var(--forest-700);
  font-weight: 700;
}

.account-panel {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 59, 39, 0.07);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.account-panel__brand img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.empty-state {
  text-align: center;
  max-width: 760px;
  margin: 2rem auto;
}

.empty-state__icon {
  margin: 0 auto 1rem;
}

.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 12, 0.58);
  backdrop-filter: blur(3px);
  z-index: 80;
}

.newsletter-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, calc(100% - 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  z-index: 81;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.newsletter-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.newsletter-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-modal__content {
  padding: 2.2rem 2rem;
}

.newsletter-modal__logo {
  width: 168px;
  margin-bottom: 1rem;
}

.newsletter-modal h2 {
  margin: 0.75rem 0;
  font-size: clamp(2rem, calc(4 * var(--vw)), 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.newsletter-form {
  margin-top: 1.2rem;
}

.newsletter-form__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 1rem;
  margin-bottom: 0.85rem;
}

.newsletter-form__field input {
  border: 0;
  background: transparent;
  min-height: 48px;
  padding: 0;
}

.newsletter-modal__dismiss {
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--text-700);
}

.newsletter-form-status {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.newsletter-form-status--success {
  color: #0b5a3f;
}

.newsletter-form-status--error {
  color: #a12a1f;
}

.site-footer {
  margin-top: 2rem;
  /* Extra bottom padding parks the fixed chat bubble (#ck-chat-root, ~106px tall
     at bottom: 1.5rem) over empty space instead of the copyright/legal lines
     when the page is scrolled all the way down. */
  padding: 2rem 0 9rem;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(10, 59, 39, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-brand img {
  width: 184px;
  margin-bottom: 0.8rem;
}

.footer-links,
.footer-brand,
.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links a,
.footer-policies a,
.footer-copy {
  color: var(--text-700);
}

.footer-subscribe-form {
  align-items: center;
}

.footer-subscribe-form input {
  min-width: 0;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 59, 39, 0.07);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials,
.footer-policies {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Consumer copyright line stays primary; the legal operator sits under it as
   quiet secondary text (CanopyKind is the brand, VeraLayer Studio LLC the
   company behind it). */
.footer-legal {
  display: grid;
  gap: 0.15rem;
}

.footer-entity {
  color: var(--text-400);
  font-size: 0.82rem;
}

.home-landing {
  display: grid;
  gap: 1.15rem;
  padding-top: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(251, 248, 243, 0.96) 62%, rgba(255, 255, 255, 0.98));
}

.home-landing-hero__stage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 14px;
  background: #f8f5ed;
  isolation: isolate;
}

.home-landing-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(1.01);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-landing-hero__slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.home-landing-hero__image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-landing-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.9) 32%, rgba(255, 253, 249, 0.34) 56%, rgba(255, 253, 249, 0.04) 100%),
    linear-gradient(0deg, rgba(10, 59, 39, 0.1), transparent 32%);
  pointer-events: none;
}

.home-landing-hero__copy {
  position: absolute;
  left: clamp(2rem, 5%, 4.5rem);
  top: 50%;
  z-index: 2;
  width: min(690px, 51%);
  transform: translateY(-50%);
  color: var(--forest-900);
}

.home-landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-700);
}

.home-landing-hero__eyebrow .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.home-landing-hero h2 {
  margin: 1rem 0 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 5.4vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--forest-900);
}

.home-landing-hero p {
  max-width: 30rem;
  margin: 0;
  color: var(--text-800);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home-landing-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 1.45rem;
}

.home-landing-hero__text-link,
.home-landing-heading__link,
.home-landing-impact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--forest-800);
  font-weight: 800;
}

.home-landing-hero__text-link .icon,
.home-landing-heading__link .icon,
.home-landing-impact a .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.home-landing-hero__product-card {
  position: absolute;
  right: clamp(3rem, 14%, 15rem);
  bottom: 10rem;
  z-index: 2;
  width: min(240px, 22%);
  display: grid;
  gap: 0.22rem;
  padding: 1.05rem 1.15rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 59, 39, 0.08);
  color: var(--forest-900);
  box-shadow: 0 20px 45px rgba(20, 48, 31, 0.12);
}

.home-landing-hero__product-card strong {
  font-size: 1rem;
  line-height: 1.22;
}

.home-landing-hero__product-card span {
  color: var(--text-700);
  font-size: 0.82rem;
}

.home-landing-hero__product-card b {
  margin-top: 0.28rem;
  font-size: 1.02rem;
}

.home-landing-hero__product-card i {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(10, 59, 39, 0.2);
  border-radius: 999px;
  color: var(--forest-800);
  font-style: normal;
}

.home-landing-hero__product-card i .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.home-landing-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-800);
  box-shadow: 0 14px 28px rgba(17, 47, 32, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
}

.home-landing-hero__nav--prev {
  left: 1.05rem;
}

.home-landing-hero__nav--next {
  right: 1.05rem;
}

.home-landing-hero__nav .icon {
  width: 1.3rem;
  height: 1.3rem;
}

.home-landing-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.home-landing-hero__dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 74, 49, 0.25);
  cursor: pointer;
}

.home-landing-hero__dot.is-active {
  background: var(--forest-800);
}

/* Column count follows the number of categories rather than a fixed 8, so the
   rail stays evenly divided when one is added or removed. */
.home-category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.06);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
}

.home-category-rail__item {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  padding: 0.8rem 1rem;
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 800;
  border-right: 1px solid rgba(10, 59, 39, 0.09);
}

.home-category-rail__item:last-child {
  border-right: 0;
}

.home-category-rail__item .icon {
  width: 1.75rem;
  height: 1.75rem;
}

.home-landing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0.35rem;
}

.home-landing-heading h2,
.home-landing-feature-banner h2,
.home-landing-impact h2,
.home-landing-newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--forest-900);
}

.home-landing-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
}

.home-landing-product-card {
  min-width: 0;
  display: grid;
  border: 1px solid rgba(10, 59, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

.home-landing-product-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  background: #ffffff;
}

.home-landing-product-card__media img {
  width: 100%;
  height: 100%;
  padding: 0.9rem;
  object-fit: contain;
  box-sizing: border-box;
}

.product-hover-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card__image-link:hover .product-hover-gallery,
.product-card__image-link:focus-visible .product-hover-gallery,
.home-featured-card__media:hover .product-hover-gallery,
.home-featured-card__media:focus-visible .product-hover-gallery,
.home-landing-product-card__media:hover .product-hover-gallery,
.home-landing-product-card__media:focus-visible .product-hover-gallery {
  opacity: 1;
}

.product-hover-gallery__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 210ms ease, transform 320ms ease;
}

.product-hover-gallery__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-hover-gallery--cover .product-hover-gallery__image {
  object-fit: cover;
}

.product-hover-gallery--contain .product-hover-gallery__image {
  padding: 0.9rem;
  object-fit: contain;
}

.home-featured-card__media .product-hover-gallery--contain .product-hover-gallery__image {
  min-height: 0;
  padding: 0.85rem;
}

.product-hover-gallery__zones {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-hover-gallery:hover .product-hover-gallery__zones {
  opacity: 1;
}

.product-hover-gallery__zone {
  display: block;
  min-width: 0;
}

.product-hover-gallery__zone--previous {
  background: linear-gradient(90deg, rgba(6, 69, 47, 0.18), transparent 62%);
}

.product-hover-gallery__zone--next {
  background: linear-gradient(270deg, rgba(6, 69, 47, 0.16), transparent 62%);
}

.product-hover-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 0.72rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.3rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(8, 37, 26, 0.28);
  box-shadow: 0 8px 24px rgba(8, 37, 26, 0.16);
  backdrop-filter: blur(10px);
  pointer-events: none;
  transform: translateX(-50%);
}

.product-hover-gallery__dot {
  width: 0.34rem;
  height: 0.34rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(8, 37, 26, 0.08);
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.product-hover-gallery__dot.is-active {
  width: 1.05rem;
  background: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .product-hover-gallery,
  .product-hover-gallery__image,
  .product-hover-gallery__zones,
  .product-hover-gallery__dot {
    transition: none;
  }
}

.home-landing-product-card__body {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 0.38rem;
  padding: 0.95rem 1rem 1rem;
}

.home-landing-product-card__title {
  color: var(--forest-900);
  font-weight: 850;
  line-height: 1.2;
}

.home-landing-product-card__body p {
  display: -webkit-box;
  min-height: 2.4em;
  margin: 0;
  overflow: hidden;
  color: var(--text-700);
  font-size: 0.86rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-landing-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.home-landing-product-card__footer strong {
  color: var(--forest-900);
  font-size: 1rem;
}

.home-landing-product-card__link {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(10, 59, 39, 0.2);
  border-radius: 999px;
  color: var(--forest-800);
  flex-shrink: 0;
}

.home-landing-product-card__link .icon {
  width: 0.9rem;
  height: 0.9rem;
}

.home-landing-feature-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem;
  padding-top: 1.2rem;
}

.home-landing-feature-banner {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--forest-900);
  isolation: isolate;
}

.home-landing-feature-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-landing-feature-banner:hover img {
  transform: scale(1.03);
}

.home-landing-feature-banner > span {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.58) 46%, rgba(255, 253, 249, 0.04));
}

.home-landing-feature-banner > div {
  position: relative;
  z-index: 2;
  width: min(270px, 56%);
  display: grid;
  gap: 0.6rem;
  padding: 2rem;
}

.home-landing-feature-banner p {
  margin: 0;
  color: var(--text-800);
  line-height: 1.45;
}

.home-landing-feature-banner b {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: var(--forest-800);
  color: #ffffff;
  font-size: 0.82rem;
}

.home-landing-feature-banner b .icon {
  width: 0.86rem;
  height: 0.86rem;
}

.home-landing-collections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.home-landing-collection-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--forest-900);
}

.home-landing-collection-card img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  object-position: center 48%;
}

.home-landing-collection-card--home-living img {
  object-position: center 42%;
}

.home-landing-collection-card--kitchen img {
  object-position: center 45%;
}

.home-landing-collection-card--cleaning img {
  object-position: center 46%;
}

.home-landing-collection-card--travel-on-the-go img {
  object-position: center 48%;
}

.home-landing-collection-card div {
  padding: 0.9rem 1rem 1rem;
}

.home-landing-collection-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.home-landing-collection-card p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.86rem;
}

.home-landing-new-impact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 1.45rem;
  align-items: stretch;
}

.home-landing-new-impact .home-landing-heading {
  padding-top: 0.55rem;
}

.home-landing-new-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-landing-new-grid .home-landing-product-card__body {
  min-height: 128px;
}

.home-landing-impact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 253, 249, 0.98), rgba(239, 245, 235, 0.96));
}

.home-landing-impact p {
  margin: 0.75rem 0 1rem;
  color: var(--text-700);
  line-height: 1.55;
}

.home-landing-impact__icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-landing-impact__icons > span {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0.45rem;
  border-left: 1px solid rgba(10, 59, 39, 0.1);
  text-align: center;
  color: var(--forest-800);
}

.home-landing-impact__icons > span:first-child {
  border-left: 0;
}

.home-landing-impact__icons .icon {
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: content-box;
  padding: 0.6rem;
  border-radius: 999px;
  background: rgba(15, 74, 49, 0.07);
  color: var(--forest-700);
}

.home-landing-impact__icons b {
  max-width: 9ch;
  font-size: 0.78rem;
  line-height: 1.25;
}

.home-landing-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 0.4rem;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
}

.home-landing-benefit-strip > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(10, 59, 39, 0.09);
}

.home-landing-benefit-strip > div:last-child {
  border-right: 0;
}

.home-landing-benefit-strip .icon {
  width: 2rem;
  height: 2rem;
  color: var(--forest-700);
  flex-shrink: 0;
}

.home-landing-benefit-strip strong {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--forest-900);
  font-size: 0.9rem;
}

.home-landing-benefit-strip p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.82rem;
  line-height: 1.35;
}

.home-landing-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 2rem;
  align-items: center;
  margin-top: 0.45rem;
  padding: 1.25rem 1.6rem;
  border: 1px solid rgba(10, 59, 39, 0.07);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(235, 242, 232, 0.9), rgba(255, 253, 249, 0.96));
}

.home-landing-newsletter > div {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.home-landing-newsletter img {
  width: 120px;
  height: 96px;
  object-fit: contain;
}

.home-landing-newsletter p {
  margin: 0.45rem 0 0;
  color: var(--text-700);
}

.home-landing-newsletter__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-landing-newsletter__form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(10, 59, 39, 0.1);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1180px) {
  .home-landing-hero h2 {
    font-size: 4.05rem;
  }

  .home-landing-hero__copy {
    width: min(560px, 52%);
  }

  .home-landing-hero__product-card {
    right: 5rem;
    width: 230px;
  }

  .home-landing-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-landing-new-impact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .home-landing {
    gap: 1rem;
  }

  .home-landing-hero__stage,
  .home-landing-hero__image {
    min-height: 470px;
  }

  .home-landing-hero__copy {
    width: min(520px, 62%);
  }

  .home-landing-hero h2 {
    font-size: 3.35rem;
  }

  .home-landing-hero__product-card {
    display: none;
  }

  .home-category-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-category-rail__item:nth-child(4n) {
    border-right: 0;
  }

  .home-category-rail__item:nth-child(n + 5) {
    border-top: 1px solid rgba(10, 59, 39, 0.09);
  }

  .home-landing-feature-banners,
  .home-landing-newsletter {
    grid-template-columns: 1fr;
  }

  .home-landing-collections,
  .home-landing-new-grid,
  .home-landing-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-landing-benefit-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .home-landing-benefit-strip > div:nth-child(n + 3) {
    border-top: 1px solid rgba(10, 59, 39, 0.09);
  }
}

@media (max-width: 680px) {
  .home-landing {
    padding-top: 0.55rem;
  }

  .home-landing-hero__stage {
    display: grid;
    min-height: 0;
    border-radius: 8px;
  }

  .home-landing-hero__slide {
    display: grid;
    transform: none;
  }

  .home-landing-hero__slide.is-active {
    position: relative;
  }

  .home-landing-hero__image {
    height: 260px;
    min-height: 260px;
    object-position: 62% center;
  }

  .home-landing-hero__overlay {
    display: none;
  }

  .home-landing-hero__copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: 1.25rem;
    background: #fffdf9;
    transform: none;
  }

  .home-landing-hero h2 {
    font-size: 2.9rem;
    line-height: 1;
  }

  .home-landing-hero p {
    font-size: 1rem;
  }

  .home-landing-hero__actions,
  .home-landing-heading,
  .home-landing-newsletter__form {
    display: grid;
    align-items: stretch;
  }

  .home-landing-hero__nav {
    top: 130px;
    width: 2.75rem;
    height: 2.75rem;
  }

  .home-landing-hero__dots {
    top: 235px;
    bottom: auto;
  }

  .home-category-rail {
    display: flex;
    overflow-x: auto;
    border-radius: 8px;
  }

  .home-category-rail__item {
    min-width: 150px;
    border-top: 0 !important;
    border-right: 1px solid rgba(10, 59, 39, 0.09) !important;
  }

  .home-landing-products-grid,
  .home-landing-collections,
  .home-landing-new-grid,
  .home-landing-benefit-strip,
  .home-landing-impact,
  .home-landing-impact__icons {
    grid-template-columns: 1fr;
  }

  .home-landing-feature-banner {
    min-height: 300px;
  }

  .home-landing-feature-banner > div {
    width: min(290px, 70%);
    padding: 1.35rem;
  }

  .home-landing-impact,
  .home-landing-newsletter {
    padding: 1.25rem;
  }

  .home-landing-impact__icons > span {
    border-left: 0;
    border-top: 1px solid rgba(10, 59, 39, 0.1);
  }

  .home-landing-impact__icons > span:first-child {
    border-top: 0;
  }

  .home-landing-benefit-strip > div {
    border-right: 0;
    border-top: 1px solid rgba(10, 59, 39, 0.09);
  }

  .home-landing-benefit-strip > div:first-child {
    border-top: 0;
  }

  .home-landing-newsletter > div {
    display: grid;
    gap: 0.85rem;
  }

  .home-landing-newsletter img {
    width: 92px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-landing-hero__slide {
    transition: none;
  }
}

@media (max-width: 1499px) and (min-width: 1121px) {
  .hero-banner__stage {
    min-height: 390px;
    height: 390px;
  }

  .hero-banner__content {
    width: min(47%, 590px);
  }

  .hero-banner h1 {
    font-size: clamp(3.25rem, 4.6vw, 3.9rem);
    line-height: 0.96;
  }

  .hero-banner p {
    max-width: 43rem;
    font-size: 1.02rem;
  }

  .hero-banner__badges {
    gap: 0.58rem;
  }
}

@media (max-width: 1120px) {
  .hero-banner__stage {
    min-height: clamp(500px, 51vw, 550px);
    height: clamp(500px, 51vw, 550px);
    overflow: hidden;
  }

  .hero-banner__image {
    height: 100%;
  }

  .hero-banner__content {
    width: min(55%, 590px);
  }

  /* Ten uppercase category labels only just fit down to the 920px hamburger
     breakpoint, so tracking and gaps tighten instead of overflowing the row. */
  .nav-links {
    gap: 0.5rem;
    row-gap: 0.5rem;
    padding: 0.42rem 0 0.48rem;
  }

  .nav-link {
    font-size: 0.66rem;
    letter-spacing: 0.01em;
  }

  .nav-link__caret {
    width: 0.62rem;
    height: 0.62rem;
  }

  .site-header__top {
    grid-template-columns: minmax(min-content, 1fr) minmax(260px, 560px) minmax(min-content, 1fr);
  }

  .product-grid,
  .benefits-row,
  .info-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-featured-grid .product-grid--home-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid--home-garden {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-garden-feature__image img {
    aspect-ratio: 16 / 10;
    min-height: 460px;
  }

  .home-routine__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-spotlight {
    grid-template-columns: 1fr;
  }

  .home-spotlight__media {
    min-height: 320px;
  }

  .home-category-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-category-feature:nth-child(1),
  .home-category-feature:nth-child(4) {
    grid-row: span 1;
  }

  .promo-strip--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .promo-strip__lead,
  .promo-strip__feature {
    padding: 0;
  }

  .promo-strip__feature {
    border-left: 0;
  }

  .promo-strip__cta {
    margin-left: 0;
    width: 100%;
  }

  .benefits-row--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail__title {
    max-width: 18ch;
  }

  .product-detail__actions,
  .product-detail-body__content,
  .product-detail-feature-strip {
    grid-template-columns: 1fr;
  }

  .product-detail__trust-row {
    grid-template-columns: 1fr;
  }

  .product-detail-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-summary,
  .filter-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    scrollbar-gutter: auto;
  }
}

@media (max-width: 920px) {
  .site-header__top {
    grid-template-columns: 1fr auto;
  }

  .site-logo {
    order: 1;
    padding-inline: 0;
  }

  .search-form {
    grid-column: 1 / -1;
    order: 3;
  }

  .header-actions {
    order: 2;
  }

  .header-action span,
  .header-action b {
    display: none;
  }

  .header-action--contact {
    display: none;
  }

  .icon-button.header-menu-toggle {
    display: inline-grid;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0 1rem;
  }

  .nav-item {
    width: 100%;
    display: grid;
    gap: 0.45rem;
  }

  .nav-item::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    max-width: 100%;
    min-width: 0;
    padding: 0.5rem 0 0 0.9rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  /* Belt-and-braces against any other hover/focus rule reaching this panel. */
  .nav-item.is-mobile-open .nav-dropdown,
  .nav-item.is-mobile-open:hover .nav-dropdown,
  .nav-item.is-mobile-open:focus-within .nav-dropdown {
    display: block;
    position: static;
    transform: none;
    left: auto;
    right: auto;
  }

  .nav-item.is-mobile-open .nav-link__caret {
    transform: rotate(180deg);
  }

  .nav-dropdown__overview,
  .nav-dropdown__link {
    padding: 0.45rem 0;
    background: transparent;
  }

  .collection-hero__content,
  .product-detail,
  .newsletter-modal,
  .account-panel {
    grid-template-columns: 1fr;
  }

  .product-detail__gallery {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .product-detail__gallery-item {
    flex: 0 0 76px;
  }

  .product-detail__stage-image {
    max-height: 440px;
  }

  .hero-banner {
    padding-top: 0;
    background: var(--sand-100);
  }

  .hero-banner__stage {
    display: grid;
    min-height: 0;
    height: auto;
    overflow: visible;
    background: linear-gradient(180deg, #ffffff 0%, var(--sand-100) 100%);
  }

  .hero-banner__stage::before {
    display: none;
  }

  .hero-banner__image {
    width: 100%;
    height: clamp(190px, 32vw, 270px);
    object-position: 70% 42%;
  }

  .hero-banner__content {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    display: block;
    padding: clamp(1rem, 4vw, 1.6rem);
  }

  .hero-banner__copy {
    width: min(100%, 640px);
    padding: 0;
  }

  .hero-banner h1 {
    margin: 0.55rem 0 0.8rem;
    font-size: clamp(2.35rem, 7.2vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .hero-banner p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-banner__badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-hero {
    min-height: 320px;
  }

  .collection-hero--embedded {
    min-height: 0;
  }

  .collection-hero__content {
    min-height: 320px;
  }

  .collection-hero__copy {
    max-width: 360px;
  }

  .trust-badges-row,
  .product-grid,
  .benefits-row,
  .info-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-featured-grid .product-grid--home-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-spotlight__copy h2 {
    max-width: 14ch;
  }

  .home-category-showcase__grid {
    grid-auto-rows: 220px;
  }

  .benefits-row--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-content {
    order: 1;
  }

  .collection-layout > .filter-sidebar {
    display: none;
  }

  .mobile-filter-sheet {
    display: block;
    position: relative;
  }

  .mobile-filter-sheet__trigger {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    border: 1px solid rgba(10, 59, 39, 0.12);
    border-radius: 999px;
    color: var(--forest-900);
    background: #fff;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
  }

  .mobile-filter-sheet__trigger::-webkit-details-marker {
    display: none;
  }

  .mobile-filter-sheet__trigger .icon {
    width: 1rem;
    height: 1rem;
  }

  .mobile-filter-sheet__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.7rem);
    z-index: 30;
    width: min(420px, calc(100vw - 2rem));
    max-height: min(72vh, 640px);
    overflow: auto;
    padding: 1rem;
    border: 1px solid rgba(10, 59, 39, 0.12);
    border-radius: 16px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: 0 24px 58px rgba(17, 47, 32, 0.18);
  }

  .mobile-filter-sheet .filter-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .mobile-filter-sheet .filter-form__apply {
    display: inline-flex;
  }

  .collection-content .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--content-max), calc(100% - 1rem));
  }

  .site-footer {
    padding-top: 1rem;
  }

  .hero-banner .container {
    width: min(var(--hero-max), calc(100% - 1rem));
  }

  .collection-toolbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.65rem;
  }

  .collection-showcase {
    gap: 1rem;
    padding-block: 1rem 0.5rem;
  }

  .collection-browse-section,
  .collection-product-shelf,
  .collection-editorial-grid {
    padding: 1rem;
  }

  .collection-section-head {
    display: grid;
    align-items: start;
  }

  .collection-section-link {
    width: max-content;
  }

  .collection-browse-grid,
  .collection-product-shelf__grid,
  .collection-editorial-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-feature-strip,
  .collection-promise-strip {
    grid-template-columns: 1fr;
  }

  .collection-feature-strip > div,
  .collection-promise-strip > div {
    border-right: 0;
    border-top: 1px solid rgba(10, 59, 39, 0.09);
  }

  .collection-feature-strip > div:first-child,
  .collection-promise-strip > div:first-child {
    border-top: 0;
  }

  .collection-editorial-feature {
    min-height: 330px;
  }

  .collection-editorial-feature > span {
    width: auto;
    padding: 1.25rem;
  }

  .about-mockup-body {
    width: min(var(--content-max), calc(100% - 1rem));
    gap: 1rem;
  }

  .about-mission-showcase,
  .about-curation-process,
  .about-faq-card,
  .about-question-card {
    padding: 1rem;
  }

  .about-mission-showcase__cards,
  .about-standards__grid,
  .about-shop-reasons > div,
  .about-curation-process ol {
    grid-template-columns: 1fr;
  }

  .about-mission-showcase__cards article,
  .about-standards__grid article,
  .about-shop-reasons article {
    border-left: 0;
    border-top: 1px solid rgba(10, 59, 39, 0.08);
  }

  .about-mission-showcase__cards article:first-child,
  .about-standards__grid article:first-child {
    border-top: 0;
  }

  .about-loop-card,
  .about-loop-card__form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-loop-card img {
    min-height: 180px;
  }

  .collection-toolbar__meta {
    min-width: 0;
    font-size: 0.84rem;
  }

  .collection-sort {
    gap: 0.4rem;
  }

  .collection-sort label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
  }

  .collection-sort select {
    min-width: 116px;
    min-height: 44px;
    padding-inline: 0.75rem;
  }

  .hero-banner__image {
    height: clamp(150px, 44vw, 190px);
  }

  .hero-banner__content {
    padding: 1.15rem 1rem 1.25rem;
  }

  .hero-banner h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
    line-height: 1.02;
  }

  .hero-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-banner__badges {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.95rem;
  }

  .hero-inline-badge {
    align-items: flex-start;
  }

  .collection-hero {
    min-height: 280px;
  }

  .collection-hero--embedded {
    min-height: 0;
  }

  .collection-hero__overlay {
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.96) 0%, rgba(251, 248, 243, 0.86) 36%, rgba(251, 248, 243, 0.5) 70%, rgba(251, 248, 243, 0.18) 100%);
  }

  .collection-hero__image {
    object-position: 24% 50%;
  }

  .collection-hero__content {
    min-height: 280px;
    align-items: flex-end;
  }

  .collection-hero__copy {
    max-width: none;
    padding: 1.5rem 0;
  }

  .promo-strip,
  .section-heading-row,
  .cart-item,
  .footer-bottom,
  .footer-subscribe-form {
    display: grid;
  }

  .section-heading-row,
  .promo-strip {
    gap: 0.75rem;
  }

  .product-grid,
  .benefits-row,
  .info-grid,
  .category-grid,
  .trust-badges-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-featured-grid .product-grid--home-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--home-garden {
    grid-template-columns: 1fr;
  }

  .home-garden-feature__image {
    border-radius: 16px;
  }

  .home-garden-feature__image img {
    aspect-ratio: 3 / 5;
    min-height: 520px;
  }

  .home-routine__grid,
  .home-category-showcase__grid {
    grid-template-columns: 1fr;
  }

  .home-routine-tile {
    min-height: 245px;
  }

  .home-spotlight {
    border-radius: 16px;
  }

  .home-spotlight__media {
    min-height: 250px;
  }

  .home-spotlight__copy {
    padding: 1.25rem;
  }

  .home-spotlight__copy h2 {
    max-width: none;
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .home-category-showcase__grid {
    grid-auto-rows: 230px;
  }

  .promo-strip--home,
  .benefits-row--home {
    grid-template-columns: 1fr;
  }

  .collection-content .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-sort {
    justify-content: space-between;
  }

  .collection-sort select {
    min-width: 0;
    width: 100%;
  }

  .product-detail {
    gap: 1rem;
    padding-top: 1rem;
  }

  .product-detail__media,
  .product-detail__content,
  .product-detail-body__content,
  .product-detail-feature-strip__item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-detail__content {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .product-detail__content .product-detail__title {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    -webkit-line-clamp: unset;
  }

  .product-detail__stage-image {
    min-height: 0;
    max-height: 420px;
  }

  .product-detail__content .product-detail__lead {
    -webkit-line-clamp: unset;
  }

  .product-detail__gallery {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .product-detail__gallery-item {
    flex: 0 0 72px;
    width: 72px;
  }

  .product-detail__zoom {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .product-zoom {
    padding: 0.5rem;
  }

  .product-zoom__dialog {
    width: 96vw;
    height: 94vh;
    max-height: 94vh;
    gap: 0.6rem;
    padding: 0.7rem;
    border-radius: 20px;
  }

  .product-zoom__image-frame {
    border-radius: 16px;
  }

  .product-zoom__close {
    top: 0.65rem;
    right: 0.65rem;
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .product-zoom__nav {
    width: 40px;
    height: 40px;
  }

  .product-zoom__nav--prev {
    left: 0.65rem;
  }

  .product-zoom__nav--next {
    right: 0.65rem;
  }

  .product-zoom__thumbs {
    max-height: 78px;
    gap: 0.45rem;
    padding-bottom: 0.25rem;
  }

  .product-zoom__thumb {
    flex-basis: 58px;
    width: 58px;
    border-radius: 12px;
  }

  .product-detail__actions {
    grid-template-columns: 1fr;
  }

  .quantity-picker {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .product-detail-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail-tabs__button {
    min-height: 60px;
    padding: 0.85rem 0.7rem;
    font-size: 0.86rem;
  }

  .product-detail-body__content {
    gap: 1rem;
    padding: 1rem;
  }

  .product-detail-body__copy h2 {
    max-width: none;
  }

  .product-detail-body__description-image {
    width: 100%;
  }

  .product-detail-body__description-media {
    width: 100%;
  }

  .product-detail-body__visual-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-feature-strip {
    grid-template-columns: 1fr;
  }

  .product-detail-feature-strip__item {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 59, 39, 0.08);
  }

  .product-detail-feature-strip__item:last-child {
    border-bottom: 0;
  }

  .product-card__price-row,
  .summary-row,
  .footer-bottom {
    align-items: flex-start;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__actions {
    justify-items: start;
  }

  .newsletter-modal__content {
    padding: 1.5rem 1.2rem;
  }

  .newsletter-modal__media {
    display: none;
  }

  .newsletter-modal {
    width: min(420px, calc(100% - 1rem));
    max-height: calc(100dvh - 1rem);
    grid-template-columns: 1fr;
    border-radius: 24px;
    overflow-y: auto;
  }

  .newsletter-modal__logo {
    width: 70px;
    margin-bottom: 0.4rem;
  }

  .newsletter-modal h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    letter-spacing: -0.035em;
  }

  .newsletter-form__field {
    align-items: stretch;
    flex-direction: column;
    padding: 0.85rem 1rem;
  }

  .newsletter-form__field input {
    width: 100%;
  }
}

/* Final product-detail overrides: mockup-style storefront PDP */
.product-detail {
  grid-template-columns: minmax(560px, 1.02fr) minmax(480px, 0.98fr);
  gap: 0.35rem;
  align-items: stretch;
  padding: 1.55rem 0 0.7rem;
}

.product-detail__media,
.product-detail__content,
.product-detail-body-card {
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(17, 47, 32, 0.08);
}

.product-detail__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 1rem;
}

.product-detail__media:has(.product-detail__thumb-rail) {
  grid-template-columns: 116px minmax(0, 1fr);
}

.product-detail__thumb-rail {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 720px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.2rem;
  scrollbar-width: thin;
}

.product-detail__gallery-item {
  flex: 0 0 auto;
  width: 112px;
  height: 112px;
  padding: 0;
  border: 1px solid rgba(10, 59, 39, 0.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.product-detail__gallery-item.is-active {
  border-color: var(--forest-700);
  box-shadow: inset 0 0 0 2px rgba(31, 101, 68, 0.22);
  transform: none;
}

.product-detail__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.product-detail__more-thumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.92);
  color: var(--forest-800);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-detail__stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  align-self: start;
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  cursor: zoom-in;
  outline: none;
}

.product-detail__stage.is-zoom-locked {
  cursor: zoom-out;
}

.product-detail__stage-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 22px;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 0.18s ease;
  will-change: transform;
}

.product-detail__stage.is-zooming .product-detail__stage-image,
.product-detail__stage.is-zoom-locked .product-detail__stage-image {
  transform: scale(2.05);
}

.product-detail__zoom-lens {
  position: absolute;
  left: var(--zoom-x, 50%);
  top: var(--zoom-y, 50%);
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(7, 32, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.product-detail__stage.is-zooming .product-detail__zoom-lens,
.product-detail__stage.is-zoom-locked .product-detail__zoom-lens {
  opacity: 1;
}

.product-detail__image-badge,
.product-detail__zoom {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  border: 1px solid rgba(10, 59, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-800);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.product-detail__image-badge {
  left: 1.35rem;
  top: 1.35rem;
  padding: 0.48rem 0.95rem;
}

.product-detail__zoom {
  right: 1.15rem;
  bottom: 1.15rem;
}

.product-detail__gallery-control {
  opacity: 0;
  pointer-events: none;
}

.product-detail__stage:hover .product-detail__gallery-control,
.product-detail__stage:focus-within .product-detail__gallery-control {
  opacity: 1;
  pointer-events: auto;
}

.product-detail__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.75rem 1.85rem 1.45rem;
}

.product-detail__content .product-detail__title {
  margin: 0.65rem 0 0.75rem;
  max-width: none;
  color: var(--forest-900);
  font-size: 1.9rem;
  line-height: 1.18;
  letter-spacing: 0;
  -webkit-line-clamp: unset;
}

.product-detail__rating {
  gap: 0.65rem;
  color: var(--text-700);
  font-size: 0.94rem;
}

.product-detail__rating .product-card__stars {
  color: #d79728;
}

.product-detail__rating a,
.product-detail__installments a {
  color: var(--text-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-detail__price strong {
  color: var(--forest-900);
  font-size: 2rem;
  line-height: 1;
}

.product-detail__installments {
  margin: 0 0 1.1rem;
  color: var(--text-700);
  font-size: 0.95rem;
}

.product-detail__installments strong {
  color: #5e35d9;
  font-weight: 900;
}

.product-detail__highlight-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail__highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  color: var(--text-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-detail__highlight > span,
.product-detail__delivery-card > span:first-child,
.product-detail__trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.4rem;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.95);
  color: var(--forest-700);
}

.product-detail__highlight strong {
  min-width: 0;
  color: var(--text-700);
  font-size: 0.8rem;
  line-height: 1.25;
}

.product-detail__delivery-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10, 59, 39, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.85);
}

.product-detail__delivery-card strong,
.product-detail__delivery-card p,
.product-detail__delivery-card small {
  display: block;
  margin: 0;
}

.product-detail__delivery-card p {
  color: var(--forest-700);
  font-weight: 800;
}

.product-detail__delivery-card small {
  color: var(--text-700);
  font-size: 0.78rem;
}

.product-detail__variants {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(10, 59, 39, 0.11);
  border-radius: 12px;
  background: rgba(246, 250, 244, 0.82);
}

.product-detail__variant-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
  color: var(--text-700);
}

.product-detail__variant-header strong {
  color: var(--forest-900);
}

.product-detail__variant-header span {
  font-size: 0.9rem;
  font-weight: 800;
}

.product-detail__variant-group {
  display: grid;
  gap: 0.62rem;
}

.product-detail__variant-group + .product-detail__variant-group {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
}

.product-detail__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-detail__variant-option {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  border: 1px solid rgba(10, 59, 39, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--forest-900);
  font-weight: 900;
  cursor: pointer;
  max-width: 100%;
}

.product-detail__variant-option span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.product-detail__variant-option small {
  grid-column: 1 / -1;
  color: #8f2624;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.product-detail__variant-option img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(10, 59, 39, 0.06);
}

.product-detail__variant-option.is-active {
  border-color: rgba(31, 101, 68, 0.78);
  box-shadow: 0 0 0 3px rgba(31, 101, 68, 0.13);
}

.product-detail__variant-option.is-out-of-stock {
  border-color: rgba(150, 40, 38, 0.22);
  background: rgba(150, 40, 38, 0.06);
  color: rgba(35, 48, 41, 0.72);
  cursor: not-allowed;
}

.product-detail__variant-option.is-out-of-stock img {
  filter: grayscale(0.7);
  opacity: 0.58;
}

.product-detail__variant-option:disabled {
  pointer-events: none;
}

.product-detail__actions {
  grid-template-columns: minmax(184px, 0.72fr) minmax(180px, 1.25fr) 58px;
  gap: 0.85rem;
  margin-top: 1rem;
}

.product-detail__actions .button,
.product-detail__wishlist-button {
  min-height: 58px;
  border-radius: 999px;
  font-weight: 900;
}

.product-detail__buy-now {
  background: #fff;
  color: var(--forest-900);
  border-color: rgba(31, 101, 68, 0.34);
}

.product-detail__wishlist-button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 59, 39, 0.12);
  background: #fff;
  color: var(--forest-800);
}

.product-detail__trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.product-detail-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-detail-body-card {
  margin-top: 1.45rem;
}

.product-detail-feature-strip {
  display: none;
}

@media (max-width: 1180px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-detail__stage {
    min-height: 0;
  }

  .product-detail__trust-row {
    margin-top: 1.1rem;
  }

}

@media (max-width: 760px) {
  .header-cart {
    position: static;
  }

  .header-cart-menu {
    position: fixed;
    top: 5.6rem;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    max-height: calc(100vh - 6.4rem);
    overflow-y: auto;
  }

  .header-cart-menu::before {
    display: none;
  }

  .checkout-item {
    grid-template-columns: 1fr;
  }

  .checkout-item img {
    width: 82px;
  }

  .product-detail__media,
  .product-detail__media:has(.product-detail__thumb-rail) {
    grid-template-columns: 1fr;
  }

  .product-detail__stage {
    order: 1;
  }

  .product-detail__thumb-rail {
    order: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.25rem;
  }

  .product-detail__gallery-item {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
  }

  .product-detail__stage {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .product-detail__content {
    padding: 1.25rem;
  }

  .product-detail__content .product-detail__title {
    font-size: 1.55rem;
  }

  .product-detail__highlight-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail__actions,
  .product-detail__trust-row,
  .product-detail-tabs {
    grid-template-columns: 1fr;
  }

  .product-detail__wishlist-button {
    width: 100%;
  }
}

/* Product-page sticky purchase panel inspired by marketplace right-side checkout cards. */
.product-detail-purchase-layout {
  display: grid;
  grid-template-columns: minmax(650px, 1fr) minmax(310px, 375px);
  gap: 1.35rem;
  align-items: start;
  padding: 1.35rem 0 2.4rem;
}

.product-detail-purchase-layout__main {
  display: grid;
  gap: 0;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.product-detail-purchase-layout__details {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.product-detail-purchase-layout .product-detail {
  /* media column auto-sizes from its fixed-width content; description fills the rest */
  grid-template-columns: auto 1fr;
  padding: 0;
}

.product-detail-purchase-layout .product-detail__stage {
  /* AliExpress-style: fixed size — never shrinks with window resize */
  width: 460px;
  height: 460px;
  aspect-ratio: unset;
  /* Center the stage within the media grid row (thumbnail rail may be taller) */
  align-self: center;
  /* Flexbox centering: most reliable way to center an image in a fixed box */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-purchase-layout .product-detail__stage-image {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: unset !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.product-detail-related-heading {
  margin-top: 1.45rem;
}

.product-detail-related-grid {
  min-width: 0;
}

.product-detail-purchase-sidebar {
  position: sticky;
  top: var(--product-purchase-sticky-top, 14.75rem);
  z-index: 12;
  align-self: start;
  grid-column: 2;
  grid-row: 1;
  max-height: none;
  overflow: visible;
}

.product-purchase-panel {
  display: grid;
  gap: 0.85rem;
  min-height: var(--product-purchase-panel-height, 620px);
  align-content: start;
  padding: 1.15rem;
  border: 1px solid rgba(10, 59, 39, 0.09);
  border-bottom: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(17, 47, 32, 0.1);
}

.product-purchase-panel__seller-row,
.product-purchase-panel__selected-option,
.product-purchase-panel__delivery-note,
.product-purchase-panel__quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.product-purchase-panel__seller-row {
  display: none;
}

.product-purchase-panel__seller-row > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.product-purchase-panel__seller-row .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--forest-700);
}

.product-purchase-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.95);
  color: var(--forest-800);
}

.product-purchase-panel__price-block {
  display: grid;
  gap: 0.35rem;
}

.product-purchase-panel__eyebrow {
  color: var(--text-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-purchase-panel__price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.product-purchase-panel__price strong {
  color: var(--forest-900);
  font-size: clamp(1.85rem, calc(3 * var(--vw)), 2.35rem);
  line-height: 1;
}

.product-purchase-panel__price span {
  color: var(--text-700);
  text-decoration: line-through;
  font-weight: 800;
}

.product-purchase-panel__price-block p,
.product-purchase-panel__promise p,
.product-purchase-panel__fine-print {
  margin: 0;
  color: var(--text-700);
  line-height: 1.55;
}

.product-purchase-panel__selected-option {
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(10, 59, 39, 0.08);
  border-radius: 16px;
  background: rgba(246, 250, 244, 0.76);
}

.product-purchase-panel__selected-option span,
.product-purchase-panel__delivery-note strong,
.product-purchase-panel__quantity-row > strong {
  color: var(--text-700);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-purchase-panel__selected-option strong {
  color: var(--forest-900);
  text-align: right;
  font-size: 0.9rem;
}

.product-purchase-panel__promise-list {
  display: grid;
  border-top: 1px solid rgba(10, 59, 39, 0.08);
  border-bottom: 1px solid rgba(10, 59, 39, 0.08);
}

.product-purchase-panel__promise {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(10, 59, 39, 0.07);
}

.product-purchase-panel__promise:last-child {
  border-bottom: 0;
}

.product-purchase-panel__promise-icon {
  width: 1.82rem;
  height: 1.82rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(235, 242, 232, 0.95);
  color: var(--forest-700);
}

.product-purchase-panel__promise-icon .icon {
  width: 1rem;
  height: 1rem;
}

.product-purchase-panel__promise strong {
  display: block;
  color: var(--forest-900);
  font-size: 0.92rem;
}

.product-purchase-panel__promise p {
  margin-top: 0.1rem;
  font-size: 0.78rem;
  line-height: 1.3;
}

.product-purchase-panel__delivery-note {
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  background: rgba(251, 248, 243, 0.94);
}

.product-purchase-panel__delivery-note span {
  color: var(--forest-800);
  text-align: right;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.product-purchase-panel__quantity-row {
  align-items: center;
}

.quantity-picker--panel {
  grid-template-columns: 38px 62px 38px;
  gap: 0.38rem;
}

.quantity-picker--panel .icon-button,
.quantity-picker--panel input {
  min-height: 36px;
  height: 36px;
}

.product-purchase-panel__actions {
  display: grid;
  gap: 0.65rem;
}

.product-purchase-panel__actions .button {
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 950;
}

.product-purchase-panel__actions .button .icon {
  width: 1rem;
  height: 1rem;
}

.product-purchase-panel__fine-print {
  display: none;
}

.product-mobile-purchase-bar {
  display: none;
}

.product-mobile-purchase-bar__price {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.product-mobile-purchase-bar__price span {
  color: var(--text-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-mobile-purchase-bar__price strong {
  color: var(--forest-900);
  font-size: 1.35rem;
  line-height: 1;
}

.product-mobile-purchase-bar__price em {
  color: var(--text-700);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-decoration: line-through;
}

.product-mobile-purchase-bar__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.product-mobile-purchase-bar .button {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 1800px) {
  .product-detail-purchase-layout {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  }

  /* Cap media card to fixed-stage width: 32px padding + 116px thumb + 18px gap + 460px stage = 626px */
  .product-detail-purchase-layout .product-detail__media {
    max-width: 650px;
  }
}

@media (max-width: 1400px) and (min-width: 1181px) {
  .product-detail-purchase-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 1rem;
  }

  .product-detail-purchase-layout .product-detail {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  }

  .product-detail-purchase-layout .product-detail__media {
    width: auto;
    max-width: none;
  }

  .product-detail-purchase-layout .product-detail__media:has(.product-detail__thumb-rail) {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .product-detail-purchase-layout .product-detail__thumb-rail {
    gap: 0.6rem;
    max-height: 620px;
  }

  .product-detail-purchase-layout .product-detail__gallery-item {
    width: 86px;
    height: 86px;
  }

  .product-detail-purchase-layout .product-detail__stage {
    width: 100%;
    max-width: 390px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-detail-purchase-layout .product-detail__stage-image {
    width: 100% !important;
    height: 100% !important;
  }

  .product-detail__content {
    padding: 1.3rem;
  }

  .product-detail__content .product-detail__title {
    font-size: clamp(1.65rem, 2.5vw, 2.1rem);
    line-height: 1.08;
  }

  .product-purchase-panel {
    min-height: 0;
  }
}

@media (max-width: 1180px) {
  body:has(.product-mobile-purchase-bar) {
    padding-bottom: 6.4rem;
  }

  .product-detail-purchase-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-purchase-layout__main,
  .product-detail-purchase-layout__details,
  .product-detail-purchase-sidebar {
    grid-column: 1;
    grid-row: auto;
  }

  .product-detail-purchase-layout__main {
    order: 1;
  }

  .product-detail-purchase-sidebar {
    order: 2;
    position: static;
    max-height: none;
    overflow: visible;
  }

  .product-detail-purchase-layout__details {
    order: 3;
  }

  .product-detail-purchase-layout .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-purchase-layout .product-detail__media {
    max-width: 650px;
  }

  .product-purchase-panel {
    min-height: 0;
  }

  .product-mobile-purchase-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.72rem max(1rem, env(safe-area-inset-left)) calc(0.72rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
    border-top: 1px solid rgba(10, 59, 39, 0.12);
    background: rgba(255, 253, 250, 0.98);
    box-shadow: 0 -18px 40px rgba(17, 47, 32, 0.14);
    backdrop-filter: blur(12px);
  }

  body:has(.product-mobile-purchase-bar) #ck-chat-root {
    bottom: 5.9rem;
  }
}

@media (max-width: 760px) {
  .product-detail-purchase-layout {
    padding-top: 0.9rem;
  }

  .product-detail-purchase-layout .product-detail,
  .product-detail-purchase-layout .product-detail__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-detail-purchase-layout .product-detail__media {
    padding: 0.75rem;
  }

  .product-detail-purchase-layout .product-detail__stage {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-detail-purchase-layout .product-detail__stage-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .product-purchase-panel {
    border-radius: 20px;
  }

  .product-purchase-panel__seller-row,
  .product-purchase-panel__selected-option,
  .product-purchase-panel__delivery-note,
  .product-purchase-panel__quantity-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-purchase-panel__selected-option strong,
  .product-purchase-panel__delivery-note span {
    text-align: left;
  }
}

@media (max-width: 520px) {
  body:has(.product-mobile-purchase-bar) {
    padding-bottom: 7.6rem;
  }

  body:has(.product-mobile-purchase-bar) #ck-chat-root {
    bottom: 7.2rem;
  }

  .product-mobile-purchase-bar {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .product-mobile-purchase-bar__price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .product-mobile-purchase-bar__price span {
    display: none;
  }

  .product-mobile-purchase-bar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .product-mobile-purchase-bar .button {
    width: 100%;
    padding-inline: 0.7rem;
  }
}

/* About page rebuild matching the desktop mockup. */
.about-page {
  background: #ffffff;
  color: var(--forest-900);
}

.about-hero,
.about-values,
.about-story-panel,
.about-community-card {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}

.about-hero {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.about-hero__inner {
  width: 100%;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.about-hero__copy {
  grid-area: 1 / 1;
  display: grid;
  align-content: center;
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding: clamp(1.25rem, calc(2.6 * var(--vw)), 2.7rem) 0 clamp(1.2rem, calc(2.2 * var(--vw)), 2.25rem) 0.7rem;
  position: relative;
  z-index: 1;
}

.about-hero__copy h1 {
  margin: 0 0 0.35rem;
  color: var(--forest-900);
  font-size: clamp(3.4rem, calc(5 * var(--vw)), 5.25rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.about-hero__copy h2 {
  margin: 0 0 0.75rem;
  color: var(--forest-800);
  font-size: clamp(1.25rem, calc(1.55 * var(--vw)), 1.82rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.about-hero__copy p {
  width: min(100%, 530px);
  margin: 0 0 0.72rem;
  color: #293f35;
  font-size: clamp(1rem, var(--vw), 1.12rem);
  font-weight: 650;
  line-height: 1.48;
}

.about-hero__image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.about-hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: left center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(10, 59, 39, 0.09);
  border-bottom: 1px solid rgba(10, 59, 39, 0.09);
  background: rgba(255, 255, 255, 0.28);
}

.about-value-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.2rem 1.4rem;
  border-right: 1px solid rgba(10, 59, 39, 0.1);
}

.about-value-card:last-child {
  border-right: 0;
}

.about-icon,
.about-value-card__icon,
.about-mini-stat span,
.about-community-perk span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--forest-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 59, 39, 0.12);
}

.about-value-card__icon {
  width: 72px;
  height: 72px;
}

.about-value-card__icon .icon {
  width: 2.25rem;
  height: 2.25rem;
}

.about-value-card h3,
.about-column h2,
.about-community-card h2 {
  margin: 0;
  color: var(--forest-900);
}

.about-value-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.15;
}

.about-value-card p,
.about-column p,
.about-mini-stat p,
.about-community-card p,
.about-community-perk p {
  margin: 0;
  color: #2f473a;
  line-height: 1.46;
}

.about-value-card p {
  font-size: 0.9rem;
  font-weight: 650;
}

.about-story-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.1fr;
  gap: 0;
  padding: 1.2rem 0 1.1rem;
}

.about-column {
  min-height: 255px;
  padding: 0 2.2rem 0 0.7rem;
  border-right: 1px solid rgba(10, 59, 39, 0.11);
}

.about-column:not(:first-child) {
  padding-left: 2.6rem;
}

.about-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-column h2,
.about-community-card h2 {
  font-size: clamp(1.45rem, calc(1.55 * var(--vw)), 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-column > p {
  margin-top: 0.45rem;
  max-width: 470px;
  font-weight: 650;
}

.about-mission-rule {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 0 0.85rem;
  color: var(--forest-700);
}

.about-mission-rule::after {
  content: "";
  height: 2px;
  background: rgba(31, 101, 68, 0.7);
}

.about-mission-rule .icon {
  width: 1.3rem;
  height: 1.3rem;
}

.about-mission-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-mini-stat {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.25rem;
}

.about-mini-stat span {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
}

.about-mini-stat .icon {
  width: 1.55rem;
  height: 1.55rem;
}

.about-mini-stat strong {
  color: var(--forest-800);
  font-size: 0.78rem;
  line-height: 1.2;
}

.about-mini-stat p {
  max-width: 125px;
  font-size: 0.68rem;
  line-height: 1.25;
}

.about-check-list {
  display: grid;
  gap: 0.46rem;
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
}

.about-check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #263e33;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
}

.about-check-list span {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--forest-700);
  border: 1.5px solid rgba(31, 101, 68, 0.75);
  font-size: 0.78rem;
  font-weight: 950;
}

.about-timeline {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: 62px 22px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.about-timeline__item strong {
  color: var(--forest-800);
  font-size: 0.88rem;
  text-align: right;
}

.about-timeline__item span {
  position: relative;
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.16rem;
  border-radius: 999px;
  background: var(--forest-700);
}

.about-timeline__item span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.72rem;
  width: 2px;
  height: 2.25rem;
  transform: translateX(-50%);
  background: rgba(31, 101, 68, 0.32);
}

.about-timeline__item:last-child span::after {
  display: none;
}

.about-timeline__item p {
  font-size: 0.88rem;
  font-weight: 650;
}

.about-community-card {
  display: grid;
  grid-template-columns: 360px minmax(320px, 0.95fr) minmax(520px, 1.5fr);
  align-items: center;
  gap: 0;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(10, 59, 39, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
}

.about-community-card__image {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-community-card__signup {
  display: grid;
  gap: 0.45rem;
  padding: 0 2rem;
}

.about-community-card__signup p {
  font-size: 0.9rem;
  font-weight: 650;
}

.about-community-card__form {
  display: flex;
  width: min(100%, 450px);
  margin-top: 0.3rem;
}

.about-community-card__form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 46px;
  padding: 0 1rem;
  border: 1px solid rgba(10, 59, 39, 0.28);
  border-right: 0;
  border-radius: 3px 0 0 3px;
  background: #fff;
  color: var(--text-900);
  font: inherit;
}

.about-community-card__form button {
  height: 46px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: #00651f;
  color: #fff;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.about-community-card__perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(10, 59, 39, 0.1);
}

.about-community-perk {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(10, 59, 39, 0.08);
}

.about-community-perk:last-child {
  border-right: 0;
}

.about-community-perk span {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
}

.about-community-perk .icon {
  width: 1.85rem;
  height: 1.85rem;
}

.about-community-perk strong {
  color: var(--forest-800);
  font-size: 0.88rem;
  line-height: 1.15;
}

.about-community-perk p {
  max-width: 170px;
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .about-story-panel,
  .about-community-card {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    padding-right: 0;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-value-card:nth-child(2n) {
    border-right: 0;
  }

  .about-story-panel {
    gap: 1rem;
  }

  .about-column,
  .about-column:not(:first-child) {
    padding: 0;
    border-right: 0;
  }

  .about-community-card__signup {
    padding: 1.25rem;
  }

  .about-community-card__perks {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .about-values,
  .about-story-panel,
  .about-community-card {
    width: min(var(--content-max), calc(100% - 1rem));
  }

  .about-hero__inner,
  .about-hero__image-wrap img {
    min-height: 0;
  }

  .about-hero__copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  .about-values,
  .about-community-card__perks,
  .about-mission-stats {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    grid-template-columns: auto minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(10, 59, 39, 0.1);
    padding: 1rem;
  }

  .about-value-card:last-child {
    border-bottom: 0;
  }

  .about-community-card__form {
    display: grid;
  }

  .about-community-card__form input,
  .about-community-card__form button {
    width: 100%;
    border-radius: 3px;
    border: 1px solid rgba(10, 59, 39, 0.28);
  }

  .about-community-card__form button {
    margin-top: 0.55rem;
  }
}


/* Stable full-width About hero banner sizing. */
.about-page .about-hero {
  width: 100%;
  min-height: clamp(320px, calc(23 * var(--vw)), 430px);
  background: #ffffff;
}

.about-page .about-hero__inner {
  min-height: clamp(320px, calc(23 * var(--vw)), 430px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-page .about-hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.about-page .about-hero__image-wrap img {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-page .about-hero__copy {
  min-height: clamp(320px, calc(23 * var(--vw)), 430px);
  position: relative;
  z-index: 1;
}

/* Product page image sizing refinement: description images larger + left aligned, top gallery slightly fuller. */
@media (min-width: 761px) {
  .product-detail-body__description-media {
    width: min(70%, 840px) !important;
    max-width: 840px !important;
    justify-self: start !important;
    justify-items: start !important;
    margin: 0.35rem 0 0.25rem !important;
  }

  .product-detail-body__description-image {
    margin-inline: 0 !important;
  }

  .product-detail__media:has(.product-detail__thumb-rail) {
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .product-detail__gallery-item {
    width: 118px;
    height: 118px;
  }
}

.product-detail__stage.is-zooming .product-detail__stage-image,
.product-detail__stage.is-zoom-locked .product-detail__stage-image {
  transform: scale(2.05);
}

@media (max-width: 760px) {
  .product-detail-body__description-media {
    width: min(96%, 640px) !important;
    max-width: 640px !important;
    justify-self: start !important;
    justify-items: start !important;
    margin: 0.35rem 0 0.25rem !important;
  }

  .product-detail-body__description-image {
    margin-inline: 0 !important;
  }
}

/* â”€â”€ Auth & Account â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.header-action__avatar {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.header-action.is-signed-in span:last-child {
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Help / Support page */

.help-page {
  display: flex;
  flex-direction: column;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #f8f6f2;
}

/* Hero */

.help-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(4 * var(--vw)) 1.5rem calc(5 * var(--vw));
  min-height: calc(18 * var(--vw));
}

.help-hero__inner {
  text-align: center;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.help-hero__inner h1 {
  font-size: clamp(1.75rem, calc(3.5 * var(--vw)), 2.75rem);
  font-weight: 800;
  color: var(--forest-900);
  margin: 0;
  letter-spacing: -0.02em;
}

.help-hero__inner > p {
  font-size: clamp(0.85rem, calc(1.2 * var(--vw)), 1rem);
  color: var(--text-700);
  margin: 0;
  line-height: 1.6;
}

.help-hero__search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(10,59,39,0.12);
  border-radius: 0.6rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  gap: 0.6rem;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 2px 16px rgba(10,59,39,0.08);
  margin-top: 0.5rem;
}

.help-hero__search > svg {
  color: var(--text-700);
  flex-shrink: 0;
  opacity: 0.6;
}

.help-hero__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-900);
  min-width: 0;
  font-family: inherit;
}

.help-hero__input::placeholder {
  color: var(--text-700);
  opacity: 0.55;
}

.help-hero__btn {
  flex-shrink: 0;
  font-size: 0.88rem !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 0.4rem !important;
}

/* Category cards */

.help-categories-wrap {
  position: relative;
  z-index: 2;
  margin-top: calc(-3 * var(--vw));
}

.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-bottom: 0;
}

.help-cat-card {
  background: var(--white);
  border: 1px solid rgba(10,59,39,0.1);
  border-radius: 0.85rem;
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
  box-shadow: 0 4px 28px rgba(10,59,39,0.07);
}

.help-cat-card__icon {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  background: var(--sage-200, #ebf2e8);
  display: grid;
  place-items: center;
  color: var(--forest-800);
  flex-shrink: 0;
}
.help-cat-card__icon-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.help-cat-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.help-cat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-900);
  margin: 0;
}

.help-cat-card p {
  font-size: 0.83rem;
  color: var(--text-700);
  margin: 0;
  line-height: 1.5;
}

.help-cat-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--forest-800);
  text-decoration: none;
  margin-top: 0.2rem;
}

.help-cat-card__link:hover {
  text-decoration: underline;
}

/* Bottom section */

.help-bottom {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 2rem;
  padding-top: calc(3 * var(--vw));
  padding-bottom: calc(5 * var(--vw));
  align-items: start;
}

/* FAQ */

.help-faq {
  background: var(--white);
  border: 1px solid rgba(10,59,39,0.1);
  border-radius: 0.85rem;
  padding: 1.75rem;
  box-shadow: 0 2px 20px rgba(10,59,39,0.06);
}

.help-faq h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  color: var(--text-900);
}

.help-faq__list {
  display: flex;
  flex-direction: column;
}

.help-faq__item {
  border-bottom: 1px solid rgba(10,59,39,0.1);
}

.help-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-900);
  cursor: pointer;
  list-style: none;
  background: transparent;
  user-select: none;
}

.help-faq__question::-webkit-details-marker {
  display: none;
}

.help-faq__chevron {
  flex-shrink: 0;
  color: var(--text-700);
  transition: transform 0.2s ease;
}

details[open] > .help-faq__question .help-faq__chevron {
  transform: rotate(180deg);
}

.help-faq__answer {
  padding: 0 0 1rem;
}

.help-faq__answer p {
  font-size: 0.88rem;
  color: var(--text-700);
  line-height: 1.65;
  margin: 0;
}

.help-faq__empty {
  padding: 1rem 0 0;
  color: var(--text-700);
}

.help-faq__empty h3 {
  margin: 0 0 0.35rem;
  color: var(--text-900);
  font-size: 1rem;
}

.help-faq__empty p {
  margin: 0 0 0.8rem;
  line-height: 1.55;
}

.help-faq__all {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-800);
  text-decoration: none;
}

.help-faq__all:hover {
  text-decoration: underline;
}

/* Contact support panel */

.help-contact {
  background: #eef1ec;
  border-radius: 1rem;
  padding: 1.35rem;
  position: relative;
  overflow: visible;
}

.help-contact h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-900);
}

.help-contact__deco {
  position: absolute;
  top: -1.25rem;
  right: -0.75rem;
  width: 110px;
  height: 120px;
  pointer-events: none;
}

.help-contact__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.help-contact__item {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.help-contact__item--center {
  align-items: center;
}

.help-contact__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--sage-200, #ebf2e8);
  display: grid;
  place-items: center;
  color: var(--forest-800);
  flex-shrink: 0;
}

.help-contact__item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 0.1rem;
}

.help-contact__item a {
  font-size: 0.83rem;
  color: var(--forest-700);
  text-decoration: none;
  font-weight: 600;
  display: block;
}

.help-contact__item a:hover {
  text-decoration: underline;
}

.help-contact__item p {
  font-size: 0.8rem;
  color: var(--text-700);
  margin: 0.1rem 0 0;
  line-height: 1.45;
}

.help-contact__detail {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--text-900) !important;
  margin: 0 !important;
}

.help-contact__cta {
  border: 0;
  background: transparent;
  color: var(--forest-800);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.83rem !important;
  font-weight: 700 !important;
  margin-top: 0.35rem !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 900px) {
  .help-categories {
    grid-template-columns: 1fr;
  }

  .help-categories-wrap {
    margin-top: 1rem;
  }

  .help-bottom {
    grid-template-columns: 1fr;
  }


  .help-hero {
    min-height: 0;
    padding: 2.5rem 1.25rem 3rem;
  }

  .help-page {
    background-size: 200%;
    background-position: top left;
  }
}

@media (max-width: 600px) {
  .help-hero {
    padding: 2rem 1rem 2.5rem;
  }

  .help-page {
    background-size: 300%;
  }
}

/* Auth page */

.auth-page {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.auth-panel {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.auth-panel--redirect {
  text-align: center;
  align-items: center;
  gap: 1rem;
}

.auth-panel--redirect img {
  width: 80px;
}

.auth-panel--redirect h1 {
  font-size: 1.3rem;
}

.auth-panel__logo {
  display: block;
  text-align: center;
  align-self: center;
}

.auth-panel__logo img {
  width: min(240px, 100%);
  height: auto;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand-100, #f5f3ef);
  border-radius: 0.6rem;
  padding: 0.25rem;
  gap: 0.25rem;
}

.auth-tabs__btn {
  background: transparent;
  border: none;
  border-radius: 0.45rem;
  padding: 0.55rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-500, #666);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.auth-tabs__btn.is-active {
  background: var(--white);
  color: var(--forest-900);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-700);
}

.auth-form__field input,
.auth-form__field select,
.auth-form__field textarea {
  border: 1.5px solid var(--border-200, #e0ddd6);
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-900);
  transition: border-color 0.15s;
  outline: none;
}

.auth-form__field textarea {
  min-height: 132px;
  resize: vertical;
}

.auth-form__field input:focus,
.auth-form__field select:focus,
.auth-form__field textarea:focus {
  border-color: var(--forest-700);
}

.auth-form__field input:disabled,
.auth-form__field select:disabled,
.auth-form__field textarea:disabled {
  background: var(--sand-100, #f5f3ef);
  color: var(--text-400, #999);
}

.auth-form__optional {
  font-weight: 400;
  color: var(--text-400, #999);
}

.auth-form__link {
  background: none;
  border: none;
  color: var(--forest-700);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  text-decoration: underline;
}

.auth-panel__error {
  background: #fff2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  margin: 0;
}

.auth-panel__message {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  margin: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-400, #999);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-200, #e0ddd6);
}

.button--google {
  background: var(--white);
  border: 1.5px solid var(--border-200, #e0ddd6);
  color: var(--text-800);
  gap: 0.75rem;
  justify-content: center;
}

.button--google:hover {
  background: var(--sand-100, #f5f3ef);
}

.button--full {
  width: 100%;
  justify-content: center;
}

/* Account layout */

.account-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: calc(100vh - 200px);
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

/* Sidebar */

.account-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border-100, #ece9e2);
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 0;
  align-self: start;
  max-height: 100vh;
  overflow-y: auto;
}

.account-sidebar__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 1rem;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.account-sidebar__avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.account-sidebar__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-900);
  margin: 0;
}

.account-sidebar__email {
  font-size: 0.76rem;
  color: var(--text-400, #999);
  margin: 0;
  word-break: break-all;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}

.account-nav__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  font-size: 0.88rem;
  color: var(--text-700);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}

.account-nav__item:hover {
  background: var(--sand-100, #f5f3ef);
  color: var(--text-900);
}

.account-nav__item.is-active {
  background: var(--forest-50, #edf7f1);
  color: var(--forest-800);
  font-weight: 600;
}

.account-nav__item.is-active svg {
  color: var(--forest-700);
}

.account-nav__badge {
  margin-left: auto;
  background: var(--forest-100, #d4eddf);
  color: var(--forest-800);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.05rem 0.45rem;
  min-width: 1.25rem;
  text-align: center;
}

.account-nav__signout {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  font-size: 0.88rem;
  color: var(--text-500);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: color 0.15s;
  border-top: 1px solid var(--border-100, #ece9e2);
  margin-top: 0.25rem;
  padding-top: 0.85rem;
}

.account-nav__signout:hover {
  color: var(--text-900);
}

.account-sidebar__tagline {
  background: var(--forest-50, #edf7f1);
  border-radius: 0.65rem;
  padding: 0.85rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--forest-800);
}

.account-sidebar__tagline svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.7;
}

.account-sidebar__tagline strong {
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.2rem;
}

.account-sidebar__tagline p {
  font-size: 0.75rem;
  color: var(--text-500);
  margin: 0;
}

/* Main content */

.account-main {
  background: var(--sand-50, #faf9f7);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-main__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--text-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.account-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.account-section-heading .account-main__title {
  margin: 0;
}

.account-section-heading > span {
  color: var(--text-600);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Welcome banner */

.account-welcome {
  background: linear-gradient(130deg, var(--forest-900, #1a3d28) 0%, var(--forest-700, #2e6e47) 100%);
  color: var(--white);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.account-welcome h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0;
}

.account-welcome > div:first-child p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin: 0.35rem 0 0;
}

.account-welcome__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.account-welcome__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.account-welcome__stat svg {
  opacity: 0.65;
  margin-bottom: 0.1rem;
}

.account-welcome__stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.account-welcome__stat-value {
  font-size: 1rem;
  font-weight: 700;
}

/* Dashboard cards */

.account-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.account-cards--two {
  grid-template-columns: repeat(2, 1fr);
}

.account-card {
  background: var(--white);
  border-radius: 0.85rem;
  padding: 1.25rem;
  border: 1px solid var(--border-100, #ece9e2);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.account-card--wide {
  grid-column: 1 / -1;
}

.account-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-900);
}

.account-card p {
  font-size: 0.82rem;
  color: var(--text-500);
  margin: 0;
  line-height: 1.5;
}

.account-card .button {
  align-self: flex-start;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  margin-top: 0.25rem;
}

.account-card__link {
  background: none;
  border: none;
  color: var(--forest-700);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

.account-card__link:hover {
  text-decoration: underline;
}

.account-card__link:disabled {
  cursor: wait;
  opacity: 0.55;
  text-decoration: none;
}

.account-data-alert {
  background: #fbf3df;
  border: 1px solid #ead49d;
  border-radius: 0.7rem;
  color: #745713;
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
}

.account-data-alert--success {
  background: var(--forest-50, #edf7f1);
  border-color: var(--forest-100, #d4eddf);
  color: var(--forest-800, #0a3b27);
}

.account-data-alert--warning {
  background: #fbf3df;
  border-color: #ead49d;
  color: #745713;
}

.account-data-alert--error {
  background: #fff1ee;
  border-color: #f2b8ad;
  color: #9f2d20;
}

.account-profile-card__preview {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text-700) !important;
  overflow-wrap: anywhere;
}

.account-profile-card__preview span {
  display: block;
}

.account-profile-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.account-profile-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.account-profile-row:first-child {
  padding-top: 0;
}

.account-profile-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.account-profile-row strong {
  display: block;
  color: var(--text-900);
  font-size: 0.92rem;
}

.account-profile-row p,
.account-profile-row small {
  color: var(--text-600);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.account-profile-row small {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  text-align: right;
}

.account-profile-row__lines {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  overflow-wrap: anywhere;
}

.account-card__link--danger {
  color: #9f2d20;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.account-form-grid__wide {
  grid-column: 1 / -1;
}

.account-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.account-checkbox-field {
  align-items: center;
  color: var(--text-700);
  display: flex;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  min-height: 42px;
}

.account-checkbox-field input {
  accent-color: var(--forest-700);
  height: 16px;
  width: 16px;
}

.account-address-manager {
  gap: 1.2rem;
}

.account-address-manager h3,
.account-address-section h3 {
  color: var(--text-900);
  font-size: 0.94rem;
  margin: 0 0 0.75rem;
}

.account-address-section {
  border-top: 1px solid var(--border-100, #ece9e2);
  padding-top: 1rem;
}

.account-address-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
}

.account-address-card {
  background: #fff;
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.85rem;
}

.account-address-card__heading {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.account-address-card__heading strong {
  color: var(--text-900);
  font-size: 0.9rem;
}

.account-address-card__badge {
  background: var(--forest-100, #d4eddf);
  border-radius: 999px;
  color: var(--forest-800);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.16rem 0.48rem;
  text-transform: uppercase;
}

.account-address-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.account-address-card__delete {
  font-weight: 800;
}

.account-payment-manager {
  gap: 1rem;
}

.account-payment-portal {
  align-items: center;
  background: var(--sand-50, #faf9f7);
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem;
}

.account-payment-portal h3 {
  color: var(--text-900);
  font-size: 0.94rem;
  margin: 0 0 0.25rem;
}

.account-payment-portal p {
  color: var(--text-600);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.account-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 1rem;
  align-items: start;
}

.account-support-form {
  min-width: 0;
}

.account-support-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.account-support-order,
.account-support-note {
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  padding: 0.8rem;
  background: var(--sand-50, #faf9f7);
}

.account-support-order {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.account-support-order-picker {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: -0.35rem;
  max-height: 18rem;
  overflow: auto;
}

.account-support-order-choice {
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  color: var(--text-900);
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  min-height: 4.1rem;
  padding: 0.75rem 0.85rem;
  text-align: left;
  width: 100%;
}

.account-support-order-choice:hover,
.account-support-order-choice:focus-visible {
  border-color: var(--leaf-500);
  outline: none;
}

.account-support-order-choice.is-selected {
  background: var(--leaf-50, #eef8f1);
  border-color: var(--leaf-600, #176a3a);
}

.account-support-order-choice span:first-child {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.account-support-order-choice strong {
  color: var(--text-900);
  font-size: 0.86rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.account-support-order-choice small {
  color: var(--text-600);
  font-size: 0.76rem;
  line-height: 1.35;
}

.account-support-order-picker__empty {
  border: 1px dashed var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  color: var(--text-600);
  font-size: 0.84rem;
  margin: 0;
  padding: 0.85rem;
}

.account-support-order strong,
.account-support-note strong {
  display: block;
  color: var(--text-900);
  font-size: 0.9rem;
}

.account-support-order small,
.account-support-note p {
  display: block;
  color: var(--text-600);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0.2rem 0 0;
  overflow-wrap: anywhere;
}

.account-support-history-wrap {
  border-top: 1px solid var(--border-100, #ece9e2);
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.account-support-history-wrap h3 {
  color: var(--text-900);
  font-size: 0.94rem;
  margin: 0 0 0.75rem;
}

.account-support-history,
.account-support-empty {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.account-support-request {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  padding: 0.8rem;
  background: #fff;
}

.account-support-request strong {
  display: block;
  color: var(--text-900);
  font-size: 0.88rem;
}

.account-support-request small {
  display: block;
  color: var(--text-600);
  font-size: 0.76rem;
  margin-top: 0.18rem;
}

.account-support-request p {
  color: var(--text-700);
  display: -webkit-box;
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.account-support-status {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  text-transform: uppercase;
}

.account-support-status--open {
  background: #fbf3df;
  color: #8a6d1d;
}

.account-support-status--in_review {
  background: #e8f4ff;
  color: #0f4f78;
}

.account-support-status--resolved,
.account-support-status--closed {
  background: var(--sage-200, #ebf2e8);
  color: var(--forest-800, #0a3b27);
}

/* Eco rewards */

.account-rewards__points {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-900);
  line-height: 1;
}

.account-rewards__label {
  font-size: 0.8rem;
  color: var(--text-500);
}

.account-rewards__bar {
  background: var(--border-100, #ece9e2);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  margin: 0.15rem 0;
}

.account-rewards__bar-fill {
  background: var(--forest-700);
  height: 100%;
  border-radius: 999px;
}

/* Wishlist grid */

.account-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.account-wishlist-card {
  background: var(--white);
  border-radius: 0.65rem;
  border: 1px solid var(--border-100, #ece9e2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.account-wishlist-card a {
  display: block;
}

.account-wishlist-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.account-wishlist-card__body {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-wishlist-card__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-800);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-wishlist-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive */

@media (max-width: 960px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border-100, #ece9e2);
    max-height: none;
  }

  .account-welcome__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .account-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .account-main {
    padding: 1.25rem;
  }

  .account-cards {
    grid-template-columns: 1fr;
  }

  .account-welcome {
    padding: 1.25rem;
  }

  .account-welcome__stats {
    grid-template-columns: 1fr 1fr;
  }

  .auth-panel {
    padding: 1.75rem 1.25rem;
  }

  .account-order-card__summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .account-order-item__media {
    width: 52px;
  }

  .account-order-item__body {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .account-order-item__body strong {
    white-space: normal;
  }

  .account-order-item__listing {
    grid-column: 2;
    justify-self: start;
  }
}

/* Account order history rows */
.account-order-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.account-order-search label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.account-order-search label > span {
  color: var(--text-700);
  font-size: 0.76rem;
  font-weight: 700;
}

.account-order-search input {
  width: 100%;
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  color: var(--text-900);
  font: inherit;
  min-height: 42px;
  padding: 0.65rem 0.8rem;
}

.account-order-search input:focus {
  border-color: var(--forest-500, #2e6e47);
  box-shadow: 0 0 0 3px rgba(46, 110, 71, 0.12);
  outline: none;
}

.account-order-search .button {
  margin: 0;
}

.account-order-search__empty {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 0.25rem;
}

.account-order-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-order-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.account-order-card:last-child {
  border-bottom: none;
}

.account-order-card__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.account-order-card__summary strong,
.account-order-item__body strong {
  display: block;
  color: var(--text-900);
}

.account-order-card__summary strong {
  font-size: 0.92rem;
}

.account-order-card__summary small,
.account-order-item__body small {
  display: block;
  color: var(--text-700);
}

.account-order-card__summary small {
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.account-order-card__payment {
  color: var(--text-700);
  overflow-wrap: anywhere;
}

.account-order-card__empty {
  color: var(--text-600);
  font-size: 0.82rem;
}

.account-order-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.account-order-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  padding: 0.65rem;
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  background: #fff;
}

.account-order-item__media {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 0.55rem;
  background: var(--sage-100, #f3f7f1);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--forest-700);
}

.account-order-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-order-item__body {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.account-order-item__body strong {
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: anywhere;
}

.account-order-item__body small {
  font-size: 0.76rem;
  margin-top: 0.12rem;
}

.account-order-item__purchase {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  color: var(--text-700);
  font-size: 0.78rem;
}

.account-order-item__purchase b {
  color: var(--text-900);
  font-size: 0.86rem;
}

.account-order-item__listing {
  grid-column: 2;
  justify-self: start;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.account-order-item__listing:hover {
  text-decoration: underline;
}

.account-order-item__listing--disabled {
  color: var(--text-500);
}

.account-order-tracking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.65rem;
  border-radius: 0.65rem;
  background: var(--sage-100, #f3f7f1);
}

.account-order-tracking strong {
  display: block;
  color: var(--forest-800, #0a3b27);
  font-size: 0.86rem;
}

.account-order-tracking small {
  display: block;
  color: var(--text-700);
  font-size: 0.76rem;
  margin-top: 0.12rem;
}

.account-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.account-order-actions .button {
  font-size: 0.78rem;
  margin: 0;
  padding: 0.42rem 0.85rem;
}

.account-order-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 0.7rem;
}

.account-order-details__panel {
  background: var(--sand-50, #faf9f7);
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.65rem;
  padding: 0.7rem;
}

.account-order-details__panel strong {
  color: var(--text-900);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.account-order-details__panel p {
  color: var(--text-600);
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 0;
}

.account-order-details__panel dl {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin: 0;
}

.account-order-details__panel dl div {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.account-order-details__panel dt,
.account-order-details__panel dd {
  color: var(--text-700);
  font-size: 0.76rem;
  margin: 0;
}

.account-order-details__panel dd {
  color: var(--text-900);
  font-weight: 800;
}

@media (max-width: 600px) {
  .account-section-heading,
  .account-order-search {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .account-section-heading {
    flex-direction: column;
  }

  .account-order-card__summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .account-order-item__media {
    width: 52px;
  }

  .account-order-tracking {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-details {
    grid-template-columns: 1fr;
  }

  .account-profile-row {
    flex-direction: column;
    gap: 0.35rem;
  }

  .account-profile-row small {
    text-align: left;
  }

  .account-form-grid,
  .account-address-list {
    grid-template-columns: 1fr;
  }

  .account-support-layout {
    grid-template-columns: 1fr;
  }

  .account-support-order {
    flex-direction: column;
  }

  .account-support-order-choice {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-support-request {
    flex-direction: column;
  }

  .account-payment-portal {
    align-items: flex-start;
    flex-direction: column;
  }
}

.account-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.account-order-row:last-child {
  border-bottom: none;
}

.account-order-row strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-900);
}

.account-order-row small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-700);
  margin-top: 0.15rem;
}

.account-order-row__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
}

.account-order-row__status {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--sage-200, #ebf2e8);
  color: var(--forest-800, #0a3b27);
}

.account-order-row__status--pending,
.account-order-row__status--pending_payment,
.account-order-row__status--processing {
  background: #fbf3df;
  color: #8a6d1d;
}

.account-order-row__status--shipped {
  background: #e8f4ff;
  color: #0f4f78;
}

.account-order-row__status--delivered {
  background: var(--sage-200, #ebf2e8);
  color: var(--forest-800, #0a3b27);
}

.admin-order-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-order-card {
  background: var(--white);
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.85rem;
  padding: 1rem;
}

.admin-order-card__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-order-card__summary h3 {
  margin: 0;
  color: var(--text-900);
  font-size: 1rem;
}

.admin-order-card__summary p {
  margin: 0.2rem 0 0;
  color: var(--text-600);
  font-size: 0.82rem;
}

.admin-order-card__payment {
  color: var(--text-700) !important;
  overflow-wrap: anywhere;
}

.admin-order-card__empty {
  color: var(--text-600);
  font-size: 0.82rem;
  margin: 0 0 1rem;
}

.admin-order-items {
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}

.admin-order-item {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.7rem 0.8rem;
}

.admin-order-item + .admin-order-item {
  border-top: 1px solid var(--border-100, #ece9e2);
}

.admin-order-item strong {
  color: var(--text-900);
  display: block;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.admin-order-item small {
  color: var(--text-600);
  display: block;
  font-size: 0.76rem;
  margin-top: 0.15rem;
}

.admin-order-item span {
  color: var(--text-700);
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.admin-order-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.admin-order-tracking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-order-tracking-form .button {
  align-self: end;
}

@media (max-width: 900px) {
  .admin-order-tracking-form {
    grid-template-columns: 1fr;
  }

  .admin-order-card__summary,
  .admin-order-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-order-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* ============================================================
   ECO REWARDS TAB
   ============================================================ */

.rewards-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--forest-800, #0a3b27), #14543a);
  color: #fff;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
}

.rewards-hero__balance {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.rewards-hero__points {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.rewards-hero__unit {
  font-size: 1rem;
  opacity: 0.85;
}

.rewards-hero__progress {
  flex: 1;
  min-width: 220px;
}

.rewards-hero__tier-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.rewards-hero__tier-row strong {
  font-size: 1rem;
}

.rewards-hero__progress .account-rewards__bar {
  background: rgba(255, 255, 255, 0.25);
}

.rewards-hero__progress .account-rewards__bar-fill {
  background: #fff;
}

.rewards-subhead {
  margin: 2rem 0 0.85rem;
  font-size: 1.05rem;
  color: var(--text-900);
}

.rewards-earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.rewards-earn-card {
  background: var(--white);
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.85rem;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rewards-earn-card__value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--forest-800, #0a3b27);
}

.rewards-earn-card strong {
  font-size: 0.92rem;
  color: var(--text-900);
}

.rewards-earn-card small {
  font-size: 0.8rem;
  color: var(--text-700);
}

.rewards-earn-card.is-soon {
  opacity: 0.7;
}

.rewards-earn-card.is-soon .rewards-earn-card__value {
  font-size: 0.85rem;
  color: var(--text-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rewards-redeem-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rewards-redeem {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.85rem;
  padding: 0.9rem 1.1rem;
}

.rewards-redeem.is-unlocked {
  border-color: var(--forest-800, #0a3b27);
  background: var(--sage-200, #ebf2e8);
}

.rewards-redeem__pts {
  flex-shrink: 0;
  width: 76px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--forest-800, #0a3b27);
  line-height: 1;
}

.rewards-redeem__pts span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 0.15rem;
}

.rewards-redeem__body {
  flex: 1;
}

.rewards-redeem__body strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-900);
}

.rewards-redeem__body small {
  font-size: 0.8rem;
  color: var(--text-700);
}

.rewards-redeem__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: var(--forest-800, #0a3b27);
}

.rewards-redeem:not(.is-unlocked) .rewards-redeem__check {
  background: transparent;
}

.rewards-note {
  font-size: 0.82rem;
  color: var(--text-700);
  margin: 0.7rem 0 0;
  font-style: italic;
}

.rewards-history {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 0.85rem;
  padding: 0.4rem 1.1rem;
}

.rewards-history__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.rewards-history__row:last-child {
  border-bottom: none;
}

.rewards-history__row strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-900);
}

.rewards-history__row small {
  font-size: 0.78rem;
  color: var(--text-700);
}

.rewards-history__pts {
  font-weight: 800;
  color: var(--forest-800, #0a3b27);
  white-space: nowrap;
}

.rewards-history__pts.is-negative {
  color: #b4453a;
}

.rewards-empty {
  font-size: 0.9rem;
  color: var(--text-700);
}

@media (max-width: 600px) {
  .rewards-hero {
    align-items: flex-start;
    padding: 1.25rem;
  }

  .rewards-hero__points {
    font-size: 2.15rem;
  }

  .rewards-hero__tier-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .rewards-redeem {
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .rewards-redeem__pts {
    width: 64px;
    font-size: 1rem;
  }

  .rewards-history {
    padding: 0.25rem 0.85rem;
  }
}

/* ============================================================
   LEGAL PAGES (Privacy / Terms / Accessibility)
   ============================================================ */

.legal-page {
  max-width: 820px;
  padding: 3rem 1.25rem 4rem;
}

.legal-page__header h1 {
  font-size: 2rem;
  color: var(--text-900);
  margin: 0 0 0.5rem;
}

.legal-page__updated {
  font-size: 0.85rem;
  color: var(--text-700);
  margin: 0 0 1rem;
}

.legal-page__intro {
  font-size: 1.02rem;
  color: var(--text-700);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.legal-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-100, #ece9e2);
}

.legal-page__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-100, #ece9e2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-700);
  text-decoration: none;
  background: var(--white);
}

.legal-page__nav-link:hover {
  border-color: var(--forest-800);
  color: var(--forest-800);
}

.legal-page__nav-link.is-active {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--white);
}

.legal-page__body {
  padding-top: 0.5rem;
}

.legal-page__body h2 {
  font-size: 1.2rem;
  color: var(--text-900);
  margin: 2rem 0 0.6rem;
}

.legal-page__body h3 {
  font-size: 1rem;
  color: var(--text-900);
  margin: 1.25rem 0 0.4rem;
}

.legal-page__body p,
.legal-page__body li {
  font-size: 0.95rem;
  color: var(--text-700);
  line-height: 1.7;
}

.legal-page__body ul {
  padding-left: 1.4rem;
  margin: 0.4rem 0 1rem;
}

.legal-page__body a {
  color: var(--forest-800);
  font-weight: 600;
}

/* Legal-entity identification: present but visually secondary to the policy text. */
.legal-page__body p.legal-page__entity {
  font-size: 0.86rem;
  color: var(--text-400);
}

.legal-page__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-100, #ece9e2);
  font-size: 0.9rem;
  color: var(--text-700);
}

.legal-page__footer a {
  color: var(--forest-800);
  font-weight: 600;
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */

/* ── Chat Widget ─────────────────────────────────────────────────────────── */

#ck-chat-root {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  font-family: var(--font-sans);
}

@media (min-width: 761px) and (max-width: 1400px) {
  body:has(.product-detail-purchase-layout) #ck-chat-root {
    right: auto;
    left: 1.1rem;
  }

  body:has(.product-detail-purchase-layout) .ck-panel {
    left: 0;
    right: auto;
    transform-origin: bottom left;
  }
}

/* Bubble button */
.ck-bubble {
  width: 5.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest-900);
  border: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-family: var(--font-sans);
}

.ck-bubble:hover {
  transform: translateY(-2px);
}

.ck-bubble--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.94);
}

.ck-bubble__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.35rem 0.68rem;
  border: 1px solid rgba(10, 59, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--forest-900);
  box-shadow: 0 8px 22px rgba(10, 59, 39, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.ck-bubble__circle {
  width: 4.35rem;
  height: 4.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(10, 59, 39, 0.13);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 59, 39, 0.22);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ck-bubble:hover .ck-bubble__circle,
.ck-bubble:focus-visible .ck-bubble__circle {
  box-shadow: 0 16px 36px rgba(10, 59, 39, 0.28);
  transform: scale(1.03);
}

.ck-bubble__circle .ck-logo-mark {
  width: 78%;
  height: 78%;
}

/* Panel */
.ck-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
  height: min(660px, calc(100vh - 6rem));
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 50px rgba(10, 30, 20, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.2s ease;
  max-height: calc(100vh - 6rem);
}

.ck-panel--open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.ck-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 9px 14px;
  background: var(--forest-800);
  color: var(--white);
  flex-shrink: 0;
}

.ck-header__logo {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ck-logo-mark {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.ck-header__info {
  flex: 1;
  min-width: 0;
}

.ck-header__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.ck-header__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

.ck-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ddb85;
  box-shadow: 0 0 0 2px rgba(93, 219, 133, 0.35);
  flex-shrink: 0;
}

.ck-header__btns {
  display: flex;
  gap: 6px;
}

.ck-header__btn {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.ck-header__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* Messages area */
.ck-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 10px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  background: #f7faf8;
}

@keyframes ck-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Message row */
.ck-msg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  animation: ck-fade-in 0.2s ease;
}

.ck-msg--bot  { flex-direction: row; }
.ck-msg--user { flex-direction: row-reverse; }

.ck-msg__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ck-msg__content {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}

.ck-msg--user .ck-msg__content {
  align-items: flex-end;
}

.ck-msg__bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}

.ck-msg--bot .ck-msg__bubble {
  background: var(--white);
  color: #1a3028;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.ck-msg--user .ck-msg__bubble {
  background: var(--forest-700);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.ck-msg__meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: #9aab9e;
  margin-top: 4px;
  padding: 0 4px;
}

.ck-msg__ticks {
  color: #4db87a;
  font-size: 12px;
  letter-spacing: -1px;
}

/* Typing indicator */
.ck-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 16px !important;
  min-width: 56px;
}

.ck-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  animation: ck-bounce 1.2s infinite;
}

.ck-typing span:nth-child(2) { animation-delay: 0.18s; }
.ck-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes ck-bounce {
  0%, 80%, 100% { transform: scale(0.55); opacity: 0.45; }
  40%           { transform: scale(1);    opacity: 1; }
}

/* CTA button inside bot messages */
.ck-msg__cta {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.ck-msg__cta .ck-link {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid var(--forest-700);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--forest-700);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ck-msg__cta .ck-link:hover {
  background: var(--forest-800);
  color: var(--white);
  border-color: var(--forest-800);
}

/* Quick replies 2x2 grid */
.ck-quick-replies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 14px 14px;
  background: #f7faf8;
  border-top: 1px solid var(--sage-300);
}

.ck-qr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1.5px solid var(--sage-300);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: border-color 0.15s, background 0.15s;
}

.ck-qr:hover {
  border-color: var(--forest-700);
  background: var(--sage-200);
}

.ck-qr__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest-700);
}

.ck-qr__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--forest-800);
  line-height: 1.3;
}

/* Input row */
.ck-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--sage-300);
  background: var(--white);
  flex-shrink: 0;
}

.ck-attach {
  background: none;
  border: none;
  color: #b8c8be;
  cursor: default;
  padding: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ck-input {
  flex: 1;
  border: none;
  background: none;
  font-size: 13.5px;
  font-family: var(--font-sans);
  outline: none;
  color: #1a3028;
  padding: 4px 0;
}

.ck-input::placeholder {
  color: #b8c8be;
}

.ck-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}

.ck-send:hover {
  background: var(--forest-700);
  transform: scale(1.05);
}

/* Inline links (inside FAQ text etc.) */
.ck-link {
  color: var(--forest-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ck-link:hover {
  color: var(--forest-800);
}

/* Product list rows */
.ck-product-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--sage-200);
}

.ck-product-row:last-child {
  border-bottom: none;
}

.ck-product-name {
  font-weight: 500;
  font-size: 0.82rem;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ck-product-price {
  font-size: 0.78rem;
  color: #5a7a66;
  flex-shrink: 0;
  font-weight: 600;
}

.ck-product-pick {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  padding: 0.45rem;
  background: #f7faf8;
  border: 1px solid var(--sage-200);
  border-radius: 12px;
}

.ck-product-pick img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--sage-200);
}

.ck-product-pick__title {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.ck-product-pick small {
  display: block;
  color: #5a7a66;
  font-size: 0.74rem;
  line-height: 1.3;
}

.ck-order-help {
  display: grid;
  gap: 0.7rem;
}

.ck-order-help > strong {
  color: var(--forest-900);
  font-size: 0.92rem;
  line-height: 1.25;
}

.ck-order-help p {
  margin: 0;
  color: #5a7a66;
  font-size: 0.78rem;
  line-height: 1.4;
}

.ck-order-help-form {
  display: grid;
  gap: 0.62rem;
}

.ck-order-help-form label {
  display: grid;
  gap: 0.28rem;
  color: var(--forest-900);
  font-size: 0.74rem;
  font-weight: 800;
}

.ck-order-help-form input,
.ck-order-help-form textarea {
  width: 100%;
  border: 1px solid var(--sage-300);
  border-radius: 10px;
  background: #ffffff;
  color: #1a3028;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 0.62rem 0.68rem;
}

.ck-order-help-form textarea {
  resize: vertical;
  min-height: 96px;
}

.ck-order-help-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--forest-800);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.62rem 0.9rem;
}

@media (max-width: 480px) {
  .ck-panel {
    width: calc(100vw - 2rem);
    height: min(680px, calc(100dvh - 2rem));
    max-height: calc(100dvh - 2rem);
    right: 0;
  }

  #ck-chat-root {
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    right: 0.85rem;
  }

  .ck-bubble {
    width: 5.35rem;
  }

  .ck-bubble__label {
    min-height: 1.7rem;
    padding: 0.32rem 0.58rem;
    font-size: 0.66rem;
  }

  .ck-bubble__circle {
    width: 3.9rem;
    height: 3.9rem;
  }
}
