/*
Theme Name: Pawresta
Theme URI: https://pawresta.com
Author: Pawresta
Description: A focused holiday pet-bed storefront for Pawresta.
Version: 1.1.0
Text Domain: pawresta
*/

:root {
  --page: #f3f5f1;
  --surface: #fbfcf9;
  --surface-strong: #ffffff;
  --ink: #17221d;
  --muted: #5d6a63;
  --line: #dbe1dc;
  --forest: #173f2f;
  --forest-2: #245a43;
  --holly: #a8333d;
  --holly-dark: #84252e;
  --gold: #d2aa59;
  --soft-red: #f4e8e8;
  --shadow: 0 24px 70px rgba(35, 67, 50, .13);
  --radius: 16px;
  --font: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid rgba(168, 51, 61, .38); outline-offset: 3px; }

.shell { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  background: var(--holly);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 249, .92);
  border-bottom: 1px solid rgba(219, 225, 220, .9);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
}
.brand-mark {
  position: relative;
  width: 28px;
  height: 24px;
  border-radius: 50% 50% 45% 45%;
  background: var(--forest);
  transform: rotate(-5deg) scale(.62);
  box-shadow:
    -18px -15px 0 -5px var(--forest),
    -5px -23px 0 -6px var(--forest),
    10px -21px 0 -6px var(--forest),
    20px -10px 0 -6px var(--forest);
}
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -5px;
  height: 2px;
  background: var(--holly);
  transition: right .25s ease;
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.account-link { color: var(--muted); font-size: 13px; font-weight: 750; white-space: nowrap; }
.account-link:hover { color: var(--ink); }
.search-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 13px;
  font-weight: 750;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open { display: grid; gap: 4px; }
.mobile-nav a { padding: 11px 0; font-weight: 700; }
.site-search {
  overflow: hidden;
  max-height: 0;
  border-top: 0 solid var(--line);
  background: var(--surface);
  opacity: 0;
  transition: max-height .3s cubic-bezier(.16,1,.3,1), opacity .2s ease, border-width .2s ease;
}
.site-search.is-open { max-height: 92px; border-top-width: 1px; opacity: 1; }
.site-search-inner { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding-block: 14px; }
.site-search input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
}
.site-search button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

.home-catalog { padding: 56px 0 92px; }
.home-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 66px;
  align-items: center;
}
.home-product-media {
  overflow: hidden;
  min-height: 640px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.home-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.home-product-media:hover img { transform: scale(1.025); }
.home-product-copy { max-width: 510px; }
.home-kicker { margin: 0 0 14px; color: var(--holly-dark); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.home-product-copy h1,
.offer-panel h2,
.shipping-copy h2,
.utility-heading h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.home-price { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; }
.home-price strong { font-size: 28px; }
.home-price s { color: var(--muted); }
.home-price span { color: var(--holly-dark); font-size: 13px; font-weight: 850; }
.home-description { max-width: 470px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 13px 25px;
  border: 0;
  border-radius: 999px;
  background: var(--holly);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.primary-link:hover { background: var(--holly-dark); box-shadow: 0 14px 30px rgba(168,51,61,.22); transform: translateY(-2px); }
.home-offer { padding: 0 0 100px; }
.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  padding: 54px;
  border-radius: var(--radius);
  background: var(--forest);
  color: #f4f8f5;
}
.offer-panel .home-kicker { color: #e7bfc2; }
.offer-panel h2 { max-width: 830px; font-size: clamp(38px, 5vw, 62px); }
.offer-panel .primary-link { margin: 0; }
.home-shipping { padding: 0 0 112px; }
.shipping-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.shipping-image { overflow: hidden; min-height: 590px; border-radius: var(--radius); }
.shipping-image img { width: 100%; height: 100%; object-fit: cover; }
.shipping-copy { max-width: 570px; }
.shipping-copy h2 { font-size: clamp(42px, 5vw, 66px); }
.shipping-copy p:not(.home-kicker) { color: var(--muted); font-size: 17px; }
.text-link { color: var(--holly-dark); font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }

.utility-page { min-height: 62vh; padding: 82px 0 112px; }
.utility-narrow { max-width: 820px; }
.utility-heading { max-width: 700px; margin-bottom: 42px; }
.utility-heading p:last-child { max-width: 620px; color: var(--muted); font-size: 17px; }
.contact-form,
.tracking-form,
.tracking-result {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}
.contact-form label,
.tracking-form label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 800; }
.contact-form label span { color: var(--muted); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input,
.contact-form textarea,
.tracking-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--page);
  color: var(--ink);
}
.contact-form textarea { min-height: 170px; resize: vertical; }
.contact-form .primary-link,
.tracking-form .primary-link { justify-self: start; margin-top: 2px; }
.form-honeypot { position: absolute; left: -9999px; }
.form-notice { margin-bottom: 20px; padding: 15px 18px; border-radius: 12px; font-weight: 700; }
.form-notice.is-success { background: #dcecdf; color: #173f2f; }
.form-notice.is-error { background: var(--soft-red); color: var(--holly-dark); }
.tracking-result h2 { margin: 0; font-size: clamp(32px, 5vw, 48px); line-height: 1; }
.tracking-label { margin: 0; color: var(--holly-dark); font-weight: 850; }
.tracking-result dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 8px 0; }
.tracking-result dl div { padding-top: 14px; border-top: 1px solid var(--line); }
.tracking-result dt { color: var(--muted); font-size: 12px; font-weight: 750; }
.tracking-result dd { margin: 3px 0 0; font-weight: 850; }
.utility-help { margin-top: 24px; color: var(--muted); }

.hero-product { padding: 42px 0 64px; }
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 54px;
  align-items: start;
}
.gallery { position: sticky; top: 122px; }
.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.sale-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--holly);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover, .thumb.is-active { border-color: var(--forest); }

