/* ============================================================
   Coway Authorized Agent Malaysia - Design System
   Theme: light-first with auto dark mode (prefers-color-scheme)
   Shape rule: buttons + chips = pill, cards = 20px, media = 14px
   Accent: Coway ocean blue, one family across all pages
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-800.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #f5f8fa;
  --surface: #ffffff;
  --surface-2: #eef3f7;
  --ink: #10222e;
  --ink-2: #4d6273;
  --line: #dfe8ee;
  --media: #f1f5f8;            /* product image wells stay light in both modes */
  --accent: #0077b6;           /* Coway ocean blue, AA on white at all sizes */
  --accent-strong: #005f93;
  --accent-soft: #e3f2fb;
  --accent-contrast: #ffffff;
  --shadow: 0 18px 40px -18px rgb(16 56 80 / 0.22);
  --shadow-sm: 0 8px 22px -12px rgb(16 56 80 / 0.18);
  --r-card: 20px;
  --r-media: 14px;
  --nav-h: 72px;
}

/* Theme is locked to light. The brand's product photography is shot on
   light interiors, so a dark variant would fight every image on the page. */
html { color-scheme: light only; }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }

.wrap { max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.pt-0 { padding-top: 0; }

.h-display {
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.h-section {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  max-width: 21ch;
}
.h-sub {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.lead {
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.4vw, 1.17rem);
  max-width: 56ch;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 14px 28px;
  font: 600 1rem/1 "Outfit", sans-serif;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn i { font-size: 1.15em; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* WhatsApp floating action */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1eb955;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1360px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 22px; width: auto; }
.nav-logo span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-left: 1px solid var(--line);
  padding-left: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  list-style: none;
  padding: 0;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a[aria-current="page"] { color: var(--accent); font-weight: 600; }

.nav-item-drop { position: relative; }
.nav-item-drop > a i { font-size: 0.7em; margin-left: 4px; }
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-media);
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-drop a { display: block; border-radius: 9px; }
.nav-item-drop:hover .nav-drop,
.nav-item-drop:focus-within .nav-drop { display: flex; }

.nav-cta { margin-left: 6px; flex-shrink: 0; }

@media (max-width: 1339px) {
  .nav-logo span { display: none; }
}

.nav-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-open .nav-links a { padding: 13px 14px; font-size: 1.05rem; }
  .nav-drop { display: flex; position: static; box-shadow: none; border: none; padding: 0 0 0 18px; }
}

/* ---------- Hero (full-width image panel) ---------- */
.hero { padding-block: clamp(16px, 2.5vw, 28px) 0; }
.hero-panel {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: min(72dvh, 640px);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-panel > .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  z-index: -2;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgb(6 24 36 / 0.84) 0%, rgb(6 24 36 / 0.62) 42%, rgb(6 24 36 / 0.08) 78%, transparent 100%);
}
.hero-content {
  padding: clamp(28px, 5vw, 72px);
  max-width: 720px;
  color: #fff;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 3.7vw, 3.3rem);
}
.hero-content .lead { color: rgb(255 255 255 / 0.88); margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions .btn-ghost {
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.45);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero-actions .btn-ghost:hover { border-color: #fff; color: #fff; }
.hero-chip {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(72px, 8vw, 92px);
  background: rgb(255 255 255 / 0.94);
  border-radius: 999px;
  padding: 12px 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: var(--shadow);
}
.hero-chip strong { font-size: 1.3rem; font-weight: 750; letter-spacing: -0.02em; color: var(--ink); }
.hero-chip span { color: var(--ink-2); font-size: 0.9rem; }

@media (max-width: 860px) {
  .hero-panel { min-height: min(78dvh, 560px); align-items: flex-end; }
  .hero-panel::before {
    background: linear-gradient(to top, rgb(6 24 36 / 0.88) 30%, rgb(6 24 36 / 0.42) 65%, rgb(6 24 36 / 0.12) 100%);
  }
  .hero-content { padding-bottom: 84px; }
  .hero-chip { right: auto; left: clamp(20px, 5vw, 28px); bottom: 20px; }
}

/* ---------- Stat panel (floats over the hero's bottom edge) ---------- */
.stats { position: relative; z-index: 2; }
.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  margin-top: -52px;
  overflow: hidden;
}
.stat {
  position: relative;
  padding: clamp(26px, 3vw, 42px) clamp(22px, 2.6vw, 38px);
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26%;
  bottom: 26%;
  width: 1px;
  background: var(--line);
}
.stat i {
  display: inline-grid;
  place-items: center;
  font-size: 1.45rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 11px;
}
.stat strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat span { display: block; margin-top: 8px; color: var(--ink-2); font-size: 0.93rem; line-height: 1.45; }

@media (max-width: 860px) {
  .stats-panel { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .stat { padding: 22px 20px; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .stat strong { font-size: 1.65rem; }
  .stat i { font-size: 1.2rem; padding: 9px; }
}

/* ---------- Bento (categories) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
  margin-top: clamp(36px, 4vw, 56px);
}
.bento-cell {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bento-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bento-cell:hover img { transform: scale(1.045); }
.bento-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(7 22 32 / 0.78) 0%, rgb(7 22 32 / 0.18) 46%, transparent 70%);
}
.bento-label {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.bento-label h3 { font-size: 1.3rem; font-weight: 700; color: #fff; }
.bento-label p { font-size: 0.9rem; color: rgb(255 255 255 / 0.85); margin-top: 3px; }
.bento-label i {
  font-size: 1.25rem;
  background: rgb(255 255 255 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.32);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 9px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.bento-cell:hover .bento-label i { background: rgb(255 255 255 / 0.3); }

.cell-2w { grid-column: span 3; }
.cell-1w { grid-column: span 2; }
.cell-tall { grid-row: span 2; }
.bento .b1 { grid-column: span 3; grid-row: span 2; }
.bento .b2 { grid-column: span 3; }
.bento .b3 { grid-column: span 3; }
.bento .b4 { grid-column: span 2; }
.bento .b5 { grid-column: span 2; }
.bento .b6 { grid-column: span 2; }

@media (max-width: 1023px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .bento .b1 { grid-column: span 2; grid-row: span 1; }
  .bento .b2, .bento .b3 { grid-column: span 1; }
  .bento .b4, .bento .b5 { grid-column: span 1; }
  .bento .b6 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento .b1, .bento .b2, .bento .b3, .bento .b4, .bento .b5, .bento .b6 { grid-column: span 1; }
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 20px;
  margin-top: clamp(34px, 4vw, 52px);
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-media {
  background: var(--media);
  border-radius: var(--r-media);
  margin: 12px 12px 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.product-media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}
.product-media img.full-bleed { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.product-card:hover .product-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.18rem; font-weight: 700; }
.product-body h3 a { color: inherit; text-decoration: none; }
.product-body h3 a:hover { color: var(--accent); }
a.product-media-link { display: block; }
.product-body p { color: var(--ink-2); font-size: 0.92rem; margin-top: 6px; flex: 1; }
.product-price { margin-top: 16px; display: flex; align-items: baseline; gap: 6px; }
.product-price strong { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em; }
.product-price span { color: var(--ink-2); font-size: 0.88rem; }
.product-price del { color: var(--ink-2); font-size: 0.95rem; font-weight: 400; margin-left: 4px; }
.product-actions { margin-top: 14px; display: flex; gap: 10px; }
.product-actions .btn { flex: 1; justify-content: center; padding-inline: 12px; }

/* Fixed 3-column variant (homepage best sellers) */
.product-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) {
  .product-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid.grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Split feature (image + content) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split.flip > .split-media { order: 2; }
.split-media img {
  width: 100%;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.split-content .lead { margin-top: 16px; }
.split-content .btn { margin-top: 28px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
}

/* Feature list inside splits */
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list i {
  font-size: 1.3rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
}
.feature-list strong { display: block; font-weight: 650; }
.feature-list span { color: var(--ink-2); font-size: 0.95rem; }

/* ---------- Promo panel ---------- */
.promo-panel {
  border-radius: var(--r-card);
  background: linear-gradient(120deg, #062c44 0%, #07415f 55%, #0a5d83 100%);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
}
.promo-panel-copy { padding: clamp(36px, 5vw, 64px); }
.promo-panel-copy h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -0.025em; max-width: 18ch; }
.promo-panel-copy p { color: rgb(255 255 255 / 0.82); margin-top: 14px; max-width: 46ch; }
.promo-panel-copy .btn { margin-top: 28px; background: #fff; color: #07415f; }
.promo-panel-copy .btn:hover { background: #e6f4fb; }
.promo-panel-media { height: 100%; min-height: 320px; }
.promo-panel-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .promo-panel { grid-template-columns: 1fr; }
  .promo-panel-media { order: -1; min-height: 230px; }
}

/* ---------- Promotions page jump tabs ---------- */
.promo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(24px, 3vw, 36px);
}
.promo-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 14px;
  border-radius: var(--r-media);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.promo-tab:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
@media (max-width: 640px) {
  .promo-tabs { grid-template-columns: 1fr; }
}

/* ---------- Promotional banner ---------- */
.promo-banner { padding-bottom: 0; }
.promo-banner-frame {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.promo-banner-frame img { width: 100%; display: block; }

/* ---------- Leading the World (stats over earth image) ---------- */
.leading {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #fff;
}
.leading-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.leading h2 {
  color: #fff;
  margin-inline: auto;
  max-width: none;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}
.leading .lead { color: rgb(255 255 255 / 0.92); margin: 12px auto 0; }
.leading-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(36px, 5vw, 56px);
}
.leading-stat strong {
  display: block;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}
.leading-stat span { display: block; margin-top: 8px; color: rgb(255 255 255 / 0.9); font-size: 0.95rem; font-weight: 400; }
.leading .cert-strip { margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 860px) {
  .leading-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .leading-stats .leading-stat:last-child { grid-column: 1 / -1; }
}

/* ---------- Trust / cert strip ---------- */
.cert-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(30px, 4vw, 44px);
}
.cert-strip img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* ---------- Steps (care service) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 4vw, 44px);
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-media);
  overflow: hidden;
}
.step img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.step figcaption { padding: 12px 14px; font-size: 0.86rem; color: var(--ink-2); }
.step figcaption b { display: block; color: var(--ink); font-weight: 650; font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(30px, 4vw, 44px);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-media);
}
.gallery .tall { grid-row: span 2; }
.gallery .tall img { height: 100%; aspect-ratio: auto; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(5 20 30 / 0.82) 0%, rgb(5 20 30 / 0.55) 52%, rgb(5 20 30 / 0.18) 100%);
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 10vw, 140px);
  color: #fff;
  max-width: 1240px;
}
.page-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
}
.page-hero .lead { color: rgb(255 255 255 / 0.85); margin-top: 16px; }
.page-hero .hero-actions { margin-top: 30px; }

