:root {
  --ink: #101310;
  --ink-soft: #343b35;
  --paper: #f5f7f2;
  --paper-strong: #ffffff;
  --line: #d7ddd3;
  --muted: #6a746b;
  --accent: #1f7a4d;
  --accent-dark: #0f5130;
  --accent-soft: #d9eadb;
  --amazon-price: #b12704;
  --amazon-price-dark: #8a1c00;
  --amazon-was: #565959;
  --etsy: #f1641e;
  --tiktok: #010101;
  --tiktok-red: #fe2c55;
  --tiktok-cyan: #25f4ee;
  --surface: #e9eee4;
  --shadow: 0 24px 60px rgba(36, 48, 38, 0.16);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

main {
  overflow: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px clamp(16px, 4vw, 54px);
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.84rem;
  font-weight: 780;
}

.site-announcement strong {
  font-weight: 900;
}

.announcement-rating {
  flex: 0 0 auto;
  color: #ffd166;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-announcement a {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 5px 10px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.site-announcement a:hover,
.site-announcement a:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(245, 247, 242, 0.88);
  border-bottom: 1px solid rgba(16, 19, 16, 0.08);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(245, 247, 242, 0.96);
  box-shadow: 0 12px 36px rgba(24, 32, 26, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-strong);
  font-weight: 800;
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 10px 14px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--paper-strong);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--accent-dark);
  color: var(--paper-strong);
}

.account-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.account-nav-icon {
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  background: #171816;
  box-shadow: 0 10px 22px rgba(9, 14, 10, 0.16);
}

.account-nav-icon svg {
  width: 23px;
  height: 23px;
  fill: #cdb98b;
  stroke: #cdb98b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.account-nav-label {
  font-weight: 760;
}

.nav-cart-link {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0;
}

.nav-cart-link:hover,
.nav-cart-link:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cart-link svg {
  width: 21px;
  height: 21px;
}

.nav-cart-link [data-cart-count],
.cart-page-link [data-cart-count] {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--paper-strong);
  font-size: 0.76rem;
  font-weight: 900;
  padding-inline: 7px;
}

.nav-cart-link [data-cart-count] {
  position: absolute;
  top: -4px;
  right: -3px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(18px, 3vw, 34px) clamp(30px, 5vw, 66px);
  align-items: center;
  padding-block: clamp(36px, 5.2vw, 58px) clamp(18px, 2.8vw, 30px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero-commerce {
  grid-column: 1;
  grid-row: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 5.9vw, 4.85rem);
  letter-spacing: -0.02em;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5.3vw, 4.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.hero-text {
  max-width: 52ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-assurance span {
  border: 1px solid rgba(31, 122, 77, 0.22);
  border-radius: 999px;
  background: rgba(217, 234, 219, 0.52);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 11px;
}

.hero-trade-note {
  position: relative;
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin-top: 12px;
  border: 1px solid rgba(196, 178, 127, 0.44);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 249, 227, 0.88), rgba(255, 255, 255, 0.7)),
    var(--paper-strong);
  color: var(--ink);
  padding: 13px 16px 13px 44px;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(92, 70, 23, 0.08);
}

.hero-trade-note::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4b27f, #ff9900);
  box-shadow: 0 0 0 6px rgba(196, 178, 127, 0.17);
}

.hero-trade-note span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-trade-note strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-trade-note:hover,
.hero-trade-note:focus-visible {
  border-color: rgba(255, 153, 0, 0.64);
  transform: translateY(-1px);
}

.hero-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: -2px 0 16px;
}

.review-link {
  color: inherit;
  text-decoration: none;
}

.review-link:hover,
.review-link:focus-visible {
  transform: translateY(-1px);
}

.hero-rating-row .stars,
.checkout-rating-card .stars {
  color: #d99b12;
  letter-spacing: 0.08em;
}

.hero-rating-row strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-rating-row small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.solution-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.solution-routes a {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.solution-routes a:hover,
.solution-routes a:focus-visible {
  border-color: rgba(31, 122, 77, 0.42);
  background: var(--paper-strong);
  box-shadow: 0 16px 34px rgba(38, 48, 40, 0.1);
  transform: translateY(-2px);
}

.solution-routes span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solution-routes strong {
  margin-top: 22px;
  font-size: 0.98rem;
  line-height: 1.1;
}

.solution-routes small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

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

.hero-actions-primary {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button,
.product-link,
.video-link,
.text-link,
.solution-routes a,
.buyer-trust-card,
.chat-button,
.nav-toggle {
  touch-action: manipulation;
}

.button:hover,
.button:focus-visible,
.product-link:hover,
.product-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: 0 16px 34px rgba(17, 20, 16, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.button-share-reward {
  border: 1px solid rgba(255, 153, 0, 0.48);
  background: linear-gradient(180deg, #ffd76f 0%, #ff9900 100%);
  color: #111410;
  box-shadow: 0 16px 34px rgba(255, 153, 0, 0.2);
}

.button-share-reward:hover,
.button-share-reward:focus-visible {
  background: linear-gradient(180deg, #ffe08c 0%, #f28c00 100%);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
  padding: 8px 12px;
}

.buyer-trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(217, 234, 219, 0.44)),
    var(--paper-strong);
  margin-top: 12px;
  padding: 14px;
}

.buyer-trust-intro {
  display: none;
  align-content: center;
}

.buyer-trust-intro h2 {
  max-width: 11ch;
  font-size: clamp(1.65rem, 3.1vw, 2.85rem);
  line-height: 1;
}

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

.buyer-trust-card {
  display: grid;
  min-height: 124px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.buyer-trust-card:hover,
.buyer-trust-card:focus-visible {
  border-color: rgba(31, 122, 77, 0.4);
  background: var(--paper-strong);
  box-shadow: 0 14px 30px rgba(38, 48, 40, 0.1);
  transform: translateY(-2px);
}

.buyer-trust-card strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.12;
}

.buyer-trust-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.4;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  position: relative;
  min-height: auto;
  padding: clamp(34px, 4vw, 56px) clamp(58px, 7vw, 92px) 0 0;
}

.hero-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-card:hover,
.hero-card:focus-visible {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 30px 70px rgba(36, 48, 38, 0.22);
}

.hero-card-main {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  margin-left: auto;
  transform: none;
}

.hero-card-side {
  position: absolute;
  left: clamp(0px, 1vw, 12px);
  bottom: clamp(54px, 6vw, 88px);
  z-index: 2;
  display: block;
  width: min(30%, 170px);
  aspect-ratio: 1;
  transform: rotate(-4deg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 28%),
    var(--paper-strong);
  object-fit: contain;
}

.hero-card-main img {
  height: auto;
  padding: 0;
}

.hero-card-main span {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  color: var(--ink-soft);
  font-weight: 800;
}

.hero-proof-card {
  position: absolute;
  right: clamp(8px, 2vw, 24px);
  bottom: clamp(18px, 3vw, 44px);
  z-index: 3;
  display: grid;
  gap: 7px;
  width: min(220px, 46%);
  border: 1px solid rgba(31, 122, 77, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 19, 16, 0.14);
  padding: 14px;
}

.hero-proof-card strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.08;
}

.hero-proof-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(12px, 2vw, 22px);
}

.decision-strip a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 16px;
  background: var(--paper-strong);
  box-shadow: 0 12px 28px rgba(38, 48, 40, 0.07);
  padding: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.decision-strip a:hover,
.decision-strip a:focus-visible {
  border-color: rgba(31, 122, 77, 0.38);
  box-shadow: 0 18px 38px rgba(38, 48, 40, 0.1);
  transform: translateY(-2px);
}

.decision-strip strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.decision-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
}

.motion-disc {
  position: absolute;
  right: 0;
  top: clamp(26px, 4.2vw, 58px);
  z-index: 0;
  width: clamp(130px, 18vw, 220px);
  aspect-ratio: 1;
  border: 22px solid rgba(31, 122, 77, 0.12);
  border-top-color: rgba(31, 122, 77, 0.5);
  border-radius: 50%;
  animation: rotate-disc 18s linear infinite;
}

.motion-disc::before,
.motion-disc::after {
  content: "";
  position: absolute;
  inset: 24%;
  border: 1px solid rgba(16, 19, 16, 0.36);
  border-radius: 50%;
}

.motion-disc::after {
  inset: 42%;
  background: var(--accent);
}

@keyframes rotate-disc {
  to {
    transform: rotate(360deg);
  }
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  padding: 18px 22px;
}

.promo-strip p {
  margin: 0;
  font-weight: 760;
}

.promo-strip a {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper-strong);
  font-weight: 850;
  padding: 10px 14px;
}

.promo-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.promo-actions .mini-action {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--accent);
}

.promo-actions .mini-action-light {
  background: var(--paper-strong);
  color: var(--ink);
}

.share-code {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper-strong);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 9px 13px;
}

.share-kit-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 92% 12%, rgba(31, 122, 77, 0.12), transparent 28%),
    var(--paper-strong);
  padding: clamp(14px, 2.6vw, 24px);
  box-shadow: 0 18px 48px rgba(38, 48, 40, 0.11);
}

.share-kit-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 16%, rgba(31, 122, 77, 0.1), transparent 32%),
    var(--surface);
}

.share-kit-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 10px;
}

.share-kit-media span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(16, 19, 16, 0.86);
  color: var(--paper-strong);
  font-size: 0.78rem;
  font-weight: 950;
  padding: 9px 12px;
  text-align: center;
}

.share-kit-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(8px, 2vw, 18px);
}

.share-kit-copy h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.share-kit-copy > p:not(.eyebrow),
.share-message-card p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.share-message-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 247, 242, 0.72);
  padding: 14px;
}

.share-message-card strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

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

.share-platform-button,
.share-mini-platforms button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 950;
  padding: 10px 12px;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.share-platform-button img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
}

.share-platform-button:hover,
.share-platform-button:focus-visible,
.share-mini-platforms button:hover,
.share-mini-platforms button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 12px 28px rgba(16, 19, 16, 0.14);
}

.share-native,
.share-link,
.share-email {
  background: var(--accent-dark);
}

.share-facebook,
.share-messenger {
  background: #1264d8;
}

.share-whatsapp {
  background: #128c4a;
}

.share-x {
  background: #050505;
}

