:root {
  --bone: #F7F3EE;
  --sand: #D7C1A7;
  --coffee: #432A19;
  --graphite: #2B2623;
  --clay: #A56150;
  --clay-dark: #82483B;
  --warm-white: #FFFCF8;
  --white: #FFFFFF;
  --muted: #756A63;
  --line: rgba(67, 42, 25, 0.14);
  --line-strong: rgba(67, 42, 25, 0.26);
  --shadow-sm: 0 8px 24px rgba(67, 42, 25, 0.08);
  --shadow-md: 0 18px 50px rgba(67, 42, 25, 0.13);
  --shadow-lg: 0 30px 90px rgba(43, 38, 35, 0.22);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --header-height: 76px;
  --transition: 200ms cubic-bezier(.2, .8, .2, 1);
  --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bone);
  color: var(--graphite);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-overlay-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button,
a,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(165, 97, 80, 0.42);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--coffee);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 7vw, 5.7rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
}

p {
  margin-bottom: 16px;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--coffee);
  color: var(--white);
  text-decoration: none;
  transition: transform var(--transition);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: 88px;
}

.section-pad--compact {
  padding-block: 60px;
}

section[id],
.builder-step[id] {
  scroll-margin-top: calc(var(--header-height) + 34px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.segment-chip,
.step-label,
.campaign-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-label {
  margin-bottom: 12px;
  background: rgba(165, 97, 80, 0.12);
  color: var(--clay-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(165, 97, 80, 0.22);
}

.button--primary:hover {
  background: var(--clay-dark);
  box-shadow: 0 14px 32px rgba(165, 97, 80, 0.3);
}

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--coffee);
}

.button--secondary:hover {
  border-color: var(--coffee);
  background: var(--warm-white);
}

.button--light {
  background: var(--warm-white);
  color: var(--coffee);
  box-shadow: var(--shadow-sm);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 13px;
  font-size: 0.9rem;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.utility-bar {
  position: relative;
  z-index: 102;
  background: var(--coffee);
  color: var(--white);
}

.utility-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 238, 0.88);
  backdrop-filter: blur(14px);
  transition: min-height var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 243, 238, 0.96);
  box-shadow: 0 8px 24px rgba(67, 42, 25, 0.06);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 128px;
  height: auto;
}

.campaign-label {
  min-height: 26px;
  padding: 5px 10px;
  background: rgba(165, 97, 80, 0.12);
  color: var(--clay-dark);
  font-size: 0.62rem;
}

.header-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  position: relative;
  color: var(--coffee);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-selection-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--warm-white);
  cursor: pointer;
  color: var(--coffee);
  font-size: 0.82rem;
  font-weight: 700;
}

.selection-count {
  display: inline-flex;
  min-width: 27px;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 193, 167, 0.52), transparent 33%),
    linear-gradient(180deg, var(--bone), #F1E9E0);
}