/* ---------- Promo highlights row ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: clamp(30px, 4vw, 44px);
}
.highlight {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
.highlight i {
  font-size: 1.35rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
}
.highlight b { display: block; font-weight: 650; }
.highlight span { color: var(--ink-2); font-size: 0.92rem; }

/* ---------- Pricing options ---------- */
.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: clamp(30px, 4vw, 44px);
}
.price-option {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.price-option.featured { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.price-option h3 { font-size: 1.05rem; font-weight: 650; color: var(--ink-2); }
.price-option .amount { margin-top: 10px; display: flex; align-items: baseline; gap: 6px; }
.price-option .amount strong { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.price-option .amount span { color: var(--ink-2); }
.price-option ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; flex: 1; }
.price-option li { display: flex; gap: 9px; color: var(--ink-2); font-size: 0.94rem; }
.price-option li i { color: var(--accent); margin-top: 3px; }
.price-option .btn { margin-top: 22px; justify-content: center; }

/* ---------- Mattress Ecolite (layout cloned from the original site) ---------- */
.eco-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.eco-hero > img.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.eco-hero .wrap {
  min-height: min(78dvh, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-block: clamp(48px, 6vw, 84px) 64px;
}
.eco-hero img.eco-logo { width: clamp(190px, 21vw, 270px); height: auto; }
.eco-hero h1 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  line-height: 1.3;
  text-shadow: 0 2px 18px rgb(20 60 100 / 0.25);
}
.eco-hero p { color: rgb(255 255 255 / 0.95); font-size: clamp(1rem, 1.5vw, 1.2rem); }

.eco-video {
  background: #82abdd;
  text-align: center;
  color: #fff;
}
.eco-video img.eco-logo { width: clamp(200px, 22vw, 280px); margin: 0 auto clamp(28px, 4vw, 44px); }
.eco-video video {
  width: min(100%, 920px);
  border-radius: var(--r-card);
  display: block;
  margin-inline: auto;
  box-shadow: var(--shadow);
  background: #0a141c;
}

.eco-cooling {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.eco-cooling > img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.eco-cooling-content {
  background: #8fb6e3;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 6vw, 96px) clamp(24px, 5vw, 80px);
}
.eco-cooling-content h2 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.3;
}
.eco-cooling-content p { margin-top: 20px; color: rgb(255 255 255 / 0.95); max-width: 52ch; margin-inline: auto; }
@media (max-width: 860px) {
  .eco-cooling { grid-template-columns: 1fr; }
  .eco-cooling > img { min-height: 300px; }
}

.eco-section-title {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}
.eco-section-sub { color: rgb(255 255 255 / 0.95); text-align: center; max-width: 62ch; margin: 16px auto 0; }
.eco-note { color: rgb(255 255 255 / 0.85); text-align: center; font-size: 0.88rem; margin-top: 12px; }

.eco-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(24px, 3vw, 36px);
}
.eco-bullets li { display: flex; align-items: center; gap: 10px; color: #11437c; font-weight: 500; }
.eco-bullets { list-style: none; padding: 0; }
.eco-bullets i { font-size: 1.45rem; }

.eco-layers { background: #b9d3ec; }
.eco-layers video {
  width: min(100%, 980px);
  display: block;
  margin: clamp(32px, 4vw, 48px) auto 0;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.eco-materials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
  max-width: 1000px;
  margin-inline: auto;
}
.eco-material { text-align: center; }
.eco-material img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-media); }
.eco-material h3 {
  margin-top: 16px;
  color: #11437c;
  font-size: 1rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eco-material p { margin-top: 8px; font-size: 0.92rem; color: #2c5689; }
@media (max-width: 860px) {
  .eco-materials { grid-template-columns: repeat(2, 1fr); }
}

.eco-sleep { background: linear-gradient(180deg, #7aa3d6 0%, #a3c4e9 100%); }
.eco-sleep .eco-wide, .eco-topper .eco-wide {
  width: min(100%, 1100px);
  display: block;
  margin: clamp(32px, 4vw, 48px) auto 0;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.eco-topper { background: #aecbe9; }

.eco-rooms { background: var(--surface); }
.eco-rooms .eco-section-title { color: var(--ink); }
.eco-rooms .eco-section-sub { color: var(--ink-2); }
.eco-rooms .eco-room-main {
  width: 100%;
  border-radius: var(--r-card);
  margin-top: clamp(32px, 4vw, 48px);
}
.eco-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: clamp(160px, 22vw, 300px);
  gap: 10px;
  margin-top: 10px;
}
.eco-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-media); }
.eco-mosaic .tall { grid-row: span 2; }
.eco-mosaic .wide { grid-column: span 2; }
@media (max-width: 700px) {
  .eco-mosaic { grid-template-columns: 1fr 1fr; }
  .eco-mosaic .tall { grid-row: span 1; }
  .eco-mosaic .wide { grid-column: span 2; }
}

.eco-care {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.eco-care > img.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.eco-care::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgb(7 16 40 / 0.55), rgb(7 16 40 / 0.2));
}
.eco-care h2 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 14ch;
}
.eco-care-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.eco-care-head p { color: rgb(255 255 255 / 0.9); max-width: 50ch; margin-top: 16px; }
.eco-care-team { width: 100%; height: auto; }
@media (max-width: 860px) {
  .eco-care-head { grid-template-columns: 1fr; }
}
.eco-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(36px, 5vw, 56px);
}
.eco-step { text-align: center; }
.eco-step span {
  display: block;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.85);
  margin-bottom: 10px;
}
.eco-step img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-media); }
.eco-step b { display: block; margin-top: 12px; font-weight: 600; font-size: 0.95rem; }
@media (max-width: 860px) {
  .eco-steps { grid-template-columns: repeat(2, 1fr); }
}