.share-pinterest {
  background: #bd081c;
}

.share-reward-actions {
  justify-content: flex-start;
}

#share-reward {
  scroll-margin-top: 112px;
}

.share-reward-actions .share-code {
  border-color: rgba(31, 122, 77, 0.22);
  background: var(--accent-dark);
}

.share-kit-compact {
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 22px);
  margin-top: clamp(18px, 3vw, 28px);
  padding: clamp(10px, 1.8vw, 16px);
}

.share-kit-secondary {
  display: grid;
}

.share-kit-compact .share-kit-media {
  min-height: 160px;
}

.share-kit-compact .share-kit-media img {
  min-height: 160px;
  padding: 6px;
}

.share-kit-compact .share-kit-media span {
  left: 8px;
  right: 8px;
  bottom: 8px;
  font-size: 0.68rem;
  padding: 6px 8px;
}

.share-kit-compact .share-kit-copy {
  gap: 10px;
  padding: 4px;
}

.share-kit-compact .share-kit-copy h2 {
  max-width: 28ch;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.02;
}

.share-kit-compact .share-kit-copy > p:not(.eyebrow) {
  max-width: 68ch;
  font-size: 0.92rem;
}

.share-kit-compact .share-platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.share-kit-compact .share-platform-button {
  min-height: 38px;
  font-size: 0.72rem;
  padding: 8px 10px;
}

.share-kit-compact .share-reward-actions {
  margin-top: 0;
}

.share-mini-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.share-mini-platforms button {
  min-height: 34px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.68rem;
  padding: 7px 9px;
}

.gift-finder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  padding-block: clamp(42px, 7vw, 78px) clamp(28px, 5vw, 54px);
}

.gift-finder-copy {
  position: sticky;
  top: 92px;
}

.gift-finder-copy h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 4.2vw, 3.55rem);
}

.gift-finder-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--muted);
}

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

.gift-finder-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 122, 77, 0.09), transparent 36%),
    var(--paper-strong);
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 16px 34px rgba(38, 48, 40, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.gift-finder-card:hover,
.gift-finder-card:focus-visible {
  border-color: rgba(31, 122, 77, 0.38);
  box-shadow: 0 22px 46px rgba(38, 48, 40, 0.11);
  transform: translateY(-3px);
}

.gift-finder-card span {
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-finder-card strong {
  display: block;
  margin-top: 46px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.gift-finder-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.offers-section {
  padding-top: clamp(28px, 5vw, 54px);
}

.offer-panel,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--paper-strong);
  padding: clamp(22px, 5vw, 44px);
  box-shadow: 0 18px 48px rgba(38, 48, 40, 0.08);
}

.offer-panel h2,
.contact-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.offer-grid,
.policy-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

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

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

.offer-grid-compact article:first-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.offer-grid article,
.policy-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
}

.offer-grid span,
.policy-card span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.offer-grid strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.offer-grid p,
.policy-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.offer-grid a {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mini-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 13px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.mini-action:hover,
.mini-action:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.offer-grid .mini-action {
  color: var(--paper-strong);
  text-decoration: none;
}

.mini-action-light,
.offer-grid .mini-action-light {
  border-color: var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.mini-action-light:hover,
.mini-action-light:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(31, 122, 77, 0.3);
  color: var(--accent-dark);
}

.offer-status {
  min-height: 1.2em;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.paypal-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(18px, 4vw, 34px);
  margin-top: 18px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(31, 122, 77, 0.11), transparent 34%),
    var(--paper);
  padding: clamp(18px, 4vw, 28px);
}

.paypal-copy h3 {
  max-width: 12ch;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.paypal-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.paypal-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--paper-strong);
  padding: 18px;
}

.paypal-window-heading {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.paypal-window-heading span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paypal-window-heading strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.checkout-rating-card {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.checkout-rating-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.checkout-rating-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 730;
  line-height: 1.4;
}

.paypal-fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: 18px 0 0;
}

.paypal-fieldset legend {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 950;
  padding: 0 10px 0 0;
  text-transform: none;
}

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

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

.paypal-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.paypal-form input,
.paypal-form select,
.paypal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 11px 12px;
}

.paypal-form input::placeholder,
.paypal-form textarea::placeholder {
  color: rgba(81, 90, 76, 0.62);
}

.paypal-form input:focus,
.paypal-form select:focus,
.paypal-form textarea:focus {
  border-color: rgba(31, 122, 77, 0.55);
  outline: 3px solid rgba(31, 122, 77, 0.16);
}

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

.paypal-code-row .mini-action {
  min-height: 46px;
  white-space: nowrap;
}

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

.tip-choice {
  position: relative;
  cursor: pointer;
}

.tip-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.tip-choice span {
  display: grid;
  min-height: 52px;
  align-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 950;
  padding: 11px 12px;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.tip-choice small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
}

.tip-choice-custom {
  grid-column: 1 / -1;
}

.tip-choice input:checked + span {
  border-color: rgba(31, 122, 77, 0.56);
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(31, 122, 77, 0.24);
}

.tip-choice input:focus-visible + span {
  outline: 3px solid rgba(31, 122, 77, 0.16);
  outline-offset: 2px;
}

.tip-custom-row {
  margin-top: 2px;
}

.paypal-price-summary {
  display: grid;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0 0 14px;
}

.paypal-price-summary span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.paypal-price-summary strong {
  color: var(--ink-soft);
}

.paypal-price-summary b {
  color: var(--amazon-price);
  font-size: 0.96rem;
  font-weight: 950;
}

.paypal-total {
  border-top: 1px solid rgba(31, 122, 77, 0.18);
  padding-top: 10px;
}

.paypal-total strong,
.paypal-total b {
  color: var(--accent-dark);
}

.paypal-total b {
  font-size: 1.16rem;
}

.paypal-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.paypal-form .field-error {
  border-color: rgba(183, 58, 36, 0.72);
  outline: 3px solid rgba(183, 58, 36, 0.12);
}

.paypal-buttons {
  min-height: 48px;
}

.checkout-action-panel {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 16px 0 0;
}

.checkout-action-copy {
  display: grid;
  gap: 4px;
  padding-inline: 2px;
}

.checkout-action-copy strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.checkout-action-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.paypal-direct-checkout-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: #ffc439;
  color: #111410;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 950;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(16, 19, 16, 0.16);
}

.paypal-direct-checkout-button:hover,
.paypal-direct-checkout-button:focus-visible {
  background: #f2ba36;
  transform: translateY(-1px);
}

.paypal-direct-checkout-button:disabled {
  background: var(--surface);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.paypal-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.cart-hero {
  max-width: 1180px;
  padding-block: clamp(24px, 5vw, 48px) 14px;
}

.cart-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
}

.cart-checkout-section {
  padding-block: 18px clamp(72px, 10vw, 124px);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.cart-items-panel,
.cart-summary-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  box-shadow: 0 8px 24px rgba(38, 48, 40, 0.06);
}

.cart-items-panel {
  overflow: hidden;
}

.cart-summary-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

.cart-panel-header h2 {
  max-width: 100%;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.cart-empty {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
}

.cart-empty strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.cart-empty p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.checkout-add-panel {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(217, 234, 219, 0.78), rgba(255, 255, 255, 0.92)),
    var(--paper-strong);
  padding: 18px;
}

.checkout-add-panel strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.checkout-add-panel p:not(.eyebrow),
.checkout-add-status {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-add-controls {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(200px, 1.2fr) 88px auto;
  gap: 10px;
  align-items: end;
}

.checkout-add-controls label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.checkout-add-controls select,
.checkout-add-controls input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 720;
  padding: 10px 11px;
}

.cart-lines {
  display: grid;
}

.cart-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(150px, 0.34fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.cart-line:last-child {
  border-bottom: 0;
}

.cart-line-media {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border-radius: 16px;
  background: var(--surface);
}

.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-line-media span {
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 950;
}

.cart-line-body h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.cart-line-body p:not(.product-kicker) {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.cart-line-meta span {
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 850;
  padding: 6px 8px;
}

.cart-line-controls {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.cart-line-controls label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.cart-line-controls input {
  width: 86px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 850;
  padding: 9px 10px;
  text-align: center;
}

.cart-line-controls strong {
  color: var(--accent-dark);
  font-size: 1.08rem;
}

.cart-line-price {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.cart-line-price small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: line-through;
}

.cart-summary-panel label,
.cart-note-label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.cart-summary-panel input,
.cart-summary-panel select,
.cart-summary-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 11px 12px;
}

.field-helper {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.cart-summary-panel input::placeholder,
.cart-summary-panel textarea::placeholder {
  color: rgba(81, 90, 76, 0.62);
}

.cart-summary-panel input:focus,
.cart-summary-panel select:focus,
.cart-summary-panel textarea:focus {
  border-color: rgba(31, 122, 77, 0.55);
  outline: 3px solid rgba(31, 122, 77, 0.16);
}

.cart-summary-panel .field-error {
  border-color: rgba(183, 58, 36, 0.72);
  outline: 3px solid rgba(183, 58, 36, 0.12);
}

.custom-color-confirm-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(241, 100, 30, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 235, 0.94), rgba(255, 255, 255, 0.96)),
    var(--paper-strong);
  padding: 14px;
}

.custom-color-confirm-panel[hidden] {
  display: none;
}

.custom-color-confirm-panel strong {
  color: var(--ink);
  line-height: 1.2;
}

.custom-color-confirm-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.custom-color-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.custom-color-confirm-check input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.cart-is-empty .paypal-buttons {
  opacity: 0.58;
}

.cart-is-empty .paypal-direct-checkout-button {
  opacity: 0.65;
}

.checkout-assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.checkout-assurance-list span {
  flex: 1 1 calc(50% - 7px);
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 12px;
  background: rgba(217, 234, 219, 0.52);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.25;
  padding: 8px 9px;
}

.checkout-support-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(217, 234, 219, 0.44)),
    var(--paper-strong);
  padding: 13px;
}

.checkout-support-note strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.18;
}

.checkout-support-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.42;
}

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

.checkout-support-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.78rem;
  font-weight: 950;
  padding: 9px 10px;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.checkout-support-actions a:hover,
.checkout-support-actions a:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.paypal-return-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.paypal-return-card {
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.paypal-return-card h1 {
  margin-top: 0;
}

.paypal-return-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.paypal-return-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: end;
  padding-block: clamp(34px, 6vw, 72px) 24px;
}

