/* === ESTIKA HOMEPAGE === */
:root {
  --bg: #FAF7F2;
  --bg-soft: #F2ECE2;
  --bg-warm: #EEE6D8;
  --ink: #1C1814;
  --ink-2: #4A413A;
  --ink-3: #897E72;
  --line: #E5DFD3;
  --line-2: #DCD3C2;
  --accent: #8C6E50;
  --accent-deep: #6A5238;
  --gold: #C9A56B;
  --leaf: #4F6B53;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(28,24,20,.04), 0 2px 8px rgba(28,24,20,.04);
  --shadow-md: 0 4px 16px rgba(28,24,20,.06), 0 1px 3px rgba(28,24,20,.04);
  --shadow-lg: 0 20px 48px -16px rgba(28,24,20,.18), 0 4px 12px rgba(28,24,20,.06);
  --r: 4px;
  --r-lg: 8px;
  --r-xl: 14px;
  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.85); }

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.muted { color: var(--ink-3); }

/* === TOPBAR === */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}
.topbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar__msgs {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__msgs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__msgs .dot { opacity: .4; }
.topbar__lang {
  display: flex;
  gap: 2px;
  align-items: center;
}
.lang {
  background: none;
  border: 1px solid transparent;
  color: rgba(255,255,255,.65);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 2px;
}
.lang.active {
  color: #fff;
  border-color: rgba(255,255,255,.2);
}

/* === HEADER === */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo__mark { color: var(--accent); display: flex; }
.logo__type {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .22em;
}
.logo__dot { color: var(--accent); }
.logo__sub { font-weight: 400; letter-spacing: .12em; font-size: 13px; color: var(--ink-3); }

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 40px;
  padding: 4px 4px 4px 18px;
  color: var(--ink-3);
  transition: border-color .2s;
}
.search:focus-within { border-color: var(--accent); }
.search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
}
.search input::placeholder { color: var(--ink-3); }
.search__btn {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

.header__actions {
  display: flex;
  gap: 4px;
}
.iconbtn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  gap: 2px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--r);
  transition: color .15s;
}
.iconbtn:hover { color: var(--accent); }
.iconbtn .badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  letter-spacing: 0;
}
.iconbtn .badge--accent { background: var(--accent); }

/* === PRIMARY NAV === */
.primarynav {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.primarynav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.primarynav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
  align-items: center;
}
.primarynav li { position: relative; }
.primarynav li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  transition: color .15s;
}
.primarynav li a:hover { color: var(--accent); }
.primarynav__hot a {
  color: var(--accent) !important;
}
.primarynav__hot svg { color: var(--gold); }

.primarynav__divider {
  width: 1px;
  height: 18px;
  background: var(--line-2);
  margin: 0 6px;
}

.primarynav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.primarynav__phone svg { color: var(--accent); }

/* Mega menu */
.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega {
  position: absolute;
  top: 100%;
  left: -32px;
  width: 880px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 60;
}
.mega__eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.mega__col h4 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}
.mega__col p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.mega__cta {
  display: inline-block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.mega__card { padding: 0 !important; display: block !important; }
.mega__card .mega__img {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: var(--r);
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
}
.mega__img--standard {
  background-image: linear-gradient(180deg, transparent 0%, transparent 100%),
    repeating-linear-gradient(0deg, #E8DECB 0 4px, #DBCFB6 4px 8px);
}
.mega__img--dark {
  background-image: repeating-linear-gradient(0deg, #524C44 0 4px, #3F3A33 4px 8px);
}
.mega__img--honeycomb {
  background-color: #DBD3C0;
  background-image: 
    radial-gradient(circle at 25% 25%, #C8BFA8 2px, transparent 3px),
    radial-gradient(circle at 75% 75%, #C8BFA8 2px, transparent 3px);
  background-size: 14px 14px;
}
.mega__meta h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
}
.mega__meta p {
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-deep); }
.btn--primary span { transition: transform .2s; }
.btn--primary:hover span { transform: translateX(3px); }
.btn--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--bg-warm); }

/* === HERO === */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: var(--bg-warm);
}
.hero__slides {
  position: relative;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #ddd0b8;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero__slide.active .hero__bg { transform: scale(1.08); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,24,20,.55) 0%, rgba(28,24,20,.25) 45%, transparent 70%);
}
.hero__copy {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  color: #fff;
}
.hero__copy > * {
  max-width: 580px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.08);
}
.hero h1 {
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: 22px;
}
.hero h1 em {
  color: #fff;
  opacity: .92;
  font-weight: 400;
}
.hero__copy p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 28px;
  opacity: .92;
  font-weight: 400;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__ctas .btn--primary {
  background: #fff;
  color: var(--ink);
}
.hero__ctas .btn--primary:hover { background: var(--accent); color: #fff; }
.hero__ctas .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero__chips {
  display: flex;
  gap: 22px;
  font-size: 13px;
  opacity: .88;
}
.hero__chips strong { font-weight: 700; }

.hero__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  z-index: 5;
  transition: background .2s;
}
.hero__arrow:hover { background: rgba(255,255,255,.25); }
.hero__arrow--prev { left: 32px; }
.hero__arrow--next { right: 32px; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}
.hero__dots .dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: all .2s;
}
.hero__dots .dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.hero__dots .dot.active {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-color: transparent;
}
.hero__dots .dot.active span { background: var(--accent); }
.hero__dots .dot i { font-style: normal; }