.eco-specs { background: #3d4349; color: #ddd6c8; }
.eco-specs h2 {
  color: #f2ecdf;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.eco-specs .eco-specs-sub { margin-top: 10px; color: #bdb5a4; }
.eco-table-scroll { overflow-x: auto; margin-top: clamp(28px, 4vw, 44px); }
.eco-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.eco-table th, .eco-table td {
  border: 1px solid rgb(255 255 255 / 0.22);
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}
.eco-table th { font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; }
.eco-table .eco-row-label { font-weight: 600; }
.eco-table small { display: block; color: #a89f8d; font-size: 0.8rem; margin-top: 2px; }
.eco-specs .eco-fineprint { margin-top: 18px; font-size: 0.85rem; color: #a89f8d; display: grid; gap: 4px; }

/* ---------- Prime II Series (layout cloned from the original site) ---------- */
.prime-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.prime-hero > img.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.prime-hero .wrap {
  min-height: min(78dvh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding-block: 64px;
  max-width: 1240px;
}
.prime-hero img.prime-logo { width: clamp(220px, 24vw, 320px); height: auto; }
.prime-hero h1 {
  color: #1d3e8f;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  line-height: 1.3;
  max-width: 21ch;
}
.prime-hero p { color: #41597a; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }

.prime-title {
  color: #1d3e8f;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}
.prime-sub { color: var(--ink-2); text-align: center; max-width: 64ch; margin: 16px auto 0; }
.prime-blue { background: #cfe0f3; }
.prime-blue .prime-sub { color: #33508a; }

.prime-video-frame video, video.prime-loop {
  width: min(100%, 980px);
  display: block;
  margin: clamp(32px, 4vw, 48px) auto 0;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  background: #0a141c;
}

.eco-materials.cols-5 { grid-template-columns: repeat(5, 1fr); max-width: 1120px; }
@media (max-width: 860px) {
  .eco-materials.cols-5 { grid-template-columns: repeat(2, 1fr); }
}

.prime-cooler h2 {
  color: #1d3e8f;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.25;
}
.prime-cooler .split-content p { color: var(--ink-2); margin-top: 18px; max-width: 50ch; }
.prime-icons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(26px, 3vw, 38px);
}
.prime-icons div { text-align: center; color: #33508a; font-size: 0.95rem; }
.prime-icons img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 8px; }
.prime-cooler video { width: 100%; border-radius: var(--r-card); box-shadow: var(--shadow-sm); }

.prime-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: clamp(32px, 4vw, 48px);
}
.prime-gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 700px) {
  .prime-gallery { grid-template-columns: repeat(2, 1fr); }
}

.prime-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}
.prime-step { text-align: center; }
.prime-step img { width: 100%; border-radius: var(--r-media); }
.prime-step b { display: block; margin-top: 12px; font-weight: 600; color: var(--ink); }
@media (max-width: 860px) {
  .prime-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Air Conditioner (layout cloned from the original site) ---------- */
.ac-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ac-hero > img.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.ac-hero .wrap {
  min-height: min(78dvh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 64px;
}
.ac-hero-content { max-width: 600px; text-align: center; }
.ac-hero-content img { width: clamp(240px, 26vw, 350px); margin-inline: auto; }
.ac-hero-content h1 {
  margin-top: 28px;
  color: #1a7fae;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.3;
}
.ac-hero-content p {
  margin-top: 14px;
  color: #1a7fae;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.ac-promo {
  background: #b9cfe9;
  color: #4d5a68;
  text-align: center;
}
.ac-promo .ac-promo-img {
  width: min(100%, 540px);
  display: block;
  margin: 0 auto clamp(28px, 4vw, 40px);
}
.ac-promo ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; justify-items: center; }
.ac-promo li { display: flex; align-items: center; gap: 10px; font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 500; }
.ac-promo li i { color: #f6c244; font-size: 1.2em; }
.ac-promo .btn {
  margin-top: 30px;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.ac-promo .btn:hover { background: var(--accent); color: #fff; }

.ac-dark { background: #0b0f15; color: #fff; }
.ac-dark-img {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.ac-dark-img > img.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.ac-dark-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(5 8 14 / 0.55);
}

.ac-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(14px, 2.5vw, 30px);
  margin-top: clamp(32px, 4vw, 48px);
}
.ac-icons .ac-icon-item { width: 120px; text-align: center; color: rgb(255 255 255 / 0.92); font-size: 0.92rem; }
.ac-icons .ac-icon-item img { height: 58px; width: auto; margin: 0 auto 10px; }
.ac-icons > i { color: rgb(255 255 255 / 0.45); font-size: 1.3rem; margin-top: 22px; }
.ac-note {
  color: rgb(255 255 255 / 0.55);
  font-size: 0.8rem;
  max-width: 78ch;
  margin: 26px auto 0;
  text-align: center;
  line-height: 1.6;
}

.ac-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.ac-split h2 {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}
.ac-split p { color: rgb(255 255 255 / 0.85); margin-top: 16px; max-width: 48ch; }
.ac-split img.ac-photo { width: 100%; border-radius: var(--r-card); }
.ac-split img.ac-badge { height: clamp(110px, 12vw, 150px); width: auto; margin-top: 26px; }
@media (max-width: 860px) {
  .ac-split { grid-template-columns: 1fr; }
}

.ac-remote-img { width: min(100%, 900px); display: block; margin: clamp(32px, 4vw, 48px) auto 0; }

/* ---------- Massage Chair (layout cloned from the original site) ---------- */
.mc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.mc-hero > img.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: -1;
}
.mc-hero .wrap {
  min-height: min(82dvh, 740px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-block: clamp(48px, 6vw, 84px) 64px;
}
.mc-hero img.mc-logo { width: clamp(170px, 18vw, 230px); height: auto; }
.mc-hero h1 {
  color: #2e2c7e;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}
.mc-hero p { color: #4b4f74; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.mc-hero .mc-model { color: #6a6f95; font-size: 0.95rem; letter-spacing: 0.08em; }

.mc-techs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(36px, 5vw, 56px);
}
.mc-tech { text-align: center; }
.mc-tech img.mc-gif { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-media); }
.mc-tech h3 {
  margin-top: 14px;
  color: #1d3e8f;
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mc-tech p { color: var(--ink-2); margin-top: 8px; font-size: 0.88rem; }
@media (max-width: 1023px) {
  .mc-techs { grid-template-columns: repeat(2, 1fr); }
  .mc-techs .mc-tech:last-child { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}

.mc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}
.mc-feature { text-align: center; }
.mc-feature img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-media); }
.mc-feature h3 { margin-top: 16px; font-size: 1.05rem; font-weight: 650; }
.mc-feature p { color: var(--ink-2); margin-top: 8px; font-size: 0.93rem; }
@media (max-width: 860px) {
  .mc-features { grid-template-columns: 1fr; }
}

.mc-milestone-img { width: min(100%, 1000px); display: block; margin: clamp(32px, 4vw, 48px) auto 0; }

/* ---------- Washer Dryer (layout cloned from the original site) ---------- */
.wd-hero h1 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  max-width: none;
}
.wd-hero .wd-model { color: rgb(255 255 255 / 0.85); letter-spacing: 0.1em; font-size: 0.95rem; }
.wd-hero .wd-tagline {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-top: 6px;
}
.wd-hero .wd-copy { color: rgb(255 255 255 / 0.85); max-width: 40ch; }
.wd-hero .wd-price { color: #fff; margin-top: 14px; font-size: 1.05rem; }
.wd-hero .wd-price strong { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 750; letter-spacing: -0.02em; }
.wd-hero .wd-note { color: rgb(255 255 255 / 0.55); font-size: 0.78rem; }
.wd-footnote {
  text-align: center;
  color: var(--ink-2);
  font-size: 0.82rem;
  margin-top: 18px;
}
.wd-full-img {
  display: block;
  width: 100%;
  margin-top: clamp(32px, 4vw, 48px);
}
/* "No more laundry day stress": composite image (photo left, white right),
   text overlaid on the image's white right side, as on the original site */
.wd-stress { position: relative; }
.wd-stress-img { display: block; width: 100%; }
.wd-stress-copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 62%;
  right: 5%;
}
.wd-stress-copy h2 {
  color: #2b2f33;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  max-width: 13ch;
}
.wd-stress-copy p {
  color: var(--ink-2);
  margin-top: clamp(8px, 1.5vw, 18px);
  max-width: 44ch;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
}
@media (max-width: 700px) {
  .wd-stress-copy { position: static; transform: none; padding: 28px 20px 36px; }
  .wd-stress-copy h2 { font-size: 1.5rem; }
}
.eco-specs .price-options { margin-top: clamp(34px, 4vw, 50px); }

/* ---------- Product single page ---------- */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-2);
  padding-top: clamp(20px, 3vw, 32px);
}
.pd-breadcrumb a { color: var(--ink-2); text-decoration: none; }
.pd-breadcrumb a:hover { color: var(--accent); }
.pd-breadcrumb i { font-size: 0.75rem; }
.pd-breadcrumb span { color: var(--ink); font-weight: 550; }

.pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-block: clamp(28px, 4vw, 48px) 0;
}
.pd-gallery .pd-main {
  background: var(--media);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.pd-gallery .pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.pd-thumb {
  border: 2px solid var(--line);
  border-radius: var(--r-media);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--media);
  aspect-ratio: 1;
  transition: border-color 0.15s ease;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb:hover { border-color: var(--accent); }
.pd-thumb.active { border-color: var(--accent); }

.pd-info h1 { font-size: clamp(1.9rem, 3vw, 2.5rem); letter-spacing: -0.025em; }
.pd-sku { color: var(--ink-2); font-size: 0.92rem; margin-top: 8px; letter-spacing: 0.04em; }
.pd-price { margin-top: 18px; display: flex; align-items: baseline; gap: 8px; }
.pd-price strong { font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--accent-strong); }
.pd-price span { color: var(--ink-2); }
.pd-tagline { margin-top: 14px; font-weight: 650; font-size: 1.05rem; }
.pd-plans { display: grid; gap: 10px; margin-top: 20px; }
.pd-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-media);
}
.pd-plan b { font-weight: 600; font-size: 0.97rem; }
.pd-plan small { display: block; color: var(--ink-2); font-size: 0.84rem; margin-top: 2px; }
.pd-plan .pd-plan-price { font-weight: 750; white-space: nowrap; font-size: 1.05rem; }
.pd-info .btn { margin-top: 24px; width: 100%; justify-content: center; }
.pd-meta { margin-top: 16px; color: var(--ink-2); font-size: 0.88rem; display: grid; gap: 5px; }
.pd-meta i { color: var(--accent); margin-right: 7px; }

@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; }
}