[hidden] {
  display: none !important;
}

.admin-login-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  min-height: calc(100dvh - 92px);
  padding-block: clamp(42px, 8vw, 96px);
}

.admin-login-screen h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

.admin-login-card {
  align-self: center;
}

.admin-dashboard-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-dashboard-bar h1 {
  max-width: 100%;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

.admin-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5.8vw, 4.5rem);
}

.admin-pin-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(38, 48, 40, 0.08);
}

.admin-pin-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.admin-pin-panel label,
.discount-form label,
.listing-form label,
.password-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-pin-panel input,
.discount-form input,
.listing-form input,
.listing-form textarea,
.password-form input,
.admin-reply-box textarea,
.admin-order-tracking input,
.admin-order select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 11px 12px;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
  padding-block: 24px clamp(72px, 10vw, 124px);
}

.admin-card {
  overflow: hidden;
}

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

.admin-card-header h2 {
  max-width: 100%;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.admin-chat-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  min-height: 520px;
}

.admin-conversation-list {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--line);
  background: rgba(245, 247, 242, 0.6);
}

.admin-conversation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid var(--line);
}

.admin-conversation-row.is-active {
  background: var(--accent-soft);
}

.admin-conversation {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 14px;
  text-align: left;
}

.admin-delete-chat {
  align-self: center;
  margin-right: 10px;
  border: 1px solid rgba(177, 60, 35, 0.25);
  border-radius: 999px;
  background: rgba(177, 60, 35, 0.08);
  color: #943820;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 7px 9px;
}

.admin-delete-chat:hover,
.admin-delete-chat:focus-visible {
  background: #943820;
  color: var(--paper-strong);
}

.admin-conversation strong,
.admin-customer-card strong,
.admin-order strong,
.discount-code-row strong {
  color: var(--ink);
}

.admin-conversation span,
.admin-conversation small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-conversation small,
.admin-message small,
.admin-note,
.discount-code-row small {
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-conversation-detail {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.admin-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: 560px;
  overflow: auto;
  padding: 18px;
}

.admin-customer-card {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 12px;
}

.admin-customer-card a {
  color: var(--accent-dark);
  font-weight: 850;
}

.admin-customer-card span {
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 850;
  padding: 6px 8px;
}

.admin-message {
  display: grid;
  gap: 5px;
  max-width: 72%;
  border-radius: 15px;
  background: var(--surface);
  padding: 11px 12px;
}

.admin-message.from-admin {
  justify-self: end;
  background: var(--ink);
  color: var(--paper-strong);
}

.admin-message.from-admin strong,
.admin-message.from-admin small {
  color: var(--paper-strong);
}

.admin-message.from-customer {
  justify-self: start;
  background: var(--accent-soft);
}

.admin-message p {
  margin: 0;
}

.admin-reply-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 14px;
}

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

.admin-orders,
.discount-list,
.admin-listings {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.admin-order,
.discount-code-row,
.admin-listing-row {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 247, 242, 0.62);
  padding: 14px;
}

.admin-order a {
  color: var(--accent-dark);
  font-weight: 850;
}

.admin-order-items {
  display: grid;
  gap: 6px;
}

.admin-order-items span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.admin-order-footer {
  display: grid;
  grid-template-columns: minmax(130px, 0.5fr) minmax(120px, 1fr) minmax(130px, 0.45fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-order-tracking {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.admin-order-tracking label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-order-tracking small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.76rem;
}

.discount-form {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) 100px auto auto;
  gap: 10px;
  align-items: end;
  padding: 18px;
}

.listing-form,
.password-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 10px;
  align-items: end;
  padding: 18px;
}

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

.listing-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.listing-form legend {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0 8px;
  text-transform: uppercase;
}

.listing-form-wide {
  grid-column: span 3;
}

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

.admin-listing-row {
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
}

.admin-listing-row img {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--surface);
}

.admin-listing-row div {
  display: grid;
  gap: 4px;
}

.admin-listing-row strong {
  color: var(--ink);
}

.admin-listing-row span,
.admin-listing-row small {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.discount-active-row {
  display: flex !important;
  align-items: center;
  min-height: 46px;
}

.discount-active-row input {
  width: auto;
}

.admin-note {
  margin: 0;
  padding: 0 18px;
}

.custom-section {
  padding-top: 0;
}

.custom-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 5vw, 54px);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(31, 122, 77, 0.12), transparent 48%),
    var(--ink);
  color: var(--paper-strong);
  padding: clamp(22px, 5vw, 44px);
}

.custom-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.custom-copy .eyebrow {
  color: var(--accent-soft);
}

.custom-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.custom-panel .button-primary {
  background: var(--paper-strong);
  color: var(--ink);
}

.custom-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
}

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

.custom-service-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.custom-service-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.custom-service-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.swatch-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 11px;
}

.swatch-row span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--swatch);
}

.problem-section,
.products-section,
.proof-section,
.room-proof-section,
.care-section,
.social-section,
.faq-section,
.video-section,
.offers-section,
.custom-section,
.reviews-section,
.policies-section,
.contact-section,
.closing-cta {
  padding-block: clamp(72px, 10vw, 124px);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.products-section {
  padding-top: clamp(42px, 6vw, 82px);
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading .section-intro {
  margin-top: clamp(12px, 2vw, 18px);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  min-width: max-content;
  border-bottom: 2px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 850;
  transition: transform 180ms ease;
}

.heading-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.heading-actions .text-link {
  min-width: 0;
}

.problem-section {
  padding-block: clamp(36px, 5vw, 68px);
}

.problem-section .section-heading {
  margin-bottom: clamp(16px, 2.5vw, 26px);
}

.problem-section .section-heading h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

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

.problem-card,
.solution-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}

.problem-section .problem-card,
.problem-section .solution-card {
  min-height: 190px;
  padding: clamp(18px, 2.2vw, 24px);
}

.problem-card {
  background: rgba(255, 255, 255, 0.52);
}

.solution-card {
  background: var(--accent-dark);
  color: var(--paper-strong);
}

.problem-card span,
.solution-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.problem-section .problem-card span,
.problem-section .solution-card span {
  margin-bottom: 24px;
}

.solution-card span {
  color: var(--accent-soft);
}

.problem-card p,
.solution-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.solution-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.product-card {
  display: grid;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(38, 48, 40, 0.08);
}

.product-card-wide {
  grid-column: span 4;
  grid-template-columns: 0.94fr 1fr;
}

.tiktok-shop-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  padding: clamp(18px, 3vw, 24px);
}

.tiktok-shop-note .eyebrow {
  color: var(--accent-soft);
}

.tiktok-shop-note strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.1;
}

.tiktok-shop-note p:not(.eyebrow) {
  max-width: 68ch;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.tiktok-shop-note .button-secondary {
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--paper-strong);
}

.best-seller-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  scroll-margin-top: 112px;
  margin: 18px 0 18px;
}

.storefront-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  scroll-margin-top: 112px;
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin: clamp(24px, 5vw, 52px) 0 18px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(16, 19, 16, 0.92), rgba(25, 52, 36, 0.95)),
    var(--ink);
  color: var(--paper-strong);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(32, 44, 34, 0.18);
}

.spotlight-media {
  position: relative;
  min-height: 440px;
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 234, 219, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.04);
}

.spotlight-media a {
  display: block;
  height: 100%;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(14px, 3vw, 28px);
}

.spotlight-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(8, 11, 8, 0.68);
  color: var(--paper-strong);
  padding: 14px;
  backdrop-filter: blur(12px);
}

.spotlight-note span,
.spotlight-copy .eyebrow {
  color: var(--accent-soft);
}

.spotlight-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-note strong {
  font-size: 0.95rem;
  line-height: 1.18;
}

.spotlight-copy {
  align-self: center;
  padding: clamp(24px, 5vw, 50px) clamp(22px, 5vw, 56px) clamp(26px, 5vw, 52px) 0;
}

.spotlight-copy h2 {
  max-width: 12ch;
  color: var(--paper-strong);
  font-size: clamp(2.05rem, 4.8vw, 4.25rem);
}

.spotlight-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.spotlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.spotlight-badges span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 11px;
}

.spotlight-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper-strong);
  padding: 13px 14px;
}

.spotlight-price span,
.spotlight-price small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 850;
}

.spotlight-price strong {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
}

.spotlight-price small {
  flex-basis: 100%;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.spotlight-actions .button-primary {
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.spotlight-actions .button-primary:hover,
.spotlight-actions .button-primary:focus-visible {
  background: var(--accent-soft);
}

.spotlight-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
}

.best-seller-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 0.46fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(241, 100, 30, 0.22);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow:
    0 16px 38px rgba(38, 48, 40, 0.1),
    0 0 0 1px rgba(241, 100, 30, 0.06) inset;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.best-seller-card:hover,
.best-seller-card:focus-within {
  border-color: rgba(241, 100, 30, 0.42);
  box-shadow:
    0 22px 50px rgba(38, 48, 40, 0.14),
    0 0 0 1px rgba(241, 100, 30, 0.1) inset;
  transform: translateY(-3px);
}

.best-seller-card > a {
  display: block;
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 122, 77, 0.08), transparent 30%),
    var(--surface);
}

.best-seller-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  padding: 8px;
}

.best-seller-card > div {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 14px;
}

.best-seller-card span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-rating-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}

.product-rating-mini b {
  color: #d99b12;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  line-height: 1;
}

.product-rating-mini small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
}

.catalog-rating {
  margin-top: 10px;
}

.best-seller-card h3 {
  margin-top: 10px;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.best-seller-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.best-seller-price {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  border: 1px solid rgba(31, 122, 77, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(217, 234, 219, 0.86), rgba(255, 255, 255, 0.94)),
    var(--paper-strong);
  padding: 9px 10px;
}

.best-seller-price span,
.best-seller-price small {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.best-seller-price strong {
  color: var(--accent-dark);
  font-size: 1.16rem;
  line-height: 1;
}

.best-seller-price small {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.best-seller-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.best-seller-actions .mini-action {
  font-size: 0.78rem;
  text-align: center;
}

.collection-section {
  scroll-margin-top: 112px;
  padding-block: clamp(36px, 6vw, 72px) clamp(18px, 3vw, 34px);
}

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

.collection-card {
  position: relative;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  isolation: isolate;
  box-shadow: 0 18px 44px rgba(38, 48, 40, 0.11);
}

.collection-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 19, 16, 0.02) 24%, rgba(16, 19, 16, 0.86) 100%),
    radial-gradient(circle at 80% 10%, rgba(217, 234, 219, 0.16), transparent 28%);
}

