:root {
  --forest: #1f4d38;
  --forest-deep: #0c1f16;
  --leaf: #2f6a4a;
  --gold: #e3b23c;
  --gold-bright: #f5c84a;
  --bronze: #c4a35a;
  --ink: #11140f;
  --paper: #f3eee4;
  --muted: #3a4338;
  --line: rgba(17, 20, 15, 0.12);
  --danger: #ff3b30;
  --ok: #2f8a57;
  --shadow: 0 24px 80px rgba(17, 20, 15, 0.18);
  --radius: 28px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body.essitel {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}
body.essitel.legal-open,
body.essitel.drawer-open { overflow: hidden; }
body.essitel.is-legal { overflow: auto; }

a { color: var(--forest); text-decoration: none; }
button, input, select { font-family: inherit; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: #000; color: #fff; padding: 8px; z-index: 99; }

.topbar {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: transparent;
}
body.is-legal .topbar {
  position: sticky;
  background: rgba(243, 238, 228, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-left {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-self: start;
}
.nav-left a,
.nav-left button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  justify-self: center;
}
.brand-seal {
  height: 42px;
  width: 42px;
  object-fit: cover;
  display: block;
  flex: none;
  border-radius: 50%;
}
.brand-lockup { display: grid; gap: 1px; }
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  max-width: 220px;
  object-fit: contain;
}
.brand-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}
.lang {
  display: flex;
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--line);
}
.lang a {
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.lang a.is-active { background: var(--gold); color: var(--ink); }

.btn {
  appearance: none; border: 0; cursor: pointer;
  border-radius: 999px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(227, 178, 60, .38);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-forest {
  background: linear-gradient(180deg, var(--leaf), var(--forest));
  color: #fff;
  border: 1px solid var(--gold);
}
.btn-lg { height: 48px; padding: 0 18px; font-size: 15px; width: 100%; }
.btn-sm { height: 38px; padding: 0 14px; font-size: 13px; }

.stage {
  position: relative;
  min-height: 100dvh;
  background: #efe8da;
}
.stage-bg {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
}
.stage-bg img,
.stage-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.stage-ui {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(300px, 400px) minmax(280px, 1fr);
  grid-template-rows: auto auto auto;
  align-content: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 5vw 40px 8vw;
  gap: 16px 28px;
  pointer-events: none;
}
.stage-copy,
.buy-card,
.stage-product,
.product-shots { pointer-events: auto; }

.stage-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 520px;
  display: grid;
  gap: 14px;
}
.eyebrow {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}
.stage-copy h1,
.buy-card h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: .95;
  letter-spacing: -0.04em;
  margin: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.75);
}
.tagline {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
  max-width: 38ch;
  text-shadow: 0 1px 0 rgba(255,255,255,.75);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.hero-cta .btn { width: auto; min-width: 200px; height: 52px; padding: 0 22px; font-size: 16px; }
.hero-cta .btn-ghost {
  background: rgba(255,255,255,.92);
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(17,20,15,.08);
}
.price {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-note { color: var(--muted); font-size: 14px; font-weight: 700; }

.buy-card {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 420px;
  background: rgba(255, 252, 247, .86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 16px 16px 12px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}
.buy-head { display: none; }
.buy-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.price-block { display: grid; gap: 2px; }
.stock {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(47, 138, 87, .12); color: var(--forest);
  border: 1px solid rgba(47,138,87,.28);
  padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.stock i { width: 8px; height: 8px; background: var(--ok); border-radius: 50%; display: block; flex: none; }
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 34px;
  background: rgba(31, 77, 56, .05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}
.buy-form { display: grid; gap: 8px; }
.buy-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 8px;
  align-items: stretch;
}
.qty-box {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.qty-box button {
  width: 100%; height: 100%; border: 0; background: transparent; color: var(--ink);
  font-size: 20px; cursor: pointer; line-height: 1;
}
.qty-box input {
  width: 100%; height: 100%; border: 0; background: transparent; color: var(--ink);
  text-align: center; font-weight: 800; font-size: 16px;
  appearance: textfield; -moz-appearance: textfield;
}
.qty-box input::-webkit-outer-spin-button,
.qty-box input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.pay-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}
.pay-split::before,
.pay-split::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.express-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.essitel-express {
  display: grid;
  gap: 8px;
}
.buy-card #wc-stripe-express-checkout-element {
  margin: 0 !important;
  gap: 8px;
  justify-content: stretch;
}
.buy-card #wc-stripe-express-checkout-element > div {
  min-width: 0 !important;
  flex: 1 1 140px;
}
.buy-card #wc-stripe-express-checkout-element iframe {
  min-height: 48px;
}
.pay-btn {
  height: 48px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
}
.pay-btn:hover { filter: brightness(1.06); }
.pay-apple { background: #000; color: #fff; }
.pay-paypal { background: #ffc439; color: #003087; }
.pay-paypal-mark {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #003087;
}
.pay-paypal-mark span { color: #009cde; }
.more-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.more-links button {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  padding: 6px 0;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}
.pay-hint { font-size: 14px; font-weight: 700; color: var(--ink); text-align: center; margin: 0; }
.legal-links { display: flex; gap: 16px; justify-content: center; font-size: 14px; font-weight: 700; }
.legal-links a { color: var(--forest); }
.disclaimer { font-size: 13px; font-weight: 600; color: var(--muted); margin: 0; text-align: center; line-height: 1.45; }

.stage-product {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  margin: 0;
  width: min(100%, 520px);
}
.stage-product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(18px 22px 28px rgba(40, 28, 16, .35));
}

.product-shots {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-shots button {
  flex: none;
  width: 72px;
  height: 90px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17,20,15,.16);
}
.product-shots button:hover,
.product-shots button.is-on { border-color: var(--gold); }
.product-shots img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f3ea;
  display: block;
}

.shot-viewer {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(14, 26, 20, .78);
  display: grid;
  place-items: center;
  padding: 24px;
}
.shot-viewer[hidden] { display: none !important; }
.shot-viewer img {
  max-width: min(92vw, 720px);
  max-height: 86dvh;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.shot-viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.drawer {
  position: fixed; inset: 0; z-index: 40;
  pointer-events: none;
}
.drawer.is-open { pointer-events: auto; z-index: 80; }
.drawer-bg {
  position: absolute; inset: 0; background: rgba(14, 26, 20, .45);
  opacity: 0; transition: opacity .2s ease;
}
.drawer.is-open .drawer-bg { opacity: 1; }
.drawer-panel {
  position: absolute; right: 0; top: 0; height: 100%;
  width: min(560px, 100%);
  background: #f7f3ea;
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-radius: 28px 0 0 28px;
  transform: translateX(104%);
  transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.drawer.is-open .drawer-panel { transform: none; }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.drawer-head h2 { margin: 0; font-size: 20px; }
.drawer-body { padding: 18px; overflow: auto; flex: 1; color: var(--ink); }
.drawer-body h3 {
  font-family: var(--display); color: var(--forest);
  margin: 22px 0 8px; font-size: 22px;
}
.drawer-body p, .drawer-body li { line-height: 1.55; font-size: 14.5px; }
.specs { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs th, .specs td { border-bottom: 1px solid var(--line); padding: 8px 6px; text-align: left; }
.specs th { color: var(--forest); width: 42%; font-weight: 700; }

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 12px 14px; display: none; gap: 12px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.cookie.is-visible { display: flex; }
.cookie[hidden] { display: none !important; }
.cookie p { margin: 0; font-size: 13px; color: var(--ink); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.legal-page {
  max-width: 820px; margin: 0 auto; padding: 28px 18px 80px;
  color: var(--ink);
}
.checkout-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 18px 80px;
  color: var(--ink);
}
.checkout-page h1 {
  font-family: var(--display);
  font-size: 36px;
  margin: 0 0 18px;
}
.legal-back { margin: 0 0 8px; }
.legal-back a { color: var(--forest); font-weight: 800; font-size: 14px; }
.legal-page h1 { font-family: var(--display); font-size: 36px; }
.legal-page h2 { color: var(--forest); margin-top: 28px; }
.legal-page p, .legal-page li { line-height: 1.65; }

.checkout-trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.checkout-trust li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 8px 8px;
  background: rgba(31, 77, 56, .07);
  border: 1px solid rgba(31, 77, 56, .18);
  border-radius: 14px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}
@media (max-width: 400px) {
  .checkout-trust { grid-template-columns: 1fr; }
  .checkout-trust li { min-height: 44px; font-size: 14px; }
}

.woocommerce .col2-set,
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.woocommerce form .form-row,
.woocommerce .form-row {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce .form-row label {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.woocommerce .form-row .optional { font-weight: 600; color: var(--muted); }
.woocommerce .form-row input.input-text,
.woocommerce .form-row textarea,
.woocommerce .form-row select,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce .form-row .select2-container,
.woocommerce .form-row .select2-container .select2-selection {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 48px;
  box-sizing: border-box;
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  font-size: 16px !important;
  line-height: 1.3;
}
.woocommerce .form-row textarea { min-height: 88px; }
.woocommerce .form-row .select2-container { padding: 0 !important; }
.woocommerce .form-row .select2-container .select2-selection {
  height: 48px !important;
  padding: 8px 14px !important;
  display: flex !important;
  align-items: center;
}
.woocommerce .form-row .select2-selection__arrow { height: 46px !important; }
.woocommerce .form-row input[type="checkbox"],
.woocommerce .form-row input[type="radio"] {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin-right: 8px;
}
.woocommerce-shipping-fields .shipping_address { display: none; }
.woocommerce-shipping-fields:has(#ship-to-different-address-checkbox:checked) .shipping_address {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
#ship-to-different-address {
  font-family: var(--font);
  font-size: 16px;
  margin: 8px 0;
}
#ship-to-different-address label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}
.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: 12px 14px;
  margin: 0 0 14px;
}
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table .product-total {
  text-align: right;
  font-weight: 800;
}
.woocommerce-checkout-review-order { margin-top: 8px; }
.woocommerce table.shop_table .product-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.woocommerce table.shop_table .product-name .amount {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.woocommerce table.shop_table .product-total .amount {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.woocommerce table.shop_table .qty-box.checkout-qty {
  width: 132px;
  height: 40px;
  flex: none;
}
.woocommerce table.shop_table .checkout-qty input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
}

.wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px 14px;
  align-items: start;
  width: 100%;
}
.wc-block-components-order-summary-item__image {
  position: relative;
  width: 64px;
  grid-row: 1 / span 2;
}
.wc-block-components-order-summary-item__image img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}
.wc-block-components-order-summary-item__quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}
.wc-block-components-order-summary-item__quantity .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.wc-block-components-order-summary-item__description {
  min-width: 0;
}
.wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}
.wc-block-components-order-summary-item__individual-prices,
.wc-block-components-order-summary-item__description .wc-block-components-product-price,
.wc-block-components-order-summary-item__description .wc-block-components-product-price__value {
  display: none !important;
}
.wc-block-components-order-summary-item__total-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  text-align: right;
}
.wc-block-components-order-summary-item__total-price .wc-block-components-product-price,
.wc-block-components-order-summary-item__total-price .wc-block-formatted-money-amount {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}
.wc-block-components-product-details,
.wc-block-components-product-metadata {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
#payment .payment_methods { list-style: none; margin: 0; padding: 0; }
#payment .wc_payment_method {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 8px;
}
.woocommerce-checkout .button,
.woocommerce #place_order {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold)) !important;
  color: var(--ink) !important;
  font-weight: 800 !important;
  border: 0 !important;
  border-radius: 999px !important;
  height: 52px !important;
  width: 100% !important;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .drawer-panel {
    width: 100%;
    border-radius: 0;
  }
  .drawer-body { padding: 14px 16px calc(28px + env(safe-area-inset-bottom)); }
}

.sticky-buy { display: none; }

@media (min-width: 961px) {
  .trust,
  .pay-hint,
  .disclaimer,
  .legal-links { display: none; }
}

@media (max-width: 960px) {
  .topbar {
    position: sticky;
    grid-template-columns: auto 1fr;
    background: rgba(243, 238, 228, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0 14px;
    height: 60px;
  }
  .nav-left { display: none; }
  .brand { justify-self: start; }
  .brand-tag { display: none; }
  .brand-logo { height: 24px; max-width: 160px; }
  .nav-actions { justify-self: end; }

  .stage { min-height: 0; }
  .stage-bg {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .stage-bg img,
  .stage-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .stage-ui {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 16px 108px;
    gap: 14px;
    max-width: none;
  }
  .stage-product { display: none; }
  .stage-copy h1,
  .buy-card h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-cta .btn { width: 100%; min-width: 0; }
  .buy-card {
    max-width: none;
    background: #fff;
  }
  .product-shots { width: 100%; }
  .buy-row { grid-template-columns: 110px 1fr; }
  .sticky-buy {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(243, 238, 228, .94); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); gap: 10px;
  }
  .cookie {
    flex-direction: column; align-items: stretch;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}