/* Product description sections */
.pd-colors-img { width: min(100%, 880px); display: block; margin: clamp(28px, 4vw, 44px) auto 0; }
.pd-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(32px, 4vw, 48px);
  max-width: 860px;
  margin-inline: auto;
}
.pd-filter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
}
.pd-filter img { height: 200px; width: auto; margin: 0 auto 18px; }
.pd-filter .pd-step {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
}
.pd-filter h3 { font-size: 1.1rem; font-weight: 700; }
.pd-filter small { display: block; color: var(--ink-2); margin-top: 4px; font-size: 0.82rem; }
.pd-filter p { color: var(--ink-2); margin-top: 10px; font-size: 0.94rem; }
@media (max-width: 700px) {
  .pd-filters { grid-template-columns: 1fr; }
}

/* ---------- Product description (cloned full-bleed sections) ---------- */
.pdx-bleed { position: relative; overflow: hidden; }
.pdx-bleed > img.pdx-bg { display: block; width: 100%; height: auto; }

.pdx-overlay-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(24px, 7vw, 120px);
  max-width: 480px;
}
.pdx-overlay-left h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.02em; color: var(--ink); }
.pdx-overlay-left .pdx-sku { color: var(--ink-2); margin-top: 8px; letter-spacing: 0.06em; font-size: 0.92rem; }
.pdx-overlay-left p { color: var(--ink-2); margin-top: 16px; }
.pdx-overlay-left img.pdx-colors { width: clamp(200px, 22vw, 300px); margin-top: 22px; }