.collection-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: var(--surface);
  object-fit: cover;
  transition: transform 520ms ease;
}

.collection-card:hover img,
.collection-card:focus-visible img {
  transform: scale(1.04);
}

.collection-card span,
.room-proof-card span {
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card strong {
  display: block;
  max-width: 18ch;
  margin-top: 10px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.collection-card-large strong {
  max-width: 15ch;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.collection-card span,
.collection-card strong {
  margin-inline: clamp(16px, 2.6vw, 24px);
}

.collection-card strong {
  margin-bottom: clamp(18px, 3vw, 26px);
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 270px;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 30%),
    var(--surface);
}

.product-card-wide .product-image {
  min-height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 10px;
  object-fit: contain;
  transition:
    transform 450ms ease,
    filter 450ms ease;
}

.product-image:hover img,
.product-image:focus-visible img {
  transform: scale(1.02);
  filter: contrast(1.03) saturate(1.04);
}

.product-body {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
}

.product-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-body p:not(.product-kicker) {
  margin: 15px 0 0;
  color: var(--muted);
}

.product-offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.product-offer-strip span {
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding: 7px 9px;
}

.product-offer-strip span:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-strong);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.product-meta span {
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 10px;
}

.product-link {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  font-weight: 850;
  padding: 11px 15px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  background: var(--accent-dark);
}

.product-more {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 247, 242, 0.76);
}

.product-more summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 11px 14px;
}

.product-more summary::-webkit-details-marker {
  display: none;
}

.product-more summary::after {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
}

.product-more[open] summary::after {
  content: "-";
}

.product-more-panel {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 14px;
}

.product-more-panel p,
.product-body .product-more-panel p,
.catalog-body .product-more-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.product-more-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-more-panel li {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.35;
  padding-left: 18px;
}

.product-more-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.perfect-for {
  display: grid;
  gap: 8px;
}

.perfect-for strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.perfect-for div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.perfect-for span {
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  padding: 6px 8px;
}

.care-note {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.media-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}

.currency-note {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 820;
}

[data-usd-price]::after {
  content: attr(data-local-price);
  display: inline-block;
  margin-left: 0.38em;
  color: var(--accent-dark);
  font-size: 0.72em;
  font-weight: 850;
  white-space: nowrap;
}

[data-local-price=""]::after {
  content: "";
  display: none;
}

.media-stats span {
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 12px;
}

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

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 104px;
}

.catalog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 16px;
  background: var(--paper-strong);
  box-shadow: 0 12px 28px rgba(38, 48, 40, 0.07);
}

.catalog-card.is-best-seller {
  border-color: rgba(241, 100, 30, 0.34);
  box-shadow:
    0 18px 42px rgba(38, 48, 40, 0.1),
    0 0 0 1px rgba(241, 100, 30, 0.08) inset;
}

.catalog-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 122, 77, 0.1), transparent 30%),
    var(--surface);
}

.catalog-best-seller-burn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 181, 72, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 197, 88, 0.96), rgba(255, 166, 39, 0.96));
  color: #1d160c;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 8px 13px 8px 11px;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(14, 18, 14, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.catalog-best-seller-burn::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8df 0%, #ffdf8f 100%);
  box-shadow: 0 0 0 4px rgba(255, 202, 102, 0.18);
}

.carousel-track {
  display: flex;
  max-width: 100%;
  height: 100%;
  overscroll-behavior-inline: contain;
  min-height: 360px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar,
.product-offer-strip::-webkit-scrollbar,
.catalog-highlights::-webkit-scrollbar,
.media-stats::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  min-width: 100%;
  place-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 30%),
    var(--surface);
}

.carousel-slide img,
.carousel-slide video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
}

.carousel-slide img {
  padding: 8px;
}

.video-slide video {
  background: var(--ink);
}

.slide-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  background: rgba(16, 19, 16, 0.82);
  color: var(--paper-strong);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 9px;
}

.carousel-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(16, 19, 16, 0.82);
  color: var(--paper-strong);
  cursor: pointer;
  font-weight: 900;
  pointer-events: auto;
}

.carousel-controls span {
  border-radius: 999px;
  background: rgba(245, 247, 242, 0.9);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 7px 10px;
  pointer-events: none;
}

.catalog-cover {
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
}

.catalog-cover img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.catalog-cover:hover img,
.catalog-cover:focus-visible img {
  transform: scale(1.04);
}

.catalog-body {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
}

.catalog-body h3 {
  font-size: clamp(1.28rem, 1.9vw, 1.68rem);
  line-height: 1.08;
}

.catalog-body > p:not(.product-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

@media (min-width: 1360px) {
  .products-section {
    width: min(1640px, calc(100% - 56px));
  }

  .products-section .section-heading {
    margin-bottom: clamp(14px, 2vw, 24px);
  }

  .catalog-grid {
    gap: 22px;
  }

  .catalog-card {
    grid-template-columns: minmax(330px, 1.08fr) minmax(0, 0.92fr);
  }

  .carousel-track,
  .carousel-slide img,
  .carousel-slide video {
    min-height: clamp(440px, 30vw, 590px);
  }

  .catalog-body {
    min-width: 0;
    padding: 22px 20px;
  }
}

.catalog-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-highlights li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 7px 10px;
  text-align: center;
}

.price-list s {
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
}

.amazon-price {
  display: inline-flex;
  align-items: flex-start;
  color: var(--amazon-price);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.amazon-price-symbol,
.amazon-price-cents {
  position: relative;
  top: 0.12em;
  font-size: 0.58em;
  line-height: 1;
}

.amazon-price-whole {
  font-size: 2.1em;
  line-height: 0.9;
}

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

.buy-channel-actions {
  margin-top: auto;
  padding-top: 18px;
}

.brand-buy-link {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  color: var(--paper-strong);
  font-size: 0.88rem;
  font-weight: 950;
  padding: 12px 14px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(16, 19, 16, 0.14);
}

.brand-buy-link::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-right: 8px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.etsy-buy-link {
  background: var(--etsy);
}

.tiktok-buy-link {
  background:
    linear-gradient(90deg, var(--tiktok-cyan) 0 4px, transparent 4px calc(100% - 4px), var(--tiktok-red) calc(100% - 4px)),
    var(--tiktok);
}

.brand-buy-link:hover,
.brand-buy-link:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.06) contrast(1.04);
}

.catalog-actions {
  margin-top: 10px;
}

.catalog-actions .product-link,
.catalog-actions .video-link {
  width: 100%;
  min-height: 46px;
  align-items: center;
  align-self: stretch;
  margin-top: 0;
}

.catalog-actions .paypal-direct-link {
  grid-column: 1 / -1;
  border-color: rgba(31, 122, 77, 0.32);
  background: var(--accent-dark);
  color: var(--paper-strong);
  cursor: pointer;
}

.catalog-actions .paypal-direct-link:hover,
.catalog-actions .paypal-direct-link:focus-visible {
  border-color: var(--accent-dark);
  background: var(--ink);
}

.product-cart-panel {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.cart-panel-price {
  display: grid;
  gap: 4px;
}

.price-caption {
  color: #565959;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.price-inline-stack {
  display: grid;
  gap: 3px;
}

.price-list {
  color: var(--amazon-was);
  font-size: 0.82rem;
  font-weight: 500;
}

.free-shipping-line {
  color: #007600;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.cart-panel-price strong {
  display: block;
  color: var(--amazon-price);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.cart-panel-status,
.cart-panel-price > span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.cart-panel-price .amazon-price {
  color: var(--amazon-price);
  font-size: 1rem;
  line-height: 0.9;
}

.cart-panel-price .amazon-price-symbol,
.cart-panel-price .amazon-price-cents {
  font-size: 0.58em;
  line-height: 1;
}

.cart-panel-price .amazon-price-whole {
  font-size: 2.1em;
  line-height: 0.9;
}

.cart-panel-price > span:last-child {
  max-width: 40ch;
}

.cart-panel-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 10px;
}

.cart-panel-controls label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.cart-panel-controls select,
.cart-panel-controls input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 720;
  padding: 10px 11px;
}

.cart-panel-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.86fr);
  gap: 10px;
}

.cart-panel-actions .product-link,
.cart-panel-actions .video-link {
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.cart-add-button {
  border: 0;
  cursor: pointer;
}

.cart-panel-status {
  min-height: 18px;
  margin: 0;
}

.cart-routing-panel {
  align-items: stretch;
}

.cart-route-steps {
  display: grid;
  gap: 10px;
}

.cart-route-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink-soft);
  font-weight: 850;
  padding: 14px;
}

.cart-route-steps strong {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--paper-strong);
}

.video-link {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 850;
  padding: 10px 14px;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.video-link:hover,
.video-link:focus-visible {
  border-color: rgba(31, 122, 77, 0.48);
  transform: translateY(-2px);
}

.video-section {
  border-top: 1px solid var(--line);
}

.installation-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(217, 234, 219, 0.22)),
    transparent;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(38, 48, 40, 0.1);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #050705;
  object-fit: contain;
}

.video-card div {
  padding: 20px;
}

.video-card h3 {
  min-height: 2.35em;
  font-size: 1.25rem;
}

.video-card p:not(.product-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.setup-video-card video {
  aspect-ratio: 16 / 9;
}

.setup-video-card h3 {
  min-height: auto;
}

.manual-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.manual-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(5, 78, 45, 0.22);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 240, 229, 0.72));
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(38, 48, 40, 0.08);
}

.manual-card span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manual-card strong {
  max-width: 18ch;
  font-size: 1.22rem;
  line-height: 1.08;
}

.manual-card small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.proof-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
}

.proof-copy h2 {
  max-width: 14ch;
}

.proof-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.proof-list div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.proof-list strong {
  font-size: 1.08rem;
}

