:root {
  --paper: #fbfaf9;
  --surface: #ffffff;
  --surface-soft: #f6f3f1;
  --ink: #18171a;
  --muted: #716e73;
  --muted-dark: #4f4b51;
  --line: #e8e1de;
  --rose: #c9967e;
  --rose-soft: #efe0d9;
  --rose-pale: #faf4f0;
  --rose-deep: #95614f;
  --rose-ink: #5f4035;
  --green: #22b96a;
  --green-dark: #16894e;
  --blue: #257fe0;
  --shell: min(1180px, calc(100% - 64px));
  --shadow-soft: 0 20px 60px rgba(35, 25, 30, 0.08);
  --shadow-button: 0 12px 28px rgba(34, 185, 106, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--rose);
  color: var(--ink);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.announcement-bar {
  min-height: 34px;
  background: var(--rose-pale);
  border-bottom: 1px solid #f1e2e6;
  color: var(--rose-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 34px;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 185, 106, 0.13);
}

.announcement-divider {
  width: 1px;
  height: 12px;
  background: #ddc4b8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(35, 25, 30, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #030303;
  box-shadow: 0 5px 15px rgba(26, 17, 21, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  overflow: hidden;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #bee9d2;
  border-radius: 999px;
  background: #f3fcf7;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  border-color: var(--green);
  background: #e8faef;
  transform: translateY(-1px);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 26px 0 22px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--rose-deep);
}

.breadcrumbs strong {
  color: var(--muted-dark);
  font-weight: 600;
}

.product-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(42px, 7vw, 94px);
  padding-bottom: 78px;
}

.product-gallery {
  min-width: 0;
}

.gallery-main {
  position: relative;
  aspect-ratio: 1 / 0.97;
  overflow: hidden;
  border: 1px solid #efeded;
  border-radius: 26px;
  background: #fafafa;
  outline: none;
  isolation: isolate;
  touch-action: pan-y;
}

.gallery-main:focus-visible {
  box-shadow: 0 0 0 4px rgba(228, 165, 184, 0.45);
}