.hero__grid {
  display: grid;
  min-height: 650px;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.hero__copy .segment-chip {
  margin-bottom: 22px;
}

.hero__promo {
  display: flex;
  margin-bottom: 20px;
  align-items: baseline;
  gap: 10px;
  color: var(--clay-dark);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

.hero__promo strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__microcopy {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.campaign-ended-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(165, 97, 80, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  color: var(--coffee);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__media {
  position: relative;
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 32px;
  background: var(--warm-white);
  box-shadow: 0 34px 100px rgba(67, 42, 25, 0.19);
}

.hero-image-shell::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(43, 38, 35, 0.2));
  content: "";
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-image-note {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-image-note span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(43, 38, 35, 0.62);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.how {
  background: var(--warm-white);
}

.how-grid {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.how-card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bone);
}

.how-card__number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--white);
  font-weight: 800;
}

.how-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.how__cta {
  margin-top: 28px;
  text-align: center;
}

.builder {
  background: linear-gradient(180deg, #F1E9E0, var(--bone) 28%);
}

.builder-progress {
  position: sticky;
  z-index: 40;
  top: calc(var(--header-height) + 10px);
  display: flex;
  max-width: 780px;
  margin: 0 auto 36px;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(67, 42, 25, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.progress-step {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  transition: color var(--transition), background-color var(--transition);
}

.progress-step__number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--coffee);
}

.progress-step.is-active {
  background: rgba(165, 97, 80, 0.1);
  color: var(--clay-dark);
}

.progress-step.is-complete .progress-step__number,
.progress-step.is-active .progress-step__number {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.progress-line {
  width: clamp(18px, 5vw, 70px);
  height: 1px;
  background: var(--line-strong);
}

.builder-shell {
  display: grid;
  align-items: start;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
}

.builder-shell.has-selection {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.builder-main {
  min-width: 0;
}

.builder-step {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 248, 0.82);
  box-shadow: 0 12px 44px rgba(67, 42, 25, 0.06);
}

.builder-step + .builder-step,
.discount-activation + .builder-step,
.discount-restore-notice + .builder-step {
  margin-top: 28px;
}

.builder-step--complements.is-locked {
  border-color: rgba(67, 42, 25, 0.1);
}

.builder-step__head {
  display: flex;
  margin-bottom: 26px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.builder-step__head > div:first-child {
  max-width: 660px;
}

.builder-step__head h3 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.builder-step__head p {
  margin-bottom: 0;
  color: var(--muted);
}

.filter-chips {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.chip {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 650;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.chip:hover {
  border-color: var(--clay);
}

.chip.is-active {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.empty-grid {
  display: grid;
  min-height: 220px;
  padding: 32px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
  text-align: center;
  grid-column: 1 / -1;
}

.empty-grid p {
  margin-bottom: 12px;
}

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

.builder-shell.has-selection .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(67, 42, 25, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(165, 97, 80, 0.35);
  box-shadow: var(--shadow-sm);
}

.product-card.is-selected {
  border-color: var(--clay);
  box-shadow: 0 0 0 2px rgba(165, 97, 80, 0.13), var(--shadow-sm);
}

.product-card.is-locked {
  background: rgba(255, 255, 255, 0.84);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: #EFEAE4;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.image-fallback {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 28px;
  place-items: center;
  background: linear-gradient(135deg, var(--bone), var(--sand));
  color: var(--coffee);
  text-align: center;
}

.image-fallback img {
  width: min(140px, 50%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none !important;
}

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

.product-card__selected-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--coffee);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-card__body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card__meta {
  margin-bottom: 8px;
  color: var(--clay-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card__name {
  min-height: 2.5em;
  margin: 0 0 13px;
  font-size: 1.18rem;
}

.product-card__price-block {
  min-height: 72px;
  margin-bottom: 14px;
}

.price-regular {
  display: block;
  color: var(--coffee);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-old {
  display: inline-block;
  margin-right: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: line-through;
}

.price-promo {
  display: block;
  color: var(--clay-dark);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.price-note,
.promo-preview,
.savings-note {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.promo-preview strong {
  color: var(--clay-dark);
  font-size: 0.94rem;
}

.savings-note {
  color: var(--clay-dark);
  font-weight: 650;
}

.product-card__actions {
  display: grid;
  margin-top: auto;
  gap: 10px;
}

.product-card__actions .button {
  width: 100%;
  min-height: 48px;
  padding-inline: 14px;
  font-size: 0.84rem;
}

.text-action {
  min-height: 40px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(67, 42, 25, 0.28);
  text-underline-offset: 4px;
}

.text-action:hover {
  text-decoration-color: var(--coffee);
}

.quantity-stepper {
  display: grid;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--bone);
  grid-template-columns: 48px 1fr 48px;
}

.quantity-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--coffee);
  font-size: 1.25rem;
  font-weight: 700;
  transition: background-color var(--transition);
}

.quantity-button:hover {
  background: rgba(165, 97, 80, 0.1);
}

.quantity-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--coffee);
  font-weight: 750;
}

.discount-activation,
.discount-restore-notice {
  display: grid;
  margin-top: 28px;
  padding: 22px;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius-lg);
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.discount-activation {
  border: 1px solid rgba(165, 97, 80, 0.25);
  background: linear-gradient(135deg, rgba(165, 97, 80, 0.12), rgba(215, 193, 167, 0.22));
}

.discount-activation__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-weight: 800;
}

.discount-activation strong,
.discount-restore-notice strong {
  color: var(--coffee);
  font-size: 1.05rem;
}

.discount-activation p,
.discount-restore-notice p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.discount-restore-notice {
  border: 1px dashed var(--line-strong);
  background: var(--warm-white);
}

.desktop-summary {
  position: sticky;
  top: calc(var(--header-height) + 92px);
}

.summary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.summary-card__header {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line);
}

.summary-card__header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.summary-card__header h3 {
  margin-bottom: 5px;
}

.summary-card__items {
  max-height: min(50vh, 480px);
  padding: 6px 18px;
  overflow: auto;
}

.summary-group-label {
  margin: 14px 0 8px;
  color: var(--clay-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.summary-item {
  display: grid;
  padding: 14px 0;
  align-items: start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 58px minmax(0, 1fr);
}

.summary-item:last-child {
  border-bottom: 0;
}

.summary-item__image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--bone);
}

.summary-item__image img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.summary-item__name {
  margin: 0 0 2px;
  color: var(--coffee);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.summary-item__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.summary-item__prices strong {
  color: var(--clay-dark);
  font-size: 0.82rem;
}

.summary-item__controls {
  display: flex;
  margin-top: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.summary-mini-stepper {
  display: inline-grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  grid-template-columns: 32px 34px 32px;
}

.summary-mini-stepper button {
  min-height: 32px;
  border: 0;
  background: var(--bone);
  cursor: pointer;
}

.summary-mini-stepper span {
  display: grid;
  min-height: 32px;
  place-items: center;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.summary-remove {
  min-height: 32px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.68rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.summary-card__totals {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--bone);
}

.summary-total-row {
  display: flex;
  margin-bottom: 7px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

.summary-total-row strong {
  color: var(--coffee);
}

.summary-total-row--saving {
  color: var(--clay-dark);
  font-weight: 650;
}

.summary-total-row--grand {
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  color: var(--coffee);
  font-size: 0.95rem;
  font-weight: 700;
}

.summary-total-row--grand strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.summary-card__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.summary-card__recommendation {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(165, 97, 80, 0.09);
  color: var(--coffee);
  font-size: 0.74rem;
}

.summary-card__actions {
  display: grid;
  padding: 0 22px 22px;
  gap: 10px;
  background: var(--bone);
}

.summary-card__actions .button {
  width: 100%;
}

.editorial {
  background: var(--warm-white);
}

.editorial__grid {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
}

.editorial__media,
.editorial__secondary {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bone);
  box-shadow: var(--shadow-sm);
}

.editorial__media img,
.editorial__secondary img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.editorial__copy {
  padding: 24px;
}

.editorial__lead {
  color: var(--coffee);
  font-size: 1.15rem;
}

.editorial-list {
  display: grid;
  margin: 24px 0 28px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.editorial-list li {
  padding-left: 18px;
  border-left: 3px solid rgba(165, 97, 80, 0.35);
  color: var(--muted);
}

.editorial-list strong {
  color: var(--coffee);
}

.editorial__secondary {
  grid-column: 2;
  width: 72%;
  margin-top: -110px;
  margin-left: auto;
  border: 8px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}

.trust {
  background: var(--bone);
}

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

.trust-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
}

.trust-card__icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.conditions {
  background: #EEE2D6;
}

.conditions__inner {
  display: grid;
  padding: 34px;
  align-items: start;
  gap: 42px;
  border: 1px solid rgba(67, 42, 25, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 248, 0.72);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.conditions__inner h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.conditions__inner ul {
  display: grid;
  margin: 0;
  padding-left: 20px;
  gap: 10px;
  color: var(--graphite);
  font-size: 0.88rem;
}

.faq {
  background: var(--warm-white);
}

.faq__layout {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
}

.faq__layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

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

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

.faq-item summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  color: var(--coffee);
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--clay);
  content: "+";
  font-size: 1.45rem;
  font-weight: 500;
  transform: translateY(-50%);
}

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

.faq-item p {
  max-width: 720px;
  margin: 0;
  padding: 0 40px 22px 0;
  color: var(--muted);
}

.closing {
  background: var(--clay);
  color: var(--white);
}

.closing__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.closing h2,
.closing .eyebrow {
  color: var(--white);
}

.closing .eyebrow {
  opacity: 0.75;
}

.closing p {
  max-width: 720px;
  margin-bottom: 0;
  opacity: 0.9;
}

.site-footer {
  padding: 64px 0 26px;
  background: var(--coffee);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
}

.site-footer img {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 590px;
  font-size: 0.88rem;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
}

.mobile-selection-bar {
  display: none;
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 243, 238, 0.95);
  box-shadow: 0 -12px 32px rgba(67, 42, 25, 0.14);
  backdrop-filter: blur(14px);
}

.mobile-selection-bar__button {
  display: grid;
  width: min(100%, 680px);
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  background: var(--coffee);
  cursor: pointer;
  color: var(--white);
  text-align: left;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.mobile-selection-bar__button small {
  display: block;
  opacity: 0.68;
  font-size: 0.66rem;
}

.mobile-selection-bar__button strong {
  font-size: 1.02rem;
}

.mobile-selection-bar__saving {
  color: #F2C9BF;
  font-size: 0.7rem;
  font-weight: 650;
}

.mobile-selection-bar__cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--clay);
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 38, 35, 0.58);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity var(--transition);
}

.overlay__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  max-height: 100%;
  overflow: auto;
  background: var(--warm-white);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
}

.overlay.is-open .overlay__backdrop {
  opacity: 1;
}

.overlay.is-open .overlay__panel {
  transform: translateX(0);
}

.overlay__close {
  position: sticky;
  z-index: 5;
  top: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  margin: 14px 14px -60px auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.94);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--coffee);
  font-size: 1.8rem;
  line-height: 1;
  place-items: center;
  backdrop-filter: blur(10px);
}

.overlay__content {
  min-height: 100%;
}

.detail-view {
  padding: 22px 28px 36px;
}

.detail-view__eyebrow {
  margin-bottom: 8px;
  color: var(--clay-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-view__header {
  padding-right: 58px;
}

.detail-view__header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.detail-view__price {
  margin-bottom: 22px;
}

.detail-view__description {
  color: var(--muted);
}

.detail-gallery {
  margin: 24px 0;
}

.detail-gallery__main {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bone);
}

.detail-gallery__main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-gallery__main img.is-contain {
  padding: 12px;
  background: var(--bone);
  object-fit: contain;
}

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

.detail-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--bone);
  cursor: pointer;
}