.proof-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.room-proof-section {
  scroll-margin-top: 112px;
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

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

.room-proof-card {
  display: grid;
  overflow: hidden;
  grid-column: span 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 38px rgba(38, 48, 40, 0.08);
}

.room-proof-wide {
  grid-column: span 2;
}

.room-proof-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 30%),
    var(--surface);
  object-fit: cover;
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.room-proof-card:hover img,
.room-proof-card:focus-within img {
  filter: contrast(1.03) saturate(1.04);
  transform: scale(1.025);
}

.room-proof-card div {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.6vw, 22px);
}

.room-proof-card span {
  color: var(--accent-dark);
}

.room-proof-card strong {
  max-width: 22ch;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.12;
}

.reviews-section,
.policies-section {
  border-top: 1px solid var(--line);
}

.rating-card {
  display: grid;
  gap: 4px;
  min-width: 190px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  padding: 18px;
  text-align: right;
}

.rating-card strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.rating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.rating-card small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 700;
}

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

.review-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: var(--accent-dark);
  font-size: 0.94rem;
  letter-spacing: 0.14em;
}

.review-card p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.58;
}

.review-card span {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.review-card-photo {
  overflow: hidden;
  padding: 0;
}

.review-card-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-card-copy {
  display: flex;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.review-card-copy p {
  margin: 18px 0 0;
}

.review-card-copy span {
  padding-top: 18px;
}

.review-card-full {
  background: var(--paper-strong);
}

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

.policy-card {
  min-height: 260px;
  background: var(--paper-strong);
}

.policy-card h3 {
  max-width: 12ch;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: clamp(20px, 5vw, 54px);
  align-items: end;
  padding-block: clamp(34px, 7vw, 84px) clamp(22px, 4vw, 36px);
}

.policy-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.policy-quick-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: clamp(16px, 3vw, 22px);
  box-shadow: 0 14px 34px rgba(38, 48, 40, 0.08);
}

.policy-quick-card span {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 900;
  padding-bottom: 10px;
}

.policy-quick-card span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.policy-page-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 14px 34px rgba(38, 48, 40, 0.08);
}

.policy-page-card h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
}

.policy-page-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

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

.blog-page,
.article-page {
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 122, 77, 0.12), transparent 28vw),
    var(--paper);
}

.blog-hero,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 6vw, 68px);
  align-items: end;
  padding-block: clamp(42px, 8vw, 96px) clamp(28px, 5vw, 48px);
}

.blog-hero h1,
.article-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 6.4vw, 5.4rem);
}

.blog-hero-card,
.article-hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.blog-hero-card img,
.article-hero-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f8faf5;
}

.blog-hero-card div {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}

.blog-hero-card h2 {
  max-width: 18ch;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.blog-hero-card p,
.article-hero-media p {
  margin: 0;
  color: var(--muted);
}

.blog-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.blog-feature-strip span {
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 11px 14px;
  text-align: center;
}

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

.blog-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 38px rgba(38, 48, 40, 0.09);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.38);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  background: #f8faf5;
  padding: 10px;
}

.blog-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.blog-card-body h2 {
  max-width: none;
  font-size: clamp(1.32rem, 2.4vw, 2rem);
  line-height: 1.04;
}

.blog-card-body p {
  margin: 0;
  color: var(--muted);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding-top: 0;
}

.article-content {
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: clamp(22px, 4vw, 46px);
  box-shadow: 0 16px 38px rgba(38, 48, 40, 0.08);
}

.article-content h2 {
  max-width: 18ch;
  margin-top: clamp(10px, 2vw, 22px);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.02rem;
}

.article-content p {
  margin: 0;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.article-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 18px;
  box-shadow: 0 16px 38px rgba(38, 48, 40, 0.08);
}

.article-side-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.article-side-card a {
  display: block;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 850;
  padding: 12px 0 0;
  margin-top: 12px;
}

.article-side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-cta-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(31, 122, 77, 0.22);
  border-radius: var(--radius);
  background: var(--accent-soft);
  padding: clamp(18px, 3vw, 28px);
}

.article-cta-panel h2 {
  margin: 0;
}

.article-cta-panel p {
  color: var(--ink-soft);
}

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

.article-related a {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 16px;
  color: var(--ink-soft);
  font-weight: 850;
}

.article-related small {
  color: var(--accent-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.care-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.care-card:hover,
.care-card:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.38);
  box-shadow: var(--shadow);
}

.care-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.care-card h3 {
  margin-top: 44px;
}

.care-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin: 22px 0 0;
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 122, 77, 0.58);
  background: var(--paper-strong);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

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

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.social-copy {
  position: sticky;
  top: 100px;
}

.social-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: 22px 0 0;
  color: var(--muted);
}

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

.social-links a {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.social-links strong {
  font-size: 1.18rem;
}

.social-links span {
  color: var(--muted);
  font-weight: 700;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 0 22px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent-dark);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 76ch;
  margin: -6px 0 22px;
  color: var(--muted);
}

.closing-cta {
  margin-bottom: 34px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(120deg, rgba(31, 122, 77, 0.2), transparent 42%),
    var(--ink);
  color: var(--paper-strong);
  padding-inline: clamp(24px, 6vw, 64px);
}

.closing-cta h2 {
  max-width: 14ch;
}

.closing-cta .eyebrow {
  color: var(--accent-soft);
}

.closing-cta .button-primary {
  background: var(--paper-strong);
  color: var(--ink);
}

.closing-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(160px, 0.72fr) minmax(170px, 0.72fr) minmax(260px, 1.05fr) minmax(260px, 1fr);
  gap: clamp(22px, 3vw, 46px);
  width: 100%;
  margin: clamp(42px, 7vw, 78px) 0 0;
  background: #111411;
  color: #ffffff;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 6vw, 64px) clamp(96px, 9vw, 128px);
}

.footer-column {
  min-width: 0;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.45;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-logo span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #111411;
  font-weight: 950;
}

.footer-logo strong {
  letter-spacing: 0.2em;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 740;
}

.footer-links a::before {
  content: ">";
  margin-right: 8px;
  color: #c4b27f;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social-icons a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-social-icons img {
  width: 14px;
  height: 14px;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  margin-top: 18px;
}

.footer-newsletter input,
.footer-newsletter button {
  min-height: 48px;
  border: 0;
  font: inherit;
}

.footer-newsletter input {
  width: 100%;
  background: #ffffff;
  color: #111411;
  padding: 0 16px;
}

.footer-newsletter button {
  background: #c4b27f;
  color: #ffffff;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 18px;
  font-style: normal;
}

.footer-contact p {
  display: grid;
  gap: 6px;
}

.footer-contact strong {
  color: #ffffff;
  font-size: 0.83rem;
}

.footer-contact span,
.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.28;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social-icons a:hover,
.footer-social-icons a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #c4b27f;
}

.account-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.account-hero {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 28px;
}

