:root {
  --cream: #fdf8f3;
  --white: #fff;
  --sand: #f5ede4;
  --coral: #ff6b5b;
  --coral-light: #ffe8e5;
  --sage: #7ba68c;
  --sage-light: #e8f2ec;
  --gold: #d4a853;
  --charcoal: #2c2a26;
  --slate: #5c574f;
  --muted: #9a948a;
  --border: rgba(44, 42, 38, 0.08);
  --shadow-sm: 0 2px 12px rgba(44, 42, 38, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 42, 38, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 42, 38, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: Outfit, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--body);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
.container { width: min(1200px, 92vw); margin-inline: auto; }

.social-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  padding: 7px 0;
}
.social-ticker__track {
  display: inline-flex;
  gap: 48px;
  padding-left: 100%;
  animation: ticker 30s linear infinite;
}
.social-ticker__track span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--sage);
  vertical-align: 1px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.announcement {
  padding: 10px 16px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--coral), #ff8a7a 52%, var(--gold));
  font-size: 13px;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(16px);
}
.header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.logo__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--gold));
  font-family: var(--display);
  font-size: 22px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition);
}
.nav a:hover { color: var(--coral); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.locale {
  width: 116px;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  padding: 0 14px;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--charcoal);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn--small { min-height: 38px; padding-inline: 16px; background: var(--charcoal); color: var(--white); font-size: 13px; }
.btn--lg { min-height: 52px; padding-inline: 28px; }

.hero-carousel {
  position: relative;
  min-height: 560px;
  height: min(88vh, 720px);
  overflow: hidden;
  background: var(--sand);
}
.hero-carousel__slides,
.hero-carousel__slide,
.hero-carousel__overlay { position: absolute; inset: 0; }
.hero-carousel__slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.4s ease;
}
.hero-carousel__slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel__overlay {
  z-index: 2;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, rgba(253, 248, 243, 0.96), rgba(253, 248, 243, 0.72) 45%, rgba(253, 248, 243, 0.16));
}
.hero-carousel__content { max-width: 560px; }
.hero-carousel__tag,
.section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
}
h1 { font-size: clamp(46px, 7vw, 84px); }
h2 { font-size: clamp(32px, 4.6vw, 56px); }
html[lang="en"] h1,
html[lang="de"] h1,
html[lang="fr"] h1,
html[lang="es"] h1,
html[lang="pt"] h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.08;
}
html[lang="en"] h2,
html[lang="de"] h2,
html[lang="fr"] h2,
html[lang="es"] h2,
html[lang="pt"] h2 {
  font-size: clamp(28px, 3.7vw, 44px);
  line-height: 1.12;
}
html[lang="en"] .hero-carousel__content,
html[lang="de"] .hero-carousel__content,
html[lang="fr"] .hero-carousel__content,
html[lang="es"] .hero-carousel__content,
html[lang="pt"] .hero-carousel__content {
  max-width: 640px;
}
.hero-carousel__subtitle {
  max-width: 500px;
  margin: 20px 0;
  color: var(--slate);
  font-size: 17px;
}
.hero-carousel__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-carousel__price {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
}
.hero-carousel__original {
  color: var(--muted);
  text-decoration: line-through;
}
.hero-carousel__discount {
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
  font-weight: 800;
  font-size: 12px;
}
.hero-carousel__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-carousel__timer {
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}
.hero-carousel__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-carousel__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  color: var(--charcoal);
  font-size: 30px;
  cursor: pointer;
}
.hero-carousel__dots { display: flex; gap: 8px; }
.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(44, 42, 38, 0.25);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}
.hero-carousel__dot.active { width: 28px; background: var(--coral); }

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-bar article {
  padding: 22px 18px;
  border-right: 1px solid var(--border);
}
.trust-bar article:last-child { border-right: 0; }
.trust-bar strong { display: block; margin-bottom: 4px; }
.trust-bar span { color: var(--muted); font-size: 13px; }

.purchased-stats {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--white), var(--sage-light));
}
.purchased-stats__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}
.purchased-stats__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.purchased-stats__cards article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.purchased-stats__cards strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}
.purchased-stats__cards span { color: var(--muted); font-size: 13px; }

.section { padding: 88px 0; }
.section--alt { background: var(--white); }
.section__header { max-width: 620px; margin-bottom: 44px; }
.section__header--center { margin-inline: auto; text-align: center; }
.section__header p { margin-top: 12px; color: var(--slate); }

.room-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: center;
}
.room-explorer img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.room-explorer__copy p { margin-top: 18px; color: var(--slate); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__badge,
.product-card__quick {
  position: absolute;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.product-card__badge {
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--charcoal);
  padding: 5px 10px;
}
.product-card__badge.hot { background: var(--coral); color: var(--white); }
.product-card__quick {
  right: 14px;
  bottom: 14px;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
}
.product-card__body { padding: 20px; }
.product-card__category {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-card__sku,
.preview-modal__sku {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card__sku { margin-top: 6px; }
.product-card__name {
  min-height: 68px;
  margin: 6px 0 12px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.15;
}
.product-card__price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product-card__price { color: var(--coral); font-size: 18px; font-weight: 900; }
.product-card__original { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.product-card__rating { margin-top: 10px; color: var(--gold); font-size: 13px; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.collection-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(44,42,38,.76));
}
.collection-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}
.collection-card span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; opacity: .82; }
.collection-card strong { display: block; font-family: var(--display); font-size: 30px; }

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}
.about-split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-split__copy p { margin: 18px 0; color: var(--slate); }
.check-list { display: grid; gap: 12px; list-style: none; }
.check-list li {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--sage-light);
  color: var(--slate);
}