.detail-thumb.is-active {
  border-color: var(--clay);
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-thumb span {
  position: absolute;
  inset: auto 2px 2px;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(43, 38, 35, 0.7);
  color: var(--white);
  font-size: 0.52rem;
  line-height: 1.2;
}

.detail-view__note {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bone);
  color: var(--muted);
  font-size: 0.82rem;
}

.detail-view__actions {
  display: grid;
  gap: 10px;
}

.detail-view__actions .button,
.detail-view__actions .quantity-stepper {
  width: 100%;
}

.selection-drawer {
  min-height: 100%;
  padding: 22px 22px 36px;
}

.selection-drawer .summary-card {
  border: 0;
  box-shadow: none;
}

.selection-drawer .summary-card__items {
  max-height: none;
}

.fallback-dialog {
  display: grid;
  min-height: 100%;
  padding: 80px 30px 40px;
  align-content: center;
}

.fallback-dialog__box {
  max-width: 560px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.fallback-dialog__box textarea {
  width: 100%;
  min-height: 220px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--bone);
  color: var(--graphite);
  resize: vertical;
}

.fallback-dialog__actions {
  display: grid;
  gap: 10px;
}

.toast-region {
  position: fixed;
  z-index: 1300;
  top: calc(var(--header-height) + 16px);
  right: 16px;
  display: grid;
  max-width: min(360px, calc(100vw - 32px));
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(43, 38, 35, 0.94);
  box-shadow: var(--shadow-md);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.noscript-message {
  position: fixed;
  z-index: 2000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border-radius: 12px;
  background: var(--coffee);
  color: var(--white);
  text-align: center;
}

body.is-campaign-expired .hero__promo,
body.is-campaign-expired .product-card__badge,
body.is-campaign-expired .savings-note,
body.is-campaign-expired .discount-activation,
body.is-campaign-expired .discount-restore-notice {
  display: none !important;
}

body.is-campaign-expired .price-old {
  display: none;
}

@media (max-width: 1180px) {
  .header-nav {
    gap: 16px;
  }

  .header-nav a {
    font-size: 0.78rem;
  }

  .builder-shell.has-selection {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .product-grid,
  .builder-shell.has-selection .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .section-pad {
    padding-block: 72px;
  }

  .section-pad--compact {
    padding-block: 52px;
  }

  .header-nav {
    display: none;
  }

  .campaign-label {
    margin-right: auto;
  }

  .hero__grid {
    min-height: auto;
    gap: 36px;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .builder-shell.has-selection {
    grid-template-columns: minmax(0, 1fr);
  }

  .desktop-summary {
    display: none !important;
  }

  .mobile-selection-bar:not([hidden]) {
    display: block;
  }

  body.has-mobile-selection {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

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

  .conditions__inner,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .faq__layout .section-heading {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding-block: 58px;
  }

  .section-pad--compact {
    padding-block: 44px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .site-header__inner {
    gap: 10px;
  }

  .brand-link img {
    width: 104px;
  }

  .campaign-label {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 0.55rem;
  }

  .header-selection-button {
    min-height: 40px;
    padding: 6px 8px 6px 12px;
  }

  .header-selection-button > span:first-child {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero__copy,
  .hero__media {
    width: 100%;
  }

  .hero__copy .segment-chip {
    margin-bottom: 18px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-image-shell {
    border-radius: 24px;
  }

  .hero-image-note {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .hero-image-note span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

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

  .how-card {
    display: grid;
    min-height: auto;
    padding: 22px;
    align-items: start;
    gap: 2px 16px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .how-card__number {
    width: 42px;
    height: 42px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .how-card h3 {
    margin-bottom: 4px;
  }

  .builder-progress {
    top: calc(var(--header-height) + 6px);
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 8px;
  }

  .progress-step {
    min-height: 38px;
    padding: 5px 7px;
    gap: 5px;
    font-size: 0.63rem;
  }

  .progress-step__number {
    width: 25px;
    height: 25px;
  }

  .progress-line {
    width: 12px;
  }

  .builder-step {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .builder-step__head {
    display: block;
    margin-bottom: 22px;
  }

  .filter-chips {
    margin-top: 18px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-chips::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
  }

  .product-grid,
  .builder-shell.has-selection .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
  }

  .product-card__media,
  .product-card__media img,
  .image-fallback {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .product-card__media img {
    height: 100%;
  }

  .product-card__body {
    min-height: 250px;
    padding: 16px;
  }

  .product-card__name {
    min-height: auto;
    font-size: 1.05rem;
  }

  .product-card__price-block {
    min-height: 62px;
  }

  .product-card__actions .button {
    min-height: 46px;
    font-size: 0.78rem;
  }

  .discount-activation,
  .discount-restore-notice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .discount-activation .button,
  .discount-restore-notice .button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .editorial__grid {
    display: flex;
    flex-direction: column;
  }

  .editorial__copy {
    order: 2;
    padding: 12px 4px;
  }

  .editorial__media {
    order: 1;
  }

  .editorial__secondary {
    order: 3;
    width: 76%;
    margin: -42px 0 0 auto;
  }

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

  .conditions__inner {
    padding: 24px 20px;
    gap: 24px;
  }

  .faq__layout {
    gap: 16px;
  }

  .faq-item summary {
    padding-block: 19px;
  }

  .closing__inner {
    display: grid;
  }

  .closing__inner .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }

  .overlay {
    align-items: flex-end;
  }

  .overlay__panel {
    width: 100%;
    max-height: 94dvh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .overlay[data-mode="primary"] .overlay__panel {
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .overlay.is-open .overlay__panel {
    transform: translateY(0);
  }

  .detail-view {
    padding: 18px 16px calc(30px + env(safe-area-inset-bottom));
  }

  .detail-view__header {
    padding-right: 50px;
  }

  .detail-gallery__thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .detail-thumb {
    flex: 0 0 76px;
  }

  .selection-drawer {
    padding: 18px 12px calc(26px + env(safe-area-inset-bottom));
  }

  .selection-drawer .summary-card__items {
    max-height: calc(100dvh - 360px);
  }

  .toast-region {
    top: calc(var(--header-height) + 10px);
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .product-card {
    grid-template-columns: 40% minmax(0, 1fr);
  }

  .product-card__body {
    min-height: 265px;
    padding: 14px 12px;
  }

  .product-card__meta {
    font-size: 0.62rem;
  }

  .price-regular,
  .price-promo {
    font-size: 1.18rem;
  }

  .product-card__selected-badge {
    top: 8px;
    right: 8px;
    min-width: 30px;
    height: 30px;
  }

  .product-card__badge {
    top: 8px;
    left: 8px;
    min-height: 26px;
    padding: 4px 8px;
    font-size: 0.62rem;
  }

  .mobile-selection-bar__button {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-selection-bar__saving {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