/* === TRUST === */
.trust {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.trust__item svg { color: var(--accent); flex-shrink: 0; }
.trust__item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.trust__item span { font-size: 12.5px; color: var(--ink-3); }

/* === SECTION HEAD === */
.section__head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.section__head h2 {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-family: var(--serif);
  max-width: 600px;
}
.section__see {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  white-space: nowrap;
}
.section__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.carousel-controls { display: flex; gap: 6px; }
.cbtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all .15s;
}
.cbtn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* === CATEGORY GRID === */
.cats {}
.cats__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s;
  display: block;
}
.cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.cat__img {
  aspect-ratio: 4/3;
  background-color: var(--bg-warm);
  background-size: cover;
  background-position: center;
}
.cat__body {
  padding: 14px 16px 18px;
}
.cat__body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cat__body p {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--ink-3);
}
.cat__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* === BESTSELLERS / PRODUCT GRID === */
.bestsellers {}
.products {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.product__visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-warm);
  overflow: hidden;
}
.product__window {
  position: absolute;
  inset: 18% 22%;
  background: linear-gradient(180deg, #B5D4E5 0%, #E8EFF3 100%);
  border: 6px solid #fff;
  border-radius: 2px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
}
.product__window::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.4) 0%, transparent 40%);
}
.product__blind {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: var(--fab, #DDD);
  background-image: repeating-linear-gradient(180deg, var(--fab, #DDD) 0px, var(--fab, #DDD) 5px, rgba(0,0,0,.05) 5px, rgba(0,0,0,.05) 6px);
  box-shadow: 0 2px 6px rgba(0,0,0,.12), inset 0 -1px 2px rgba(0,0,0,.08);
}
.product__blind::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0,0,0,.15);
}
.product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 2;
}
.product__badge--sale { background: var(--accent); }
.product__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  z-index: 2;
  transition: color .15s;
}
.product__fav:hover { color: var(--accent); }

.product__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product__cat {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}
.product__name {
  font-size: 15.5px;
  font-weight: 600;
  margin: 2px 0 6px;
  line-height: 1.3;
}
.product__swatches {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.product__swatches i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  display: block;
}
.product__swatches em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-3);
  margin-left: 4px;
  align-self: center;
}
.product__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.product__rating svg { color: var(--gold); }
.product__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 4px;
}
.product__price b {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.product__price s {
  display: block;
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: -2px;
}
.product__price small {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
}
.product__add {
  background: var(--bg-soft);
  border: 0;
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .15s;
}
.product__add:hover { background: var(--ink); color: #fff; }

/* === PROMO GRID === */
.promo {
  max-width: 1440px;
  margin: 80px auto 0;
  padding: 0 32px;
}
.promo__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  grid-template-rows: 440px;
  gap: 16px;
}
.promo__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-warm);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: #fff;
  transition: transform .3s;
}
.promo__card:hover { transform: scale(1.005); }
.promo__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,24,20,.7) 0%, rgba(28,24,20,.1) 60%, transparent 100%);
}
.promo__copy {
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.promo__copy h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 8px;
}
.promo__copy h3 em { color: var(--gold); font-style: italic; }
.promo__copy p {
  font-size: 13.5px;
  opacity: .92;
  margin: 0 0 18px;
  max-width: 300px;
}
.promo__card--tall .promo__copy h3 { font-size: 28px; }

/* === CONFIGURATOR === */
.configurator {
  margin-top: 100px;
  background: var(--bg-soft);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.configurator::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(140,110,80,.06) 0%, transparent 50%);
  pointer-events: none;
}
.configurator__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.configurator__copy h2 {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.steps b {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  align-self: center;
}
.steps span {
  font-weight: 700;
  font-size: 16px;
}
.steps em {
  font-style: normal;
  color: var(--ink-3);
  font-size: 13.5px;
  grid-column: 2;
}

/* configurator preview card */
.cfg-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.cfg-card__win {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #B5D4E5 0%, #E5EEF3 60%, #DCE5E8 100%);
  padding: 18px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cfg-card__win::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 8px solid #fff;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  pointer-events: none;
}
.cfg-blind {
  margin-top: 26px;
  background: var(--cfg-c, #F2EBDC);
  background-image: repeating-linear-gradient(180deg, transparent 0px, transparent 5px, rgba(0,0,0,.06) 5px, rgba(0,0,0,.06) 6px);
  width: var(--cfg-w, 70%);
  height: var(--cfg-h, 65%);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}
.cfg-card__panel {
  padding: 22px 24px 24px;
  background: #fff;
}
.cfg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 14px 0 8px;
}
.cfg-row:first-child { margin-top: 0; }
.cfg-row strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.cfg-card__panel input[type="range"] {
  width: 100%;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  outline: 0;
}
.cfg-card__panel input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(140,110,80,.4);
}
.cfg-card__panel input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.cfg-swatches {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.sw {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: all .15s;
}
.sw:hover { transform: scale(1.08); }
.sw.active { box-shadow: 0 0 0 2px var(--accent); }
.cfg-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cfg-foot > div:first-child span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
}
.cfg-foot strong {
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
  display: block;
}
.cfg-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
}
.cfg-price b {
  font-family: var(--sans);
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 2px;
}