.account-login-icon {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(7, 75, 45, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(135deg, #0a0f0b 0%, #074b2d 100%);
  box-shadow: 0 18px 36px rgba(6, 29, 16, 0.18);
}

.account-login-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.account-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #111410;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.account-hero p {
  max-width: 680px;
  margin: 0;
  color: #687267;
  font-size: 1.08rem;
  line-height: 1.55;
}

.account-status {
  color: #074b2d !important;
  font-weight: 900;
}

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

.account-card,
.account-panel,
.account-dashboard {
  border: 1px solid rgba(7, 75, 45, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(6, 29, 16, 0.08);
}

.account-card,
.account-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.account-card h2,
.account-panel h3,
.account-dashboard-header h2 {
  margin: 0;
  color: #111410;
}

.account-card label,
.account-chat-form label {
  display: grid;
  gap: 8px;
  color: #111410;
  font-weight: 900;
}

.account-card input,
.account-chat-form textarea,
.checkout-account-panel + .paypal-field-grid input {
  width: 100%;
}

.account-card input,
.account-chat-form textarea {
  border: 1px solid rgba(7, 75, 45, 0.22);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
}

.account-card button,
.account-chat-form button {
  border: 0;
  border-radius: 999px;
  background: #0a0f0b;
  color: #ffffff;
  padding: 15px 22px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

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

.admin-customer-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(120px, 0.55fr)) repeat(3, minmax(150px, 0.8fr));
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(7, 75, 45, 0.14);
  border-radius: 16px;
  background: #ffffff;
  padding: 14px;
}

.admin-customer-row div {
  display: grid;
  gap: 4px;
}

.admin-customer-row strong {
  color: #111410;
}

.admin-customer-row a {
  color: #074b2d;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-customer-row span,
.admin-customer-row small {
  color: #687267;
  font-weight: 800;
}

.account-dashboard {
  margin-top: 18px;
  padding: 24px;
}

.account-dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.account-dashboard-header p {
  margin: 6px 0 0;
  color: #687267;
  font-weight: 800;
}

.account-list,
.account-chat-thread {
  display: grid;
  gap: 12px;
}

.account-chat-thread {
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.account-order,
.account-chat-message,
.account-empty {
  border: 1px solid rgba(7, 75, 45, 0.14);
  border-radius: 14px;
  background: #f5faf3;
  padding: 14px;
}

.account-order div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #074b2d;
  font-weight: 900;
}

.account-order p,
.account-chat-message p,
.account-empty {
  margin: 6px 0 0;
  color: #687267;
  line-height: 1.45;
}

.account-chat-message.from-admin {
  background: #111410;
  color: #ffffff;
}

.account-chat-message.from-admin p {
  color: rgba(255, 255, 255, 0.78);
}

.account-muted {
  display: inline-block;
  color: #687267;
  font-weight: 800;
}

.checkout-account-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(7, 75, 45, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, #f4fbef 0%, #ffffff 100%);
  padding: 14px;
}

.checkout-account-panel strong {
  color: #074b2d;
  font-size: 1rem;
}

.checkout-account-panel p {
  margin: 0;
  color: #687267;
  font-size: 0.94rem;
  line-height: 1.4;
}

.checkout-account-panel .mini-action {
  width: fit-content;
}

.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(16, 19, 16, 0.34);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer-backdrop[hidden],
.cart-drawer[hidden],
.cart-drawer-empty[hidden] {
  display: none;
}

.cart-drawer-backdrop.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(470px, 100vw);
  height: 100dvh;
  border-left: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: -26px 0 70px rgba(16, 19, 16, 0.2);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

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

.cart-drawer-header h2 {
  max-width: 100%;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.cart-drawer-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 850;
}

.cart-drawer-body {
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: auto;
  padding: 16px;
}

.cart-drawer-lines {
  display: grid;
  gap: 10px;
}

.cart-drawer-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 10px;
}

.cart-drawer-line-media {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
}

.cart-drawer-line-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-drawer-line-media span {
  color: var(--accent-dark);
  font-size: 1.5rem;
  font-weight: 950;
}

.cart-drawer-line-body {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.cart-drawer-line-body strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.18;
}

.cart-drawer-line-body span {
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-drawer-line-body small {
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 920;
}

.cart-drawer-qty {
  display: grid;
  grid-template-columns: 34px 54px 34px minmax(70px, auto);
  gap: 6px;
  align-items: center;
  margin-top: 4px;
}

.cart-drawer-qty button,
.cart-drawer-qty input {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.cart-drawer-qty button {
  cursor: pointer;
}

.cart-drawer-qty button:last-child {
  color: var(--muted);
  padding-inline: 8px;
}

.cart-drawer-empty {
  display: grid;
  gap: 10px;
  border: 1px dashed rgba(31, 122, 77, 0.34);
  border-radius: 14px;
  background: rgba(217, 234, 219, 0.36);
  padding: 16px;
}

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

.cart-drawer-summary {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 14px;
  background: rgba(217, 234, 219, 0.34);
  padding: 14px;
}

.cart-drawer-summary span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-drawer-summary strong {
  color: var(--ink-soft);
}

.cart-drawer-summary b {
  color: var(--ink);
}

.cart-drawer-total {
  border-top: 1px solid rgba(31, 122, 77, 0.18);
  padding-top: 9px;
}

.cart-drawer-total strong,
.cart-drawer-total b {
  color: var(--accent-dark);
  font-size: 1rem;
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cart-drawer-actions .button {
  min-height: 46px;
  padding: 10px 14px;
}

.floating-chat {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 120;
  display: grid;
  width: min(330px, calc(100vw - 28px));
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(245, 247, 242, 0.94);
  padding: 10px;
  box-shadow: 0 18px 54px rgba(16, 19, 16, 0.22);
  backdrop-filter: blur(18px);
}

.chat-toggle {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper-strong);
  cursor: pointer;
  font-weight: 850;
  padding: 9px 11px;
  text-align: left;
}

.chat-toggle span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.chat-toggle strong {
  font-size: 0.82rem;
}

.floating-chat:not(.is-expanded) {
  grid-template-columns: minmax(0, 1fr) 46px 46px;
  align-items: center;
  gap: 6px;
}

.floating-chat:not(.is-expanded) .chat-identity-grid,
.floating-chat:not(.is-expanded) .chat-thread,
.floating-chat:not(.is-expanded) .chat-composer-label,
.floating-chat:not(.is-expanded) textarea,
.floating-chat:not(.is-expanded) .chat-send-button,
.floating-chat:not(.is-expanded) .chat-status {
  display: none;
}

.floating-chat:not(.is-expanded) .chat-actions {
  display: contents;
}

.floating-chat:not(.is-expanded) .chat-button {
  width: 46px;
  min-height: 46px;
  gap: 0;
  border-radius: 14px;
  padding: 0;
}

.floating-chat:not(.is-expanded) .chat-button > span:not(.chat-icon) {
  display: none;
}

.floating-chat:not(.is-expanded) .chat-icon {
  background: transparent;
}

.chat-composer-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.chat-identity-grid label {
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.chat-identity-grid input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 0.82rem;
  padding: 8px 9px;
}

.chat-thread {
  display: grid;
  max-height: 180px;
  gap: 7px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
  padding: 8px;
}

.chat-thread:empty {
  display: none;
}

.chat-message {
  display: grid;
  gap: 3px;
  max-width: 88%;
  border-radius: 13px;
  background: var(--surface);
  color: var(--ink-soft);
  padding: 8px 10px;
}

.chat-message strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.chat-message p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.36;
}

.chat-message.from-admin {
  justify-self: start;
  background: var(--accent-soft);
}

.chat-message.from-customer {
  justify-self: end;
  background: var(--ink);
  color: var(--paper-strong);
}

.chat-message.from-customer strong {
  color: var(--paper-strong);
}

.floating-chat textarea {
  width: 100%;
  min-height: 74px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.35;
  outline: none;
  padding: 10px 11px;
}

.floating-chat textarea:focus {
  border-color: rgba(31, 122, 77, 0.62);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

.chat-actions {
  display: grid;
  grid-template-columns: 1fr 46px 46px;
  gap: 8px;
}

.chat-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--paper-strong);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 8px 12px 8px 8px;
  box-shadow: 0 14px 34px rgba(16, 19, 16, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.chat-button:hover,
.chat-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(16, 19, 16, 0.28);
}

.chat-messenger {
  background: #1264d8;
}

.chat-whatsapp {
  background: #128c4a;
}

.chat-actions .chat-messenger,
.chat-actions .chat-whatsapp {
  width: 46px;
  padding: 0;
}

.chat-actions .chat-messenger > span:not(.chat-icon),
.chat-actions .chat-whatsapp > span:not(.chat-icon) {
  display: none;
}

.chat-actions .chat-messenger .chat-icon,
.chat-actions .chat-whatsapp .chat-icon {
  background: transparent;
}

.chat-send-button {
  border-color: var(--ink);
  background: var(--ink);
}

.chat-send-button[disabled] {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.chat-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.chat-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.chat-status {
  min-height: 1.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.3;
}

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

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

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

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

@media (max-width: 1280px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    justify-content: stretch;
    max-height: calc(100dvh - 96px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 12px;
    padding: 13px 14px;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    justify-content: stretch;
    max-height: calc(100dvh - 96px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .hero,
  .proof-section,
  .storefront-spotlight,
  .social-section,
  .share-kit-section,
  .offer-panel,
  .paypal-panel,
  .blog-hero,
  .article-hero,
  .article-layout,
  .cart-layout,
  .admin-hero,
  .contact-panel,
  .custom-panel {
    grid-template-columns: 1fr;
  }

  .admin-login-screen,
  .admin-dashboard-bar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-dashboard-actions {
    justify-content: start;
  }

  .listing-form fieldset,
  .password-form {
    grid-template-columns: 1fr;
  }

  .listing-form-wide {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding-top: 28px;
  }

  .hero-copy,
  .hero-visual,
  .hero-commerce {
    grid-column: 1;
    grid-row: auto;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 6vw, 3.7rem);
  }

  .hero-visual {
    min-height: auto;
    padding: clamp(8px, 2vw, 18px) clamp(40px, 6vw, 70px) 0 0;
  }

  .hero-card-main img {
    height: auto;
    padding: 0;
  }

  .hero-card-main {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .motion-disc {
    top: clamp(16px, 2.6vw, 30px);
    width: clamp(120px, 18vw, 180px);
  }

  .problem-grid,
  .care-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

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

  .review-grid,
  .policy-grid,
  .policy-page-grid,
  .blog-grid,
  .article-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotlight-copy {
    padding: clamp(20px, 4vw, 34px);
  }

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

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

  .collection-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .room-proof-wide {
    grid-column: span 2;
  }

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

  .product-card,
  .product-card-wide {
    grid-column: span 3;
    grid-template-columns: 1fr;
  }

  .product-card-wide .product-image {
    min-height: 270px;
  }

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

  .social-copy {
    position: static;
  }

  .cart-summary-panel {
    position: static;
  }

  .admin-chat-layout,
  .discount-form,
  .admin-order-tracking {
    grid-template-columns: 1fr;
  }

  .admin-conversation-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .checkout-add-controls {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .checkout-add-controls label:nth-child(2) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-announcement {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 36px, var(--max));
  }

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

  .buyer-trust-intro h2 {
    max-width: 100%;
  }

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

  .gift-finder-section {
    grid-template-columns: 1fr;
  }

  .gift-finder-copy {
    position: static;
  }

  .gift-finder-copy h2 {
    max-width: 18ch;
  }

  .share-kit-media {
    min-height: 320px;
  }

  .share-kit-media img {
    min-height: 320px;
  }

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

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

  .best-seller-card {
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  }

  .best-seller-card > div {
    min-height: auto;
  }

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

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
  }

  .blog-grid,
  .blog-feature-strip,
  .article-related,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .collection-card,
  .collection-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }

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

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

  .product-card,
  .product-card-wide {
    grid-column: auto;
  }

  .review-grid,
  .policy-grid,
  .policy-page-grid,
  .social-links,
  .room-proof-grid {
    grid-template-columns: 1fr;
  }

  .room-proof-wide {
    grid-column: auto;
  }

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

  .heading-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: clamp(330px, 58vw, 460px);
  }

  .solution-routes {
    grid-template-columns: 1fr;
  }

  .solution-routes a {
    min-height: auto;
  }

  .solution-routes strong {
    margin-top: 10px;
  }

  .video-card video {
    aspect-ratio: 4 / 3;
  }

  .manual-download-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions .button {
    width: 100%;
  }

  .paypal-field-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary-panel {
    order: 1;
    position: static;
  }

  .cart-items-panel {
    order: 2;
  }

  .cart-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-line {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .cart-line-controls {
    grid-column: 1 / -1;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
  }

  .cart-line-controls strong {
    justify-self: end;
  }

  .admin-reply-box,
  .admin-order-footer,
  .admin-order-tracking {
    grid-template-columns: 1fr;
  }

  .admin-message {
    max-width: 88%;
  }

  .checkout-add-controls {
    grid-template-columns: 1fr;
  }

  .checkout-add-controls .mini-action {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .site-announcement {
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
  }

  .site-announcement strong {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .site-announcement a,
  .announcement-rating {
    width: auto;
    flex: 0 1 auto;
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
  }

  .site-announcement a {
    padding: 5px 8px;
  }

  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    display: none;
  }

  .brand {
    gap: 9px;
  }

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

  .brand strong {
    font-size: 0.88rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    inset: 70px 10px auto;
    padding: 10px;
  }

  .hero-actions,
  .promo-strip,
  .site-footer,
  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .promo-strip a {
    width: 100%;
  }

  .promo-actions {
    display: grid;
    width: 100%;
    justify-content: stretch;
  }

  .promo-actions .mini-action,
  .promo-actions .share-code {
    width: 100%;
    justify-content: center;
  }

  .share-kit-section {
    padding: 12px;
  }

  .share-kit-copy {
    padding: 4px;
  }

  .share-kit-copy h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .share-platform-grid {
    grid-template-columns: 1fr;
  }

  .share-platform-button {
    width: 100%;
  }

  .share-kit-media,
  .share-kit-media img {
    min-height: 270px;
  }

  .heading-actions {
    display: grid;
    width: 100%;
    justify-content: stretch;
  }

  .heading-actions .text-link {
    width: 100%;
    justify-content: flex-start;
  }

  .button,
  .product-link,
  .video-link,
  .chat-button {
    min-height: 46px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11.5vw, 2.95rem);
    line-height: 0.98;
  }

  h2,
  .offer-panel h2,
  .contact-copy h2,
  .custom-copy h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.2vw, 2.65rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.16rem, 5.2vw, 1.45rem);
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero {
    gap: 24px;
    padding-top: 30px;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .blog-hero,
  .article-hero {
    padding-block: 34px 24px;
  }

  .blog-hero h1,
  .article-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 1;
  }

  .blog-hero-card img,
  .article-hero-media img {
    aspect-ratio: 1;
  }

  .article-content {
    padding: 20px 16px;
  }

  .article-content p,
  .article-content li {
    font-size: 0.98rem;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .buyer-trust-strip {
    margin-top: 12px;
    padding: 12px;
  }

  .buyer-trust-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: clamp(330px, 86vw, 410px);
    padding: 0;
  }

  .hero-card-main img {
    height: clamp(230px, 62vw, 310px);
    padding: 8px;
    object-fit: contain;
    object-position: center center;
  }

  .hero-card-main {
    width: min(72%, 310px);
    margin-inline: 0 auto;
  }

  .hero-card-side {
    display: block;
    right: 0;
    top: clamp(118px, 34vw, 150px);
    bottom: auto;
    left: auto;
    width: min(42%, 176px);
    transform: rotate(3deg);
  }

  .hero-card-side img {
    padding: 6px;
    object-fit: contain;
    object-position: center center;
  }

  .motion-disc {
    display: none;
  }

  .hero-proof-card {
    position: static;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 8px;
    padding: 12px;
  }

  .hero-proof-card strong {
    grid-column: 1 / -1;
  }

  .decision-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .decision-strip a {
    min-width: 76%;
    scroll-snap-align: start;
    padding: 13px;
  }

  .decision-strip span {
    font-size: 0.8rem;
  }

  .solution-routes {
    margin-top: 18px;
  }

  .solution-routes a {
    padding: 12px;
  }

  .gift-finder-section {
    padding-block: 36px 28px;
  }

  .gift-finder-grid {
    grid-template-columns: 1fr;
  }

  .gift-finder-card {
    min-height: auto;
  }

  .gift-finder-card strong {
    margin-top: 26px;
  }

  .best-seller-card {
    grid-template-columns: 1fr;
  }

  .best-seller-card img {
    aspect-ratio: 1;
  }

  .best-seller-actions {
    grid-template-columns: 1fr;
  }

  .storefront-spotlight {
    margin-top: 22px;
    border-radius: var(--radius);
  }

  .spotlight-media {
    min-height: 300px;
  }

  .spotlight-media img {
    padding: 10px;
  }

  .spotlight-note {
    position: static;
    max-width: none;
    margin: 0 14px 14px;
  }

  .spotlight-copy {
    padding: 18px 16px 20px;
  }

  .spotlight-actions {
    display: grid;
    width: 100%;
  }

  .spotlight-actions .button {
    width: 100%;
  }

  .collection-section {
    padding-block: 32px 12px;
  }

  .collection-card,
  .collection-card-large {
    min-height: 270px;
  }

  .section-intro {
    max-width: 100%;
  }

  .product-offer-strip span {
    flex: 1 1 auto;
    text-align: center;
  }

  .cart-hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .cart-checkout-section {
    padding-top: 14px;
  }

  .cart-panel-controls,
  .cart-panel-actions {
    grid-template-columns: 1fr;
  }

  .product-cart-panel {
    padding: 12px;
  }

  .problem-section,
  .products-section,
  .proof-section,
  .room-proof-section,
  .care-section,
  .social-section,
  .faq-section,
  .video-section,
  .offers-section,
  .custom-section,
  .reviews-section,
  .policies-section,
  .contact-section,
  .closing-cta {
    padding-block: 56px;
  }

  .problem-section {
    padding-block: 32px;
  }

  .problem-section .section-heading {
    margin-bottom: 14px;
  }

  .problem-section .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .offers-section {
    padding-top: 28px;
  }

  .custom-section,
  .contact-section {
    padding-top: 0;
  }

  .product-grid,
  .social-links,
  .review-grid,
  .policy-grid,
  .offer-grid,
  .room-proof-grid,
  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .room-proof-wide {
    grid-column: auto;
  }

  .product-card,
  .product-card-wide {
    grid-column: auto;
  }

  .products-section .section-heading {
    margin-bottom: 18px;
  }

  .products-section .section-heading h2 {
    font-size: clamp(1.72rem, 8vw, 2.18rem);
  }

  .product-image,
  .product-card-wide .product-image {
    aspect-ratio: 1;
    height: min(340px, 86vw);
    min-height: 0;
  }

  .product-image img {
    height: 100%;
    min-height: 0;
  }

  .problem-card,
  .solution-card,
  .care-card {
    min-height: auto;
  }

  .problem-section .problem-card,
  .problem-section .solution-card {
    min-height: auto;
    padding: 14px;
  }

  .tiktok-shop-note {
    align-items: stretch;
    flex-direction: column;
  }

  .tiktok-shop-note .button {
    width: 100%;
  }

  .problem-card span,
  .solution-card span,
  .care-card h3 {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .problem-section .problem-card span,
  .problem-section .solution-card span {
    margin-bottom: 10px;
  }

  .problem-section .problem-card p,
  .problem-section .solution-card p {
    margin-top: 8px;
  }

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

  .catalog-cover img {
    min-height: 280px;
  }

  .carousel-track,
  .carousel-slide,
  .carousel-slide img,
  .carousel-slide video {
    min-height: clamp(300px, 92vw, 420px);
  }

  .carousel-controls {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .carousel-controls button {
    width: 42px;
    height: 42px;
  }

  .carousel-controls span {
    font-size: 0.68rem;
  }

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

  .buy-channel-actions,
  .catalog-actions {
    grid-template-columns: 1fr;
  }

  .media-stats {
    justify-content: flex-start;
  }

  .media-stats span {
    flex: 1 1 100%;
    text-align: center;
  }

  .cart-items-panel,
  .cart-summary-panel {
    border-radius: var(--radius);
  }

  .cart-panel-header,
  .checkout-add-panel,
  .cart-line,
  .cart-summary-panel {
    padding: 14px;
  }

  .checkout-assurance-list span {
    flex-basis: 100%;
  }

  .checkout-support-actions {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100vw;
    border-left: 0;
  }

  .cart-drawer-header,
  .cart-drawer-body {
    padding-inline: 14px;
  }

  .cart-drawer-line {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .cart-drawer-qty {
    grid-template-columns: 34px 52px 34px;
  }

  .cart-drawer-qty button:last-child {
    grid-column: 1 / -1;
  }

  .cart-drawer-actions {
    grid-template-columns: 1fr;
  }

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

  .cart-line-controls {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cart-line-controls label {
    width: 100%;
  }

  .cart-line-controls input {
    width: 100%;
  }

  .cart-line-controls strong {
    align-self: end;
    justify-self: end;
  }

  .cart-line-controls .mini-action {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .admin-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.85rem);
  }

  .admin-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-thread {
    max-height: 430px;
    padding: 14px;
  }

  .product-body,
  .catalog-body,
  .care-card,
  .policy-card,
  .review-card,
  .social-links a {
    padding: 20px;
  }

  .product-body,
  .catalog-body {
    min-height: auto;
  }

  .product-link,
  .video-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .rating-card {
    text-align: left;
  }

  .contact-actions .button {
    width: 100%;
  }

  .floating-chat {
    right: calc(10px + env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: calc(10px + env(safe-area-inset-left));
    width: auto;
    padding: 8px;
    border-radius: 18px;
  }

  .floating-chat:not(.is-expanded) {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    align-items: center;
    gap: 6px;
  }

  .chat-toggle {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-radius: 14px;
    background: var(--ink);
    color: var(--paper-strong);
    cursor: pointer;
    font-weight: 850;
    padding: 9px 11px;
    text-align: left;
  }

  .chat-toggle span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
  }

  .chat-toggle strong {
    font-size: 0.82rem;
  }

  .floating-chat:not(.is-expanded) .chat-composer-label,
  .floating-chat:not(.is-expanded) textarea,
  .floating-chat:not(.is-expanded) .chat-status {
    display: none;
  }

  .floating-chat:not(.is-expanded) .chat-actions {
    display: contents;
  }

  .floating-chat:not(.is-expanded) .chat-button {
    width: 44px;
    min-height: 44px;
    gap: 0;
    border-radius: 14px;
    padding: 0;
  }

  .floating-chat:not(.is-expanded) .chat-button > span:not(.chat-icon) {
    display: none;
  }

  .floating-chat:not(.is-expanded) .chat-icon {
    background: transparent;
  }

  .cart-page .floating-chat:not(.is-expanded) {
    grid-template-columns: minmax(0, 0.9fr) 38px 38px;
    left: auto;
    width: min(360px, calc(100vw - 20px));
  }

  .cart-page .floating-chat:not(.is-expanded) .chat-button {
    width: 38px;
    min-height: 38px;
  }

  .cart-page .floating-chat:not(.is-expanded) .chat-toggle {
    min-height: 38px;
    padding: 8px 10px;
  }

  .floating-chat textarea {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .chat-composer-label,
  .chat-status {
    font-size: 0.68rem;
  }

  .chat-button {
    min-height: 40px;
    padding: 7px 10px 7px 7px;
    font-size: 0.78rem;
  }

  .chat-icon {
    width: 28px;
    height: 28px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

.tracking-page {
  background:
    radial-gradient(circle at top left, rgba(31, 122, 77, 0.08), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(16, 19, 16, 0.05), transparent 24%),
    var(--paper);
}

.tracking-page .tracking-hero,
.tracking-page .tracking-results-section,
.tracking-page .tracking-support-section {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
}

.tracking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding-block: clamp(46px, 8vw, 96px) 0;
}

.tracking-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 56ch;
}

.tracking-hero-copy h1 {
  max-width: 9ch;
}

.tracking-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tracking-pills span,
.tracking-support-inline span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 12px;
}

.tracking-panel,
.tracking-result-card,
.tracking-support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.tracking-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

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

.tracking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.tracking-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 14px;
}

.tracking-form input::placeholder {
  color: var(--muted);
}

.tracking-form input:focus-visible {
  outline: 2px solid rgba(31, 122, 77, 0.2);
  outline-offset: 2px;
}

.tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tracking-actions .button {
  flex: 1 1 180px;
}

.tracking-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tracking-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 760;
}

.tracking-status[data-tone="error"] {
  color: #9b2c1f;
}

.tracking-status[data-tone="loading"] {
  color: var(--ink-soft);
}

.tracking-results-section {
  padding-top: 56px;
}

.tracking-result-card {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 30px);
}

.tracking-result-empty {
  min-height: 240px;
}

.tracking-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tracking-result-head h2 {
  max-width: 13ch;
}

.tracking-badge {
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 8px 12px;
}

.tracking-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
}

.tracking-summary-list dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.tracking-summary-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.tracking-summary-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-summary-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.tracking-items-card,
.tracking-timeline-panel,
.tracking-shipment-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 16px;
}