.product-panel { padding-top: 5px; }
.order-signal { display: flex; align-items: center; gap: 9px; color: var(--holly-dark); font-size: 13px; font-weight: 750; }
.signal-pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--holly);
  box-shadow: 0 0 0 0 rgba(168, 51, 61, .45);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(168, 51, 61, 0); } 100% { box-shadow: 0 0 0 0 rgba(168, 51, 61, 0); } }
.product-title {
  max-width: 640px;
  margin: 14px 0 12px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
}
.rating { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.stars { color: var(--gold); letter-spacing: 2px; }
.price-line { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 4px; }
.price-current { font-size: 30px; font-weight: 900; letter-spacing: -.03em; }
.price-compare { color: var(--muted); text-decoration: line-through; }
.price-badge { padding: 5px 9px; border-radius: 999px; background: var(--soft-red); color: var(--holly-dark); font-size: 12px; font-weight: 850; }
.stock-note { margin: 8px 0 0; color: var(--holly-dark); font-size: 13px; font-weight: 750; }
.purchase-form { margin-top: 26px; }
.field-label { display: block; margin-bottom: 11px; font-size: 14px; font-weight: 850; }
.variant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.variant-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--ink);
  text-align: left;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.variant-card:hover { transform: translateY(-2px); }
.variant-card.is-active { border-color: var(--forest); box-shadow: 0 0 0 2px rgba(23, 63, 47, .12); }
.variant-card img { width: 54px; height: 54px; border-radius: 9px; object-fit: cover; background: #fff; }
.variant-card span { font-size: 12px; font-weight: 750; line-height: 1.25; }

.bundle-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}
.bundle-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.bundle-head strong { font-size: 15px; }
.bundle-head span { color: var(--holly-dark); font-size: 12px; font-weight: 850; }
.bundle-option {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 2px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}
.bundle-option input { width: 18px; height: 18px; accent-color: var(--forest); }
.bundle-option strong { display: block; font-size: 14px; }
.bundle-option small { display: block; color: var(--muted); }
.bundle-price { font-weight: 850; white-space: nowrap; }
.addons { margin-top: 18px; }
.addon-option {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.addon-option img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: #fff; }
.addon-copy strong { display: block; font-size: 13px; }
.addon-copy small { color: var(--muted); }
.switch { position: relative; width: 42px; height: 24px; }
.switch input { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.switch-track { position: absolute; inset: 0; border-radius: 999px; background: #cbd2cd; transition: background .2s ease; }
.switch-track { pointer-events: none; }
.switch-track::after { content: ""; position: absolute; width: 18px; height: 18px; top: 3px; left: 3px; border-radius: 50%; background: #fff; transition: transform .2s ease; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.switch input:checked + .switch-track { background: var(--forest); }
.switch input:checked + .switch-track::after { transform: translateX(18px); }
.buy-button {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--holly);
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px rgba(168, 51, 61, .23);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.buy-button:hover { background: var(--holly-dark); box-shadow: 0 18px 36px rgba(168, 51, 61, .3); transform: translateY(-2px); }
.buy-button:active { transform: translateY(1px) scale(.99); }
.buy-button[disabled] { cursor: wait; opacity: .65; }
.form-status { min-height: 24px; margin: 9px 0 0; color: var(--holly-dark); font-size: 13px; text-align: center; }
.checkout-notes { display: flex; justify-content: center; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 12px; }

.proof-strip { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.proof-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; text-align: center; }
.proof-main { font-size: 24px; font-weight: 850; letter-spacing: -.02em; }
.proof-detail { color: var(--muted); font-size: 13px; }
.proof-divider { width: 1px; height: 42px; background: var(--line); }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: 1.02; letter-spacing: -.05em; }
.section-heading p { max-width: 610px; margin: 18px auto 0; color: var(--muted); font-size: 17px; }
.customer-mosaic { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 16px; align-items: stretch; }
.mosaic-card { overflow: hidden; min-height: 520px; border-radius: var(--radius); background: var(--surface-strong); }
.mosaic-card:nth-child(2) { transform: translateY(24px); }
.mosaic-card img { width: 100%; height: 100%; object-fit: cover; }

.benefit-band { padding: 54px 0; background: var(--forest); color: #f8faf7; }
.benefit-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 0; }
.benefit-item { padding: 14px 34px; border-left: 1px solid rgba(255,255,255,.2); }
.benefit-item:first-child { border-left: 0; padding-left: 0; }
.benefit-item:last-child { padding-right: 0; }
.benefit-item strong { display: block; margin-bottom: 6px; font-size: 18px; }
.benefit-item p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

.story { padding: 112px 0; }
.story-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; }
.story-image { overflow: hidden; min-height: 700px; border-radius: var(--radius); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { max-width: 500px; }
.story-copy h2 { margin: 0 0 22px; font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -.05em; }
.story-copy p { color: var(--muted); font-size: 18px; }
.story-points { display: grid; gap: 16px; margin-top: 34px; }
.story-point { padding-top: 16px; border-top: 1px solid var(--line); }
.story-point strong { display: block; margin-bottom: 3px; }
.story-point span { color: var(--muted); font-size: 14px; }

.faq-section { padding: 96px 0; background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { margin: 0 0 16px; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -.05em; }
.faq-intro p { color: var(--muted); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--holly); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 680px; padding: 0 32px 24px 0; color: var(--muted); }

.reviews { padding: 108px 0; }
.review-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.review-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
}
.review-feature img { width: 100%; height: 100%; object-fit: cover; }
.review-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; }
.review-copy blockquote { margin: 0; font-size: 23px; line-height: 1.35; letter-spacing: -.02em; }
.review-copy cite { font-style: normal; color: rgba(255,255,255,.72); }
.review-stack { display: grid; gap: 18px; }
.review-small {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 206px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}
.review-small img { width: 100%; height: 100%; object-fit: cover; }
.review-small div { padding: 24px; }
.review-small blockquote { margin: 8px 0 16px; color: var(--muted); font-size: 14px; }
.review-small cite { font-style: normal; font-weight: 800; }

.final-cta { padding: 0 0 108px; }
.final-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  border-radius: var(--radius);
  background: var(--soft-red);
}
.final-copy { padding: 54px; }
.final-copy h2 { margin: 0 0 18px; font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -.05em; }
.final-copy p { max-width: 470px; color: var(--muted); }
.final-link { display: inline-flex; margin-top: 16px; padding: 14px 24px; border-radius: 999px; background: var(--holly); color: #fff; font-weight: 850; }
.final-image { align-self: stretch; }
.final-image img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { padding: 70px 0 30px; background: #13251d; color: #eff5f0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1.1fr; gap: 70px; }
.footer-brand .brand { justify-self: start; }
.footer-brand .brand-mark { background: #eff5f0; box-shadow: -18px -15px 0 -5px #eff5f0, -5px -23px 0 -6px #eff5f0, 10px -21px 0 -6px #eff5f0, 20px -10px 0 -6px #eff5f0; }
.footer-brand p { max-width: 360px; color: rgba(239,245,240,.65); }
.footer-links h3, .newsletter h3 { margin: 0 0 16px; font-size: 14px; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links a { color: rgba(239,245,240,.68); font-size: 14px; }
.newsletter p { color: rgba(239,245,240,.65); font-size: 14px; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; margin-top: 18px; }
.newsletter-form input { min-width: 0; min-height: 48px; padding: 0 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px 0 0 999px; background: rgba(255,255,255,.08); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.62); }
.newsletter-form button { min-height: 48px; padding: 0 18px; border: 0; border-radius: 0 999px 999px 0; background: var(--holly); color: #fff; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 64px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(239,245,240,.55); font-size: 12px; }

.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 18;
  width: min(620px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 17px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(19,37,29,.94);
  color: #fff;
  box-shadow: 0 20px 45px rgba(15,31,23,.28);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.sticky-buy.is-visible { transform: translate(-50%, 0); opacity: 1; }
.sticky-buy strong { display: block; font-size: 14px; }
.sticky-buy span { color: rgba(255,255,255,.66); font-size: 12px; }
.sticky-buy button { min-width: 155px; min-height: 46px; border: 0; border-radius: 999px; background: var(--holly); color: #fff; font-weight: 850; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.page-content { min-height: 60vh; padding: 72px 0 100px; }
.page-content article { max-width: 820px; margin: auto; }
.page-content h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -.05em; }
.woocommerce .button, .woocommerce button.button, .woocommerce input.button, .wc-block-components-button {
  border-radius: 999px !important;
  background: var(--forest) !important;
  color: #fff !important;
}
.woocommerce-info, .woocommerce-message { border-top-color: var(--forest); }

@media (prefers-color-scheme: dark) {
  :root {
    --page: #111713;
    --surface: #172019;
    --surface-strong: #1b251e;
    --ink: #edf3ee;
    --muted: #a9b7ae;
    --line: #344138;
    --soft-red: #342024;
    --shadow: 0 24px 70px rgba(0,0,0,.32);
  }
  .site-header { background: rgba(23,32,25,.92); }
  .gallery-main, .thumb img, .variant-card img, .addon-option img { background: #eef1ed; }
  .home-product-media { background: #eef1ed; }
  .newsletter-form input { color: #fff; }
  .form-notice.is-success { background: #233c2a; color: #dcecdf; }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; justify-self: start; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 38px; }
  .gallery { position: static; }
  .gallery-main { max-height: 720px; }
  .product-panel { max-width: 720px; margin-inline: auto; }
  .home-product-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .home-product-media { min-height: 500px; }
  .shipping-layout { gap: 38px; }
  .customer-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-card { min-height: 520px; }
  .mosaic-card:last-child { display: none; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-layout { gap: 44px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body.admin-bar .site-header { top: 46px; }
  .shell { width: min(100% - 28px, 1280px); }
  .announcement { min-height: 31px; font-size: 10px; }
  .site-header { backdrop-filter: blur(12px); }
  .header-inner { min-height: 62px; }
  .brand { font-size: 18px; gap: 6px; }
  .brand-mark { width: 24px; transform: rotate(-5deg) scale(.52); }
  .cart-link { min-height: 38px; padding: 0 10px; }
  .cart-label { display: none; }
  .account-link, .search-toggle { display: none; }
  .home-catalog { padding: 24px 0 70px; }
  .home-product-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-product-media { min-height: 0; aspect-ratio: 1; border-radius: 12px; }
  .home-product-copy h1 { font-size: 48px; }
  .home-offer { padding-bottom: 72px; }
  .offer-panel { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .offer-panel .primary-link { justify-self: start; }
  .home-shipping { padding-bottom: 76px; }
  .shipping-layout { grid-template-columns: 1fr; gap: 34px; }
  .shipping-image { min-height: 440px; }
  .utility-page { padding: 58px 0 78px; }
  .utility-heading { margin-bottom: 30px; }
  .utility-heading h1 { font-size: 48px; }
  .contact-form, .tracking-form, .tracking-result { padding: 23px 19px; }
  .form-row, .tracking-result dl { grid-template-columns: 1fr; }
  .hero-product { padding: 20px 0 44px; }
  .gallery-main { border-radius: 12px; box-shadow: 0 14px 38px rgba(35,67,50,.12); }
  .thumbs { gap: 7px; }
  .thumb { border-radius: 9px; }
  .product-title { font-size: clamp(38px, 12vw, 54px); }
  .variant-grid { grid-template-columns: 1fr; }
  .bundle-box { padding: 15px; }
  .checkout-notes { gap: 10px; flex-wrap: wrap; }
  .proof-inner { grid-template-columns: 1fr; gap: 6px; }
  .proof-divider { width: 46px; height: 1px; margin: 6px auto; }
  .section, .faq-section, .reviews { padding: 72px 0; }
  .section-heading { margin-bottom: 30px; text-align: left; }
  .section-heading h2 { font-size: 40px; }
  .section-heading p { margin-left: 0; }
  .customer-mosaic { grid-template-columns: 1fr; gap: 12px; }
  .mosaic-card { min-height: 450px; }
  .mosaic-card:nth-child(2) { transform: none; }
  .mosaic-card:last-child { display: block; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-item, .benefit-item:first-child, .benefit-item:last-child { padding: 20px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .benefit-item:first-child { border-top: 0; }
  .story { padding: 72px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 34px; }
  .story-image { min-height: 520px; }
  .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .faq-intro { position: static; }
  .review-feature { grid-template-columns: 1fr; }
  .review-feature img { max-height: 300px; }
  .review-copy { min-height: 330px; padding: 28px; }
  .review-small { grid-template-columns: 105px 1fr; }
  .review-small div { padding: 18px; }
  .final-cta { padding-bottom: 72px; }
  .final-card { grid-template-columns: 1fr; }
  .final-copy { padding: 34px 26px; }
  .final-image { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .newsletter { grid-column: auto; }
  .footer-bottom { flex-direction: column; margin-top: 44px; }
  .sticky-buy { bottom: 10px; }
  .sticky-buy button { min-width: 132px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--surface); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .sticky-buy { background: #13251d; backdrop-filter: none; }
}