/* === BLOG === */
.blog__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 18px;
}
.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.post:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.post__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.post__img--1 { 
  background-color: #E8E0D0;
  background-image: 
    linear-gradient(135deg, rgba(140,110,80,.2) 0%, transparent 60%),
    repeating-linear-gradient(0deg, #DDD2BB 0 8px, #D2C5A8 8px 16px);
}
.post__img--2 { 
  background-color: #D4DCD7;
  background-image: 
    linear-gradient(180deg, rgba(255,255,255,.4) 0%, transparent 40%),
    repeating-linear-gradient(180deg, #C0CFC4 0 6px, #ADBEB1 6px 12px);
}
.post__img--3 {
  background-color: #DBC8B0;
  background-image: 
    linear-gradient(135deg, rgba(255,255,255,.3) 0%, transparent 50%),
    repeating-linear-gradient(0deg, #CDB89C 0 7px, #BCA785 7px 14px);
}
.post__img--4 {
  background-color: #E5DDC6;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(140,110,80,.15) 0%, transparent 50%),
    repeating-linear-gradient(0deg, #D8CCB0 0 5px, #C9BB9A 5px 10px);
}
.post--feature {
  grid-row: span 1;
}
.post--feature .post__img { aspect-ratio: 16/10; }
.post--feature .post__body { padding: 24px 26px 28px; }
.post--feature h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
  margin: 6px 0 10px;
}
.post--feature h3 em { color: var(--accent); font-style: italic; }
.post--feature p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.post__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post__tag {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.post h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0 auto;
}
.post__date {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 12px;
}

/* === REVIEWS === */
.reviews {
  margin-top: 100px;
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.reviews__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.reviews__head {
  text-align: center;
  margin-bottom: 48px;
}
.reviews__head .eyebrow { color: var(--gold); }
.reviews__head h2 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.reviews__head h2 em { color: var(--gold); }
.reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.stars { display: inline-flex; gap: 2px; }
.reviews__score strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: #fff;
  font-weight: 500;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  margin: 0;
  padding: 28px 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
}
.review blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(255,255,255,.94);
  font-weight: 400;
}
.review figcaption {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.review figcaption strong {
  color: #fff;
  font-weight: 700;
  font-style: normal;
}

/* === NEWSLETTER === */
.newsletter {
  background: var(--bg-soft);
  padding: 80px 0;
}
.newsletter__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter__copy h2 {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.newsletter__copy p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 440px;
  margin: 0;
}
.newsletter__form {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.newsletter__form label span {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter__form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  font-size: 18px;
  font-family: inherit;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.newsletter__form input:focus { border-color: var(--accent); }
.newsletter__form button {
  margin-top: 18px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
}
.newsletter__form button:hover { background: var(--accent-deep); }
.newsletter__consent {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.newsletter__consent a { color: var(--accent); border-bottom: 1px solid currentColor; }
.newsletter__ok {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--r-lg);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  padding: 32px;
  text-align: center;
}
.newsletter__form.ok .newsletter__ok { display: flex; }

/* === FOOTER === */
.footer {
  background: #15110D;
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
  font-size: 13px;
}
.footer__top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__brand p {
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 280px;
  margin: 16px 0 24px;
}
.footer__brand .logo { color: #fff; }
.footer__brand .logo__sub { color: rgba(255,255,255,.5); }
.footer__brand .logo__mark { color: var(--gold); }

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  transition: all .15s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col li { margin-bottom: 9px; }
.footer__col a { transition: color .15s; }
.footer__col a:hover { color: var(--gold); }

.footer__phone {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: #fff !important;
  display: block;
  margin-bottom: 4px;
}
.footer__mail {
  display: block;
  margin-bottom: 12px;
  color: var(--gold) !important;
}
.footer__col--contact p {
  margin: 0 0 16px;
  font-size: 12.5px;
}
.footer__pay {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__pay > span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  display: block;
  margin-bottom: 8px;
}
.pay-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pay-icons i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  color: rgba(255,255,255,.7);
}

.footer__bottom {
  background: #0E0B08;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.footer__bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer__sites {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer__sites a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
}
.footer__sites .muted { color: rgba(255,255,255,.4); }
.footer__sites .muted:hover { color: var(--gold); }
.footer__by strong { color: #fff; font-weight: 700; }

/* responsive scaling */
@media (max-width: 1280px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .cats__grid { grid-template-columns: repeat(3, 1fr); }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .promo__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .configurator__inner { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .hero h1 { font-size: 46px; }
  .section__head h2 { font-size: 32px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { grid-template-columns: 1fr 1fr; }
}