.gallery-main::before {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 215, 222, 0.53), rgba(255, 255, 255, 0) 67%);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.gallery-stage {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 22px 46px 36px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 160ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-image.is-changing {
  opacity: 0.25;
  transform: scale(0.985);
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(24, 23, 26, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(32, 23, 27, 0.1);
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: var(--rose);
  color: var(--rose-deep);
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow-prev {
  left: 16px;
}

.gallery-arrow-next {
  right: 16px;
}

.gallery-counter {
  position: absolute;
  right: 20px;
  bottom: 19px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--muted);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.gallery-counter strong {
  color: var(--ink);
  font-size: 16px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  opacity: 0.76;
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: var(--rose);
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-thumb.is-active {
  border: 2px solid var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(228, 165, 184, 0.23);
  opacity: 1;
}

.product-info {
  padding-top: 26px;
}

.product-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-kicker span {
  padding: 0 5px;
  color: #c6bdc1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  font-weight: 700;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--rose-deep);
  font-style: normal;
}

.product-description {
  max-width: 490px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.variant-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 19px;
  border-bottom: 1px solid var(--line);
}

.variant-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.variant-label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-label strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.variant-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 4px 9px 4px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted-dark);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.variant-option:hover,
.variant-option:focus-visible {
  border-color: var(--rose);
  color: var(--ink);
  transform: translateY(-1px);
}

.variant-option.is-active {
  border-color: var(--rose-deep);
  background: var(--rose-pale);
  color: var(--rose-ink);
}

.variant-swatch {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(24, 23, 26, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.variant-swatch-black {
  background: #1b1b1c;
}

.variant-swatch-white {
  background: #f5f3f0;
}

.variant-swatch-purple {
  background: #6e4d70;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.price-label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.price sup,
.offer-price sup {
  position: relative;
  top: -0.48em;
  margin-left: 2px;
  font-size: 0.5em;
  letter-spacing: -0.02em;
}

.shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf9f2;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.shipping-check {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 10px;
}

.purchase-card {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #ece9e9;
  border-radius: 16px;
  background: #fdfdfd;
  box-shadow: 0 8px 24px rgba(35, 25, 30, 0.035);
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 2px 13px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 600;
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 185, 106, 0.13);
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 20px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  box-shadow: var(--shadow-button);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-button .whatsapp-icon {
  width: 21px;
  height: 21px;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 15px 30px rgba(34, 185, 106, 0.27);
  transform: translateY(-2px);
}

.button-arrow {
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.purchase-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.purchase-note a {
  color: var(--rose-deep);
  font-weight: 700;
}

.purchase-note a:hover,
.purchase-note a:focus-visible {
  text-decoration: underline;
}

.trust-list {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #e6d2c8;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-size: 16px;
  font-weight: 700;
}

.trust-item > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-item strong {
  font-size: 12px;
}

.trust-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.spec-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 27px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.spec-line span {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 0 13px;
  border-right: 1px solid var(--line);
}

.spec-line span:first-child {
  padding-left: 0;
}

.spec-line span:last-child {
  padding-right: 0;
  border-right: 0;
}

.spec-line strong {
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.benefits-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.benefit-item:first-child {
  padding-left: 0;
}

.benefit-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-number,
.feature-index {
  color: var(--rose);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-item strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.benefit-item div span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.features-section {
  padding: 114px 0 120px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  align-self: start;
  margin-top: 10px;
}

.section-heading h2,
.details-copy h2,
.included-copy h2,
.offer-copy h2,
.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4.15rem);
  font-weight: 700;
  line-height: 0.98;
}

.section-heading > p:last-child,
.included-copy > p:last-child,
.faq-heading > p:last-of-type {
  max-width: 260px;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.feature-card {
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(35, 25, 30, 0.025);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.feature-card-tall {
  grid-column: span 6;
}

.feature-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.feature-image {
  display: grid;
  aspect-ratio: 1.26 / 1;
  place-items: center;
  overflow: hidden;
  background: #f6f6f6;
}

.feature-card-tall .feature-image {
  aspect-ratio: 1.35 / 1;
}

.feature-image-white {
  background: #f8f8f8;
}

.feature-image-detail {
  background: #f1eef0;
}

.feature-image-screen {
  background: #f3efed;
}

.feature-image-lifestyle {
  background: #efe9e4;
}

.feature-image-lifestyle img {
  object-fit: cover;
  object-position: center;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-image-white img,
.feature-image-detail img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.feature-card:hover .feature-image img {
  transform: scale(1.035);
}

.feature-content {
  padding: 21px 22px 23px;
}

.feature-content h3 {
  margin: 11px 0 7px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.feature-content p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.details-section {
  overflow: hidden;
  padding: 100px 0;
  background: var(--rose-pale);
  border-top: 1px solid #eadbd5;
  border-bottom: 1px solid #eadbd5;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.details-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.details-visual-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 126, 0.36), rgba(255, 255, 255, 0) 70%);
}

.details-visual > img {
  position: relative;
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.floating-spec {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 107px;
  padding: 11px 14px;
  border: 1px solid #e7d0c7;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 12px 24px rgba(113, 56, 79, 0.1);
}

.floating-spec strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.floating-spec small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.floating-spec-top {
  top: 48px;
  right: 20px;
}

.floating-spec-bottom {
  bottom: 48px;
  left: 20px;
}

.details-copy {
  max-width: 510px;
}

.details-copy h2 {
  margin-bottom: 23px;
}

.details-intro {
  max-width: 450px;
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.detail-points {
  display: grid;
  gap: 17px;
}

.detail-points > div {
  display: flex;
  gap: 13px;
}

.point-mark {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.detail-points p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.detail-points strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.detail-points small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid var(--rose-deep);
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 700;
  transition: gap 160ms ease, color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 14px;
  color: var(--ink);
}

.included-section {
  padding: 100px 0;
  background: var(--surface);
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 80px;
}

.included-copy h2 {
  margin-bottom: 21px;
}

.included-copy > p:last-child {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.included-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 112px;
  padding: 20px 17px 20px 0;
  border-bottom: 1px solid var(--line);
}

.included-item:nth-child(odd) {
  margin-right: 24px;
  border-right: 1px solid var(--line);
}

.included-item:nth-child(even) {
  padding-left: 24px;
}

.included-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #e6d2c8;
  border-radius: 11px;
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-size: 18px;
}

.included-item span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.included-item strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.included-item small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.offer-section {
  padding: 0 0 105px;
  background: var(--surface);
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  min-height: 315px;
  padding: 55px 64px;
  border-radius: 24px;
  background: linear-gradient(115deg, #ead1c6 0%, #c9957f 50%, #f1e4df 100%);
  isolation: isolate;
}

.offer-card::after {
  position: absolute;
  right: 16%;
  bottom: -110px;
  width: 380px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
  z-index: -1;
}

.offer-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.offer-orb-one {
  top: -95px;
  right: 29%;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.22);
}

.offer-orb-two {
  right: -50px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(113, 56, 79, 0.13);
}

.offer-copy {
  max-width: 550px;
}

.offer-copy .eyebrow {
  color: var(--rose-ink);
}

.offer-copy h2 {
  margin-bottom: 18px;
}

.offer-copy h2 em {
  color: #fff;
  text-shadow: 0 1px 1px rgba(113, 56, 79, 0.15);
}

.offer-copy > p:last-child {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--rose-ink);
  font-size: 14px;
}

.offer-action {
  display: flex;
  min-width: 255px;
  flex-direction: column;
  align-items: stretch;
}

.offer-price {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.95;
  text-align: center;
}

.offer-meta {
  margin: 9px 0 17px;
  color: var(--rose-ink);
  font-size: 11px;
  text-align: center;
}

.primary-button-light {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 13px 27px rgba(113, 56, 79, 0.13);
  color: var(--green-dark);
}

.primary-button-light:hover,
.primary-button-light:focus-visible {
  border-color: #f8f8f8;
  background: #f8f8f8;
  box-shadow: 0 17px 32px rgba(113, 56, 79, 0.18);
  color: var(--green-dark);
}

.faq-section {
  padding: 105px 0 112px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-heading h2 {
  margin-bottom: 21px;
}

.faq-heading > p:last-of-type {
  margin-bottom: 0;
}

.faq-heading .text-link {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 16px 0;
  cursor: pointer;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d8c0b4;
  border-radius: 50%;
  color: var(--rose-deep);
  content: "+";
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--rose-deep);
}

.faq-item p {
  max-width: 610px;
  margin: -1px 48px 21px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer {
  padding: 36px 0 23px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding-bottom: 27px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-brand .brand-name {
  font-size: 12px;
}

.footer-brand .brand-tagline {
  font-size: 8px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.footer-contact {
  justify-self: end;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
}

.footer-contact:hover,
.footer-contact:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #9a9599;
  font-size: 10px;
}

.mobile-buy-bar {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(37, 127, 224, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 930px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    border-radius: 9px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--rose-pale);
  }

  .main-nav a::after {
    display: none;
  }

  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

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

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

  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
    gap: 40px;
  }

  h1 {
    font-size: clamp(2.8rem, 6vw, 4.7rem);
  }

  .benefit-item {
    padding-right: 14px;
    padding-left: 14px;
  }

  .benefit-item:first-child {
    padding-left: 0;
  }

  .benefit-item:last-child {
    padding-right: 0;
  }

  .section-heading {
    grid-template-columns: 0.8fr 1.3fr 0.9fr;
  }

  .feature-card-tall {
    grid-column: span 6;
  }

  .feature-card:not(.feature-card-tall) {
    grid-column: span 3;
  }

  .offer-card {
    padding: 48px;
  }

  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .product-layout,
  .details-layout,
  .included-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 27px;
  }

  .product-info {
    padding-top: 5px;
  }

  .product-description,
  .details-copy,
  .section-heading > p:last-child {
    max-width: 600px;
  }

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

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:last-child {
    padding: 17px 18px;
    border-right: 1px solid var(--line);
  }

  .benefit-item:nth-child(2n) {
    border-right: 0;
  }

  .benefit-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .features-section,
  .included-section,
  .faq-section {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .section-heading {
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
  }

  .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin: 0;
  }

  .section-heading > p:last-child {
    justify-self: end;
  }

  .feature-card-tall,
  .feature-card:not(.feature-card-tall) {
    grid-column: span 4;
  }

  .details-section {
    padding: 82px 0;
  }

  .details-layout {
    gap: 45px;
  }

  .details-visual {
    min-height: min(70vw, 500px);
  }

  .included-layout,
  .faq-layout {
    gap: 40px;
  }

  .included-copy > p:last-child,
  .faq-heading > p:last-of-type {
    max-width: 500px;
  }

  .offer-section {
    padding-bottom: 85px;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px;
  }

  .offer-action {
    width: min(100%, 320px);
  }

  .offer-price,
  .offer-meta {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
    padding-bottom: 72px;
  }

  .announcement-bar {
    font-size: 9px;
    letter-spacing: 0.055em;
  }

  .announcement-inner {
    gap: 8px;
    min-height: 31px;
    text-align: center;
  }

  .announcement-divider {
    height: 10px;
  }

  .announcement-item {
    gap: 5px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 67px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 12px;
  }

  .brand-tagline {
    max-width: 176px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
  }

  .main-nav {
    right: 16px;
    left: 16px;
  }

  .breadcrumbs {
    gap: 6px;
    padding: 17px 0 15px;
    font-size: 10px;
  }

  .product-layout {
    gap: 23px;
    padding-bottom: 48px;
  }

  .gallery-main {
    border-radius: 19px;
  }

  .gallery-stage {
    padding: 12px 31px 28px;
  }

  .gallery-badge {
    top: 13px;
    left: 13px;
    padding: 5px 8px;
    font-size: 8px;
  }

  .gallery-arrow {
    width: 33px;
    height: 33px;
    font-size: 16px;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .gallery-counter {
    right: 14px;
    bottom: 13px;
    font-size: 10px;
  }

  .gallery-counter strong {
    font-size: 13px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(6, minmax(48px, 1fr));
    gap: 6px;
    margin-top: 9px;
    overflow-x: auto;
    padding: 2px 1px 5px;
    scrollbar-width: none;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    min-width: 48px;
    border-radius: 9px;
  }

  .product-kicker,
  .eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .product-description {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .variant-selector {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding-bottom: 15px;
  }

  .variant-options {
    justify-content: flex-start;
  }

  .price-row {
    align-items: center;
    padding-bottom: 17px;
  }

  .price {
    font-size: 39px;
  }

  .shipping-pill {
    padding: 6px 8px;
    font-size: 9px;
  }

  .purchase-card {
    margin-top: 17px;
    padding: 13px;
    border-radius: 13px;
  }

  .availability {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .primary-button {
    min-height: 54px;
    padding: 14px 15px;
    font-size: 14px;
  }

  .purchase-note {
    font-size: 10px;
  }

  .trust-list {
    gap: 12px;
    margin-top: 20px;
  }

  .trust-icon {
    width: 27px;
    height: 27px;
  }

  .trust-item strong {
    font-size: 11px;
  }

  .trust-item small {
    font-size: 10px;
  }

  .spec-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 0;
    margin-top: 20px;
    padding-top: 15px;
  }

  .spec-line span,
  .spec-line span:first-child,
  .spec-line span:last-child {
    padding: 0 9px;
    border-right: 1px solid var(--line);
  }

  .spec-line span:nth-child(2n) {
    border-right: 0;
  }

  .spec-line span:nth-child(-n + 2) {
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line);
  }

  .spec-line span:nth-child(odd) {
    padding-left: 0;
  }

  .spec-line strong {
    font-size: 14px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:last-child {
    min-height: 88px;
    gap: 9px;
    padding: 14px 9px;
  }

  .benefit-item:nth-child(odd) {
    padding-left: 0;
  }

  .benefit-number {
    font-size: 10px;
  }

  .benefit-item strong {
    font-size: 11px;
  }

  .benefit-item div span {
    font-size: 9px;
  }

  .features-section,
  .included-section,
  .faq-section {
    padding-top: 65px;
    padding-bottom: 68px;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .details-copy h2,
  .included-copy h2,
  .offer-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .section-heading > p:last-child {
    max-width: 330px;
    margin-top: 18px;
    font-size: 13px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card-tall,
  .feature-card:not(.feature-card-tall) {
    grid-column: auto;
  }

  .feature-card-tall .feature-image,
  .feature-image {
    aspect-ratio: 1.42 / 1;
  }

  .feature-content {
    padding: 17px 17px 19px;
  }

  .feature-content h3 {
    margin: 8px 0 5px;
    font-size: 20px;
  }

  .feature-content p {
    font-size: 12px;
  }

  .details-section {
    padding: 65px 0;
  }

  .details-layout {
    gap: 30px;
  }

  .details-visual {
    min-height: 91vw;
    border-radius: 16px;
  }

  .floating-spec {
    min-width: 92px;
    padding: 9px 10px;
  }

  .floating-spec strong {
    font-size: 18px;
  }

  .floating-spec small {
    font-size: 9px;
  }

  .floating-spec-top {
    top: 20px;
    right: 10px;
  }

  .floating-spec-bottom {
    bottom: 20px;
    left: 10px;
  }

  .details-copy h2 {
    margin-bottom: 17px;
  }

  .details-intro {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .detail-points {
    gap: 14px;
  }

  .detail-points strong {
    font-size: 13px;
  }

  .detail-points small {
    font-size: 11px;
  }

  .text-link {
    margin-top: 23px;
    font-size: 12px;
  }

  .included-layout,
  .faq-layout {
    gap: 30px;
  }

  .included-copy h2 {
    margin-bottom: 16px;
  }

  .included-copy > p:last-child {
    font-size: 13px;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .included-item,
  .included-item:nth-child(odd),
  .included-item:nth-child(even) {
    min-height: 85px;
    margin: 0;
    padding: 15px 0;
    border-right: 0;
  }

  .included-item strong {
    font-size: 13px;
  }

  .included-item small {
    font-size: 10px;
  }

  .offer-section {
    padding-bottom: 65px;
  }

  .offer-card {
    min-height: 0;
    gap: 24px;
    padding: 31px 23px;
    border-radius: 18px;
  }

  .offer-copy h2 {
    margin-bottom: 13px;
  }

  .offer-copy > p:last-child {
    font-size: 13px;
  }

  .offer-action {
    width: 100%;
    min-width: 0;
  }

  .offer-price {
    font-size: 45px;
  }

  .offer-meta {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .faq-heading h2 {
    margin-bottom: 15px;
  }

  .faq-heading > p:last-of-type {
    font-size: 13px;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 13px 0;
    font-size: 14px;
  }

  .faq-item p {
    margin-right: 29px;
    margin-bottom: 17px;
    font-size: 12px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 23px;
  }

  .footer-inner > p {
    order: 3;
    font-size: 10px;
  }

  .footer-contact {
    font-size: 11px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 9px;
  }

  .mobile-buy-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 16px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 24px rgba(35, 25, 30, 0.08);
    backdrop-filter: blur(12px);
  }

  .mobile-buy-bar > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
  }

  .mobile-buy-bar > div span {
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-buy-bar > div strong {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 18px;
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .mobile-buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 45px;
    padding: 0 17px;
    border-radius: 9px;
    background: var(--green);
    box-shadow: var(--shadow-button);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-buy-button .whatsapp-icon {
    width: 17px;
    height: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