.tracking-items-card strong,
.tracking-timeline-panel strong,
.tracking-shipment-panel strong,
.tracking-support-card h3 {
  color: var(--ink);
  font-size: 1rem;
}

.tracking-items-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-item,
.tracking-item-empty {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16, 19, 16, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 14px;
}

.tracking-item strong {
  display: block;
}

.tracking-item small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.tracking-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid rgba(16, 19, 16, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 14px;
}

.tracking-step::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 0 4px rgba(16, 19, 16, 0.04);
}

.tracking-step strong {
  display: block;
}

.tracking-step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.tracking-step.is-active::before,
.tracking-step.is-complete::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

.tracking-step.is-complete {
  background: rgba(217, 234, 219, 0.5);
}

.tracking-step.is-canceled::before {
  background: #9b2c1f;
  box-shadow: 0 0 0 4px rgba(155, 44, 31, 0.12);
}

.tracking-shipment-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.tracking-shipment-panel div {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid rgba(16, 19, 16, 0.08);
  padding-bottom: 10px;
}

.tracking-shipment-panel dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-shipment-panel dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
  font-weight: 760;
}

.tracking-support-section {
  padding-top: 54px;
}

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

.tracking-support-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

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

.tracking-support-actions .button {
  flex: 1 1 160px;
}