.pdx-overlay-top {
  position: absolute;
  top: clamp(24px, 6vw, 84px);
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 860px);
  text-align: center;
  color: #fff;
}
.pdx-overlay-top h2 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  text-shadow: 0 2px 16px rgb(0 0 0 / 0.25);
}
.pdx-overlay-top p { color: rgb(255 255 255 / 0.95); margin-top: 12px; font-size: clamp(0.85rem, 1.3vw, 1.05rem); text-shadow: 0 1px 10px rgb(0 0 0 / 0.25); }

.pdx-overlay-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}
.pdx-overlay-center h2 {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.2rem, 2.6vw, 2.2rem);
  text-shadow: 0 2px 16px rgb(0 0 0 / 0.3);
}
.pdx-overlay-center p { color: rgb(255 255 255 / 0.95); margin-top: 10px; max-width: 62ch; font-size: clamp(0.82rem, 1.3vw, 1.02rem); text-shadow: 0 1px 10px rgb(0 0 0 / 0.3); }

@media (max-width: 700px) {
  .pdx-overlay-left { position: static; transform: none; max-width: none; padding: 24px 20px 8px; }
  .pdx-bleed.pdx-stack-mobile { display: flex; flex-direction: column-reverse; }
}

/* Carousel */
.pdx-slider { position: relative; overflow: hidden; }
.pdx-track { display: flex; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.pdx-track img { width: 100%; flex-shrink: 0; display: block; }
.pdx-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgb(255 255 255 / 0.85);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease;
}
.pdx-arrow:hover { background: #fff; }
.pdx-arrow.prev { left: clamp(10px, 2vw, 28px); }
.pdx-arrow.next { right: clamp(10px, 2vw, 28px); }
.pdx-dots {
  position: absolute;
  bottom: clamp(12px, 2vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.pdx-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgb(255 255 255 / 0.55);
  cursor: pointer;
  padding: 0;
}
.pdx-dots button.active { background: var(--accent); }

/* Mint "your drink" section */
.pdx-mint { background: #daefcf; text-align: center; }
.pdx-mint h2 {
  color: #1e7d46;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}
.pdx-mint p { color: #2c8a55; margin-top: 12px; }
.pdx-mint img { width: min(100%, 1140px); margin: clamp(20px, 3vw, 32px) auto 0; display: block; }

/* Filters on dark */
.pdx-dark-filters { background: #0b0d10; color: #fff; }
.pdx-dark-filters .eco-section-title { margin-bottom: 0; }
.pdx-dark-filters .pd-filter { background: transparent; border: none; }
.pdx-dark-filters .pd-filter h3 { color: #fff; }
.pdx-dark-filters .pd-filter small { color: rgb(255 255 255 / 0.6); }
.pdx-dark-filters .pd-filter p { color: rgb(255 255 255 / 0.78); }

/* ---------- Legal pages (privacy policy, terms) ---------- */
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -0.025em; }
.legal .legal-date { color: var(--ink-2); margin-top: 10px; font-size: 0.95rem; }
.legal h2 { font-size: 1.25rem; font-weight: 700; margin-top: clamp(32px, 4vw, 44px); }
.legal p { color: var(--ink-2); margin-top: 14px; line-height: 1.75; }
.legal ul { margin: 14px 0 0; padding-left: 22px; color: var(--ink-2); display: grid; gap: 8px; line-height: 1.7; }
.legal a { color: var(--accent); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

/* ---------- Contact (full background image) ---------- */
.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-section .contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgb(5 32 48 / 0.55) 0%, rgb(5 32 48 / 0.72) 55%, rgb(5 32 48 / 0.88) 100%);
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(26px, 3.5vw, 44px);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.025em; }
.contact-form > p { color: var(--ink-2); margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.9rem; font-weight: 600; }
.form-field input, .form-field textarea {
  font: 400 1rem "Outfit", sans-serif;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-2); opacity: 0.75; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-error { color: #c0392b; font-size: 0.85rem; display: none; }
.form-field.invalid .form-error { display: block; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #c0392b; }
.contact-form .btn { margin-top: 24px; width: 100%; justify-content: center; }
.form-note { margin-top: 14px; font-size: 0.86rem; color: var(--ink-2); text-align: center; }

.contact-aside h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.contact-aside > p { color: rgb(255 255 255 / 0.82); margin-top: 14px; max-width: 42ch; }
.contact-points { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 16px; }
.contact-points li { display: flex; gap: 14px; align-items: center; color: rgb(255 255 255 / 0.88); font-size: 1.02rem; }
.contact-points i {
  color: #fff;
  font-size: 1.15rem;
  background: rgb(255 255 255 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
}
.contact-points a { color: #fff; font-weight: 650; text-decoration: none; }
.contact-points a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .contact-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: clamp(44px, 6vw, 64px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(2, minmax(0, 3fr));
  gap: clamp(28px, 4vw, 56px);
}
.footer-brand img { height: 24px; }
.footer-brand p { color: var(--ink-2); font-size: 0.92rem; margin-top: 16px; max-width: 38ch; }
.footer h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.footer ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.footer ul a { text-decoration: none; color: var(--ink); font-size: 0.95rem; }
.footer ul a:hover { color: var(--accent); }
.footer-legal {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.84rem;
  display: grid;
  gap: 6px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ----------
   Gated behind html.js so content is never hidden if JS fails to run. */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--d, 0) * 70ms);
  }
  html.js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.center .h-section, .center .lead { margin-inline: auto; }
.mt-lg { margin-top: clamp(30px, 4vw, 48px); }
.section-head { max-width: 640px; }
.section-head .lead { margin-top: 14px; }