.cta-banner {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cta-banner span { color: var(--coral); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.cta-banner h2 { max-width: 760px; }

.footer {
  padding: 58px 0 24px;
  background: var(--charcoal);
  color: rgba(255,255,255,.76);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .6fr));
  gap: 32px;
}
.footer__logo { color: var(--white); margin-bottom: 16px; }
.footer p { max-width: 320px; }
.footer h3 { margin-bottom: 12px; color: var(--white); font-size: 15px; }
.footer a { display: block; margin-bottom: 8px; }
.region-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 0 14px;
}
.region-select option { color: var(--charcoal); }
.footer .country-picker-host {
  --country-picker-height: 44px;
  --country-picker-radius: 999px;
  --country-picker-bg: rgba(255,255,255,.08);
  --country-picker-text: var(--white);
  --country-picker-border: rgba(255,255,255,.15);
  --country-picker-focus: rgba(255,255,255,.5);
  --country-picker-dropdown-bg: var(--white);
  --country-picker-dropdown-text: var(--charcoal);
  --country-picker-search-bg: #f6f1eb;
  --country-picker-placeholder: rgba(255,255,255,.7);
  --country-picker-muted: rgba(255,255,255,.62);
  --country-picker-highlight: #f1e8df;
  --country-picker-shadow: rgba(0,0,0,.32);
}
.footer .country-picker-host .choices__list--dropdown,
.footer .country-picker-host .choices__list[aria-expanded] {
  --country-picker-placeholder: #6e645d;
  --country-picker-muted: #6e645d;
}
.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
}

.quiz-pill {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(120%);
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 0 18px;
  cursor: pointer;
  transition: transform var(--transition);
}
.quiz-pill.visible { transform: translateX(-50%) translateY(0); }
.quiz-pill span { color: var(--charcoal); font-weight: 800; }
.quiz-pill strong { color: var(--coral); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(44,42,38,.55);
  backdrop-filter: blur(6px);
}
.modal-overlay[hidden] { display: none; }
.preview-modal,
.quiz-modal {
  position: relative;
  width: min(860px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.preview-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--sand);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 22px;
}
.preview-modal__image { background: var(--sand); }
.preview-modal__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.preview-modal__body { padding: 48px 34px 34px; }
.preview-modal__body span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.preview-modal__sku { margin: 6px 0 8px; }
.preview-modal__body h2 { margin: 8px 0 14px; font-size: 40px; }
html[lang="en"] .preview-modal__body h2,
html[lang="de"] .preview-modal__body h2,
html[lang="fr"] .preview-modal__body h2,
html[lang="es"] .preview-modal__body h2,
html[lang="pt"] .preview-modal__body h2 {
  font-size: 32px;
  line-height: 1.12;
}
.preview-modal__price {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 26px;
  font-weight: 900;
}
.preview-modal__body p { margin-bottom: 22px; color: var(--slate); }

.quiz-modal { width: min(540px, 100%); padding: 30px; }
.quiz-options {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.quiz-options button {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 15px;
  text-align: left;
  cursor: pointer;
  color: var(--charcoal);
}
.quiz-options button:hover { border-color: var(--coral); background: var(--coral-light); }
.quiz-result {
  border-radius: var(--radius);
  background: var(--sage-light);
  padding: 16px;
  color: var(--slate);
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 10px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; border-radius: 12px; }
  .nav a:hover { background: var(--sand); }
  .menu-toggle { display: grid; }
  .header__actions .btn--small { display: none; }
  .hero-carousel__overlay { align-items: end; padding-bottom: 82px; background: linear-gradient(to top, rgba(253,248,243,.98), rgba(253,248,243,.72) 58%, rgba(253,248,243,.1)); }
  .trust-bar__grid,
  .product-grid,
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .purchased-stats__inner,
  .room-explorer,
  .about-split,
  .cta-banner__inner,
  .footer__grid { grid-template-columns: 1fr; }
  .preview-modal { grid-template-columns: 1fr; }
  .preview-modal__image img { min-height: 320px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1200px); }
  .header__inner { min-height: 64px; }
  .locale { width: 96px; padding-inline: 10px; }
  .hero-carousel { min-height: 620px; height: auto; }
  h1 { font-size: 44px; }
  html[lang="en"] h1,
  html[lang="de"] h1,
  html[lang="fr"] h1,
  html[lang="es"] h1,
  html[lang="pt"] h1 {
    font-size: 34px;
  }
  html[lang="en"] h2,
  html[lang="de"] h2,
  html[lang="fr"] h2,
  html[lang="es"] h2,
  html[lang="pt"] h2 {
    font-size: 28px;
  }
  .hero-carousel__price { font-size: 30px; }
  .hero-carousel__cta .btn { width: 100%; }
  .trust-bar__grid,
  .product-grid,
  .collection-grid,
  .purchased-stats__cards { grid-template-columns: 1fr; }
  .trust-bar article { border-right: 0; border-bottom: 1px solid var(--border); }
  .section { padding: 66px 0; }
  .collection-card { min-height: 260px; }
  .quiz-pill {
    width: calc(100% - 32px);
    justify-content: space-between;
  }
  .preview-modal__body, .quiz-modal { padding: 34px 22px 24px; }
  .preview-modal__body h2 { font-size: 34px; }
  html[lang="en"] .preview-modal__body h2,
  html[lang="de"] .preview-modal__body h2,
  html[lang="fr"] .preview-modal__body h2,
  html[lang="es"] .preview-modal__body h2,
  html[lang="pt"] .preview-modal__body h2 {
    font-size: 28px;
  }
}