@media (max-width: 960px) {
  .tracking-hero,
  .tracking-result-grid,
  .tracking-support-grid {
    grid-template-columns: 1fr;
  }

  .tracking-hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .paypal-code-row {
    grid-template-columns: 1fr;
  }

  .paypal-code-row .mini-action {
    justify-content: center;
  }

  .hero-card-side {
    width: 48%;
  }

  .product-image,
  .product-image img {
    min-height: 0;
  }

  .chat-actions {
    gap: 6px;
  }

  .chat-button {
    gap: 6px;
    font-size: 0.74rem;
  }

  .chat-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 760px) {
  .share-kit-compact {
    grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
    align-items: center;
    padding: 10px;
  }

  .share-kit-compact .share-kit-media,
  .share-kit-compact .share-kit-media img {
    min-height: 118px;
  }

  .share-kit-compact .share-kit-media span {
    display: none;
  }

  .share-kit-compact .share-kit-copy h2 {
    font-size: clamp(1.15rem, 5.6vw, 1.55rem);
  }

  .share-kit-compact .share-kit-copy > p:not(.eyebrow) {
    display: none;
  }

  .share-kit-compact .share-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .share-kit-compact .share-platform-button {
    width: 100%;
    min-height: 34px;
    font-size: 0.68rem;
    padding: 7px 8px;
  }
}

@media (max-width: 680px) {
  .site-announcement {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 0;
    padding: 7px 12px;
  }

  .site-announcement strong {
    width: auto;
    text-align: left;
  }

  .site-announcement a:nth-of-type(n + 2),
  .announcement-rating {
    display: none;
  }

  .site-announcement a:first-of-type {
    justify-self: end;
    white-space: nowrap;
  }

  .site-header {
    min-height: 58px;
    padding-block: 8px;
  }

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

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

  .hero {
    gap: 16px;
    padding-block: 18px 14px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero-rating-row {
    gap: 5px 8px;
    margin-bottom: 10px;
  }

  .hero-rating-row small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1;
  }

  .hero-text {
    display: -webkit-box;
    margin-top: 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-assurance {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-assurance span {
    flex: 1 1 calc(50% - 6px);
    padding: 7px 8px;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    margin-top: 2px;
    min-height: clamp(330px, 88vw, 400px);
  }

  .hero-card-main {
    border-radius: 16px;
    width: min(73%, 300px);
  }

  .hero-card-main img {
    height: clamp(235px, 64vw, 305px);
    padding: 8px;
    object-fit: contain;
    object-position: center center;
  }

  .hero-card-side {
    display: block;
    right: 0;
    top: clamp(118px, 34vw, 150px);
    bottom: auto;
    left: auto;
    width: min(41%, 164px);
    transform: rotate(3deg);
  }

  .hero-card-main span {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero-commerce {
    display: grid;
    gap: 12px;
  }

  .solution-routes {
    display: flex;
    gap: 8px;
    margin-top: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .solution-routes a {
    min-width: 78%;
    scroll-snap-align: start;
  }

  .hero-actions {
    position: sticky;
    z-index: 20;
    bottom: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    border: 1px solid rgba(16, 19, 16, 0.08);
    border-radius: 18px;
    background: rgba(245, 247, 242, 0.92);
    padding: 8px;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(16, 19, 16, 0.12);
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
  }

  .trust-row span {
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .buyer-trust-strip {
    margin-top: 4px;
  }

  .buyer-trust-intro {
    display: none;
  }

  .buyer-trust-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .buyer-trust-card {
    min-width: 74%;
    min-height: 118px;
    scroll-snap-align: start;
    padding: 12px;
  }

  .share-kit-compact {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
  }

  .share-kit-compact .share-kit-media,
  .share-kit-compact .share-kit-media img {
    min-height: 118px;
  }

  .share-kit-compact .share-kit-copy h2 {
    font-size: 1.16rem;
    line-height: 1.08;
  }

  .share-kit-compact .share-reward-actions {
    display: none;
  }

  .share-kit-compact .share-platform-grid {
    display: flex;
    gap: 6px;
    overflow-x: auto;
  }

  .share-kit-compact .share-platform-button {
    min-width: max-content;
    width: auto;
  }

  .products-section {
    padding-top: 32px;
  }

  .media-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .media-stats span {
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: 12px;
  }

  .catalog-grid {
    gap: 14px;
  }

  .catalog-card {
    border-radius: 16px;
  }

  .catalog-media {
    display: grid;
    width: 100%;
    height: clamp(300px, 92vw, 430px);
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    place-items: center;
  }

  .carousel-track,
  .carousel-slide {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .carousel-slide img,
  .carousel-slide video {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .carousel-slide img {
    padding: 8px;
    object-fit: contain;
    object-position: center center;
  }

  .carousel-slide video {
    object-fit: contain;
    object-position: center center;
  }

  .catalog-best-seller-burn {
    top: 10px;
    left: 10px;
    min-height: 30px;
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .slide-badge {
    top: auto;
    bottom: 10px;
    font-size: 0.66rem;
  }

  .carousel-controls {
    justify-content: flex-end;
  }

  .carousel-controls span {
    display: none;
  }

  .catalog-body {
    min-height: 0;
    padding: 16px;
  }

  .catalog-body h3 {
    font-size: 1.22rem;
  }

  .catalog-body > p:not(.product-kicker) {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-offer-strip,
  .catalog-highlights {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
  }

  .product-offer-strip span,
  .catalog-highlights li {
    flex: 0 0 auto;
    min-width: max-content;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .buy-channel-actions,
  .catalog-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .buy-channel-actions {
    padding-top: 14px;
  }

  .brand-buy-link,
  .catalog-actions .video-link {
    min-height: 42px;
    font-size: 0.76rem;
    padding-inline: 10px;
  }

  .product-cart-panel {
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
  }

  .cart-panel-price > span:last-child {
    display: none;
  }

  .cart-panel-controls {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .cart-panel-actions {
    grid-template-columns: 1fr 0.82fr;
  }

  .product-more {
    margin-top: 10px;
  }

  .floating-chat:not(.is-expanded) {
    grid-template-columns: 46px 46px 46px;
    left: auto;
    width: auto;
  }

  .floating-chat:not(.is-expanded) .chat-toggle {
    width: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
  }

  .floating-chat:not(.is-expanded) .chat-toggle span,
  .floating-chat:not(.is-expanded) .chat-toggle strong {
    display: none;
  }

  .floating-chat:not(.is-expanded) .chat-toggle::before {
    content: "?";
    font-size: 1rem;
    font-weight: 950;
  }
}

@media (max-width: 680px) {
  .account-shell {
    width: min(100% - 22px, 520px);
    padding-top: 108px;
  }

  .account-hero h1 {
    font-size: 2.45rem;
    line-height: 0.96;
  }

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

  .account-card,
  .account-panel,
  .account-dashboard {
    border-radius: 14px;
    padding: 18px;
  }

  .account-dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order div {
    display: grid;
  }

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

@media (max-width: 380px) {
  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 20px, var(--max));
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .buy-channel-actions,
  .catalog-actions,
  .cart-panel-actions,
  .cart-panel-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-newsletter,
  .footer-contact {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .site-footer {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
    padding: 34px 22px 118px;
  }

  .site-footer h2 {
    margin-bottom: 14px;
  }

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

  .footer-newsletter button {
    min-height: 46px;
  }
}
