:root {
  --c-primary: #1a1713;
  --c-primary-dark: #000000;
  --c-accent: #b5924c;
  --c-dark: #14110e;
  --c-dark-fg: #f3eee4;
  --c-dark-muted: #a2988a;
  --c-bg: #faf8f4;
  --c-surface: #ffffff;
  --c-fg: #1a1713;
  --c-muted: #635b4c;
  --c-border: #e7e0d3;
  --radius: 6px;
  --shadow: 0 10px 34px rgba(26, 23, 19, .07);
  --font-head: 'Cormorant', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-fg);
  background: var(--c-bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 17, 14, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181, 146, 76, .25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo {
  font-family: var(--font-head); font-size: 21px; font-weight: 600;
  letter-spacing: .3em; color: var(--c-dark-fg);
}
.nav { display: flex; gap: 30px; align-items: center; font-size: 13px; font-weight: 500; letter-spacing: .08em; }
.nav a { color: var(--c-dark-muted); transition: color .2s; text-transform: uppercase; }
.nav a:hover { color: var(--c-accent); }
.nav-cta {
  border: 1px solid var(--c-accent); color: var(--c-accent) !important;
  padding: 9px 24px; border-radius: 999px; transition: background .3s, color .3s, box-shadow .3s;
}
.nav-cta:hover { box-shadow: 0 6px 18px rgba(181, 146, 76, .35); }
.nav-cta:hover { background: var(--c-accent); color: var(--c-dark) !important; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; color: var(--c-dark-fg); padding: 8px; }
/* Золота кнопка в мобільній шапці (на десктопі є nav-cta) */
.header-cta { display: none; }

/* Buttons: м'які піґулки як у глянці */
.btn {
  display: inline-block; padding: 16px 40px; border-radius: 999px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; border: 0;
  transition: transform .25s ease, background .35s ease, color .35s ease,
    border-color .35s ease, box-shadow .35s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, #262117, #14110e);
  color: var(--c-dark-fg);
  box-shadow: 0 10px 26px rgba(20, 17, 14, .22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d3b273, #a8853f);
  color: var(--c-dark);
  box-shadow: 0 12px 30px rgba(181, 146, 76, .38);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--c-fg);
  border: 1px solid rgba(26, 23, 19, .45);
}
.btn-ghost:hover {
  border-color: var(--c-accent); color: var(--c-accent);
  box-shadow: 0 8px 22px rgba(181, 146, 76, .18);
  transform: translateY(-1px);
}
.btn-wide { width: 100%; }
.btn[disabled] { opacity: .5; cursor: default; }

/* Hero */
.hero { padding: 70px 0 90px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 600; line-height: 1.12; margin-bottom: 20px;
}
.hero-sub { font-size: 18px; line-height: 1.7; color: #45402f; max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block;
}
/* Підпис зверху фото - низ не перекриваємо */
.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 8, 6, .62) 0%, transparent 32%);
}
.hero-photo-tag {
  position: absolute; left: 0; right: 0; top: 0; z-index: 2; margin: 0;
  padding: 14px 18px 0; text-align: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #f3eee4; line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

/* Sections */
section { padding: 72px 0; }
.section-title {
  font-family: var(--font-head); font-size: clamp(30px, 4vw, 46px);
  font-weight: 500; text-align: center; margin-bottom: 12px; letter-spacing: .02em;
}
.section-title::before {
  content: ""; display: block; width: 44px; height: 1px;
  background: var(--c-accent); margin: 0 auto 18px;
}
.about-text .section-title::before { margin-left: 0; }
.section-sub { text-align: center; color: var(--c-muted); margin-bottom: 44px; font-size: 17px; }

/* Акценти в текстах */
.hero-sub b, .section-sub b, .about-text p b {
  font-weight: 600; color: var(--c-fg);
}
.quick-order .section-sub b, .order .section-sub b { color: var(--c-dark-fg); }

/* Models */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.model-card {
  background: var(--c-surface); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(60, 20, 40, .14); }
.model-card img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; background: #f2e9ea; }
/* Журнальні сноски на фото картки (не перекривають сумку по центру) */
.card-photo { position: relative; }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250, 248, 244, .92); color: #1a1713;
  font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}
.card-note {
  position: absolute; left: 14px; bottom: 12px; max-width: calc(100% - 28px);
  background: rgba(20, 17, 14, .58);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  color: #f6f1e7; font-family: var(--font-head); font-style: italic;
  font-size: 16px; line-height: 1.4; padding: 7px 14px; border-radius: 10px;
}
.model-colors { font-size: 13px; color: var(--c-muted); margin-bottom: 10px; }
/* Кружечки кольорів під фото картки */
.model-colors.model-swatches { display: flex; gap: 9px; margin: 0 0 12px; }
.swatch {
  width: 21px; height: 21px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--c-border), 0 2px 6px rgba(26, 23, 19, .15);
  animation: swatchPulse 2.6s ease-in-out infinite;
}
.swatch { cursor: pointer; }
.swatch.active {
  animation: none; transform: scale(1.18);
  box-shadow: 0 0 0 1px rgba(181, 146, 76, .9), 0 3px 12px rgba(181, 146, 76, .4);
}
/* легка пульсація по черзі, щоб кружечки не губились */
.swatch:nth-child(2) { animation-delay: .45s; }
.swatch:nth-child(3) { animation-delay: .9s; }
@keyframes swatchPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px var(--c-border), 0 2px 6px rgba(26, 23, 19, .15);
  }
  50% {
    transform: scale(1.22);
    box-shadow: 0 0 0 1px rgba(181, 146, 76, .8), 0 3px 12px rgba(181, 146, 76, .38);
  }
}
.model-body { padding: 22px 22px 26px; }
.model-body h3 { font-family: var(--font-head); font-size: 26px; font-weight: 600; margin-bottom: 8px; }
.model-body p { font-size: 15px; line-height: 1.65; color: #45402f; margin-bottom: 14px; }
.model-price { font-weight: 600; color: var(--c-accent); font-size: 15px; }

/* Gallery: горизонтальні каруселі по групах */
.gallery { background: var(--c-surface); padding-bottom: 56px; }
.gallery > .container:last-child { padding-top: 8px; }

/* Повноширинні блоки груп зі своїм настроєм (градієнтні шви малює main.js) */
.gallery-band { padding: 72px 0 46px; }
.band-light { background: var(--c-surface); }
.band-shade { background: #eee8db; }
.band-blush { background: #f7e9e7; }
.band-dark { background: var(--c-dark); }
.band-dark .band-title { color: var(--c-dark-fg); }
.band-dark .gallery-grid::-webkit-scrollbar-track { background: rgba(255, 255, 255, .14); }
.band-title {
  font-family: var(--font-head); font-size: clamp(26px, 3vw, 34px); font-weight: 600;
  letter-spacing: .04em; text-align: center; margin-bottom: 26px;
}
/* Вензель-розділювач на початку кожного блока */
.band-ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 30px; color: var(--c-accent);
}
.band-ornament::before, .band-ornament::after {
  content: ""; flex: 0 1 120px; height: 1px;
}
.band-ornament::before { background: linear-gradient(to right, transparent, currentColor); }
.band-ornament::after { background: linear-gradient(to left, transparent, currentColor); }
.band-dark .band-ornament { color: #d3b273; }
.band-blush .band-ornament { color: #b0576a; }
.band-cover {
  position: relative; display: block; width: 100%;
  border: 0; padding: 0; background: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; margin-bottom: 16px;
  text-align: left;
}
.band-cover img {
  width: 100%; max-height: 540px; object-fit: cover; display: block;
  transition: transform .5s;
}
.band-cover:hover img { transform: scale(1.03); }
.band-cover::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 8, 6, .5) 0%, transparent 32%, transparent 55%, rgba(10, 8, 6, .78) 100%);
}
/* Шапка обкладинки як у модного журналу */
.cover-head {
  position: absolute; top: 22px; left: 0; right: 0; z-index: 2;
  text-align: center; pointer-events: none;
}
.cover-kicker {
  display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: rgba(243, 238, 228, .9);
  margin-bottom: 4px;
}
.cover-mast {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: clamp(52px, 9vw, 112px); line-height: 1; letter-spacing: .1em;
  text-transform: uppercase; color: #f3eee4;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .4);
}
.cover-sub {
  display: block; font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: rgba(243, 238, 228, .92);
  margin-top: 10px;
}
/* Слоган знизу як cover lines журналу */
.band-tagline {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 0 24px 22px; margin: 0; text-align: center;
  font-size: 12.5px; line-height: 2.1; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
}
.gallery-grid {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: thin; scrollbar-color: var(--c-accent) transparent;
}
.gallery-grid::-webkit-scrollbar { height: 4px; }
.gallery-grid::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 2px; }
.gallery-grid::-webkit-scrollbar-track { background: var(--c-border); }
.gallery-grid button {
  border: 0; padding: 0; background: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; position: relative;
  flex: 0 0 236px; scroll-snap-align: start;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .35s;
}
.gallery-group-title {
  font-family: var(--font-head); font-size: 26px; font-weight: 500;
  margin: 40px 0 16px; text-align: left;
  display: flex; align-items: center; gap: 16px;
}
.gallery-group-title::after { content: ""; flex: 1; height: 1px; background: var(--c-border); }
.gallery-group-title:first-child { margin-top: 0; }
.gallery-grid + .gallery-group-title { margin-top: 48px; }
.gallery-grid button:hover img { transform: scale(1.05); }

/* About */
.about-inner {
  max-width: 1020px; margin: 0 auto;
  display: grid; grid-template-columns: .85fr 1fr; gap: 48px; align-items: center;
}
.about-photo { position: relative; }
.about-photo > img:first-child {
  width: 100%; height: auto;
  /* м'яко розтушовані краї - фото вплавляється у фон */
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 58%, transparent 97%);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 58%, transparent 97%);
}
/* Зразок оксамиту в тексті: маленька повернута картка, текст обтікає */
.velvet-fig {
  float: right; width: 185px; margin: 4px 0 10px 24px;
  text-align: center;
}
.velvet-fig img {
  width: 100%; height: auto; border-radius: 10px;
  transform: rotate(6deg);
  border: 4px solid #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}
.velvet-fig figcaption {
  font-family: var(--font-head); font-style: italic; font-size: 14px;
  color: var(--c-muted); margin-top: 10px; line-height: 1.4;
}
.about-text::after { content: ""; display: block; clear: both; }
.about-text p { margin-bottom: 18px; color: #45402f; font-size: 17px; line-height: 1.8; }
.about-text .section-title { text-align: left; }
.about-list { list-style: none; margin-top: 24px; }
.about-list li {
  padding: 10px 0 10px 34px; position: relative; font-weight: 500;
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-primary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}

/* Order form (плавний вхід у темне, футер далі теж темний) */
.order {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-dark) 160px);
  padding-top: 170px;
}
.order .section-title { color: var(--c-dark-fg); }
.order .section-sub { color: var(--c-dark-muted); }
.order .order-note { color: var(--c-accent); }
.order .price-old { color: var(--c-dark-muted); }
.order .timer-label { color: var(--c-dark-muted); }
.order .timer-digits { color: var(--c-dark-fg); }
.order-inner { max-width: 480px; margin: 0 auto; }
.order-form {
  background: var(--c-surface); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; height: 50px; padding: 0 20px;
  border: 1.5px solid var(--c-border); border-radius: 999px;
  font-family: var(--font-body); font-size: 16px; background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(181, 146, 76, .16);
}
.field-error { color: #c0264b; font-size: 13px; margin-top: 6px; }
.form-done {
  margin-top: 16px; text-align: center; font-weight: 600; color: #1a7f4e;
}

/* Footer */
.site-footer { background: var(--c-dark); border-top: 1px solid rgba(181, 146, 76, .25); padding: 26px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--c-dark-muted);
  font-family: var(--font-head); letter-spacing: .12em;
}
.footer-inner span:first-child { color: var(--c-dark-fg); letter-spacing: .3em; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 12, 18, .92);
  display: flex; align-items: center; justify-content: center;
}
.lightbox img {
  max-width: 92vw; max-height: 88vh; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox button {
  position: absolute; background: rgba(255, 255, 255, .08);
  border: 0; color: #fff; cursor: pointer; border-radius: 50%;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox button:hover { background: rgba(255, 255, 255, .2); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* Смуга довіри під hero */
.trust { padding: 8px 0 40px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item { border-top: 1px solid var(--c-accent); padding: 16px 4px 0; }
.trust-item h3 {
  font-family: var(--font-head); font-size: 21px; font-weight: 600;
  color: var(--c-fg); margin-bottom: 4px;
}
.trust-item p { font-size: 14px; color: var(--c-muted); line-height: 1.55; }

/* Відгуки: чати WhatsApp (темна тема, як скриншот телефона) */
.reviews { padding: 64px 0; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px;
}
.wa-chat {
  border-radius: 22px; overflow: hidden;
  background: #0b141a; border: 1px solid #26343d;
  box-shadow: 0 18px 44px rgba(10, 14, 18, .35);
  display: flex; flex-direction: column;
  font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.wa-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  background: #0b141a; color: #e9edef; padding: 8px 16px 4px;
  font-size: 12.5px; font-weight: 600;
}
.wa-sic { display: flex; align-items: center; gap: 5px; color: #e9edef; }
.wa-head {
  display: flex; align-items: center; gap: 10px;
  background: #0b141a; color: #e9edef; padding: 8px 12px 10px;
  border-bottom: 1px solid rgba(134, 150, 160, .12);
}
.wa-back { color: #aebac1; flex-shrink: 0; }
.wa-head img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.wa-who { flex: 1; min-width: 0; }
.wa-who b { display: block; font-size: 14.5px; line-height: 1.25; color: #e9edef; }
.wa-who span { font-size: 11.5px; color: #8696a0; }
.wa-callicons { display: flex; align-items: center; gap: 16px; color: #aebac1; }
.wa-body {
  flex: 1; padding: 14px 12px;
  background: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 16px 16px;
}
.wa-date {
  width: max-content; margin: 0 auto 12px; background: #1f2c33;
  font-size: 11px; color: #8696a0; padding: 4px 12px; border-radius: 8px;
}
.wa-msg {
  position: relative; max-width: 88%; border-radius: 10px;
  padding: 7px 10px 18px; margin-bottom: 8px;
  font-size: 13.5px; line-height: 1.45; color: #e9edef;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .25);
}
.wa-msg.in { background: #202c33; border-top-left-radius: 2px; }
.wa-msg.out { background: #005c4b; margin-left: auto; border-top-right-radius: 2px; }
.wa-time {
  position: absolute; right: 9px; bottom: 4px;
  font-size: 10px; color: #8696a0; white-space: nowrap;
}
.wa-msg.out .wa-time { color: rgba(233, 237, 239, .55); }
.wa-time i { font-style: normal; color: #53bdeb; letter-spacing: -2px; }
.wa-inputbar {
  display: flex; align-items: center; gap: 9px;
  background: #0b141a; padding: 8px 10px 12px; color: #8696a0;
}
.wa-input {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  background: #2a3942; color: #8696a0; font-size: 13.5px;
  border-radius: 999px; padding: 8px 14px;
}
.wa-mic {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: #00a884; color: #0b141a;
  display: flex; align-items: center; justify-content: center;
}

/* Думка стилістки */
.expert-card {
  display: flex; gap: 28px; align-items: center;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  max-width: 880px; margin: 30px auto 0;
}
.expert-card > img.expert-photo {
  width: 240px; height: auto; border-radius: 10px; flex-shrink: 0;
  object-fit: cover;
}
.expert-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 600; margin-bottom: 6px;
}
.expert-quote { font-size: 15px; line-height: 1.7; font-style: italic; }
/* Друкарський ефект: блідий "привид" тримає макет, темний шар друкується поверх */
.expert-quote { position: relative; }
.expert-quote .eq-ghost { color: #d9d2c3; }
.expert-quote .eq-live {
  position: absolute; inset: 0; pointer-events: none; color: var(--c-fg);
}
/* курсор нульової ширини - на переноси рядків не впливає */
.eq-caret { display: inline; position: relative; }
.eq-caret::after {
  content: ""; position: absolute; left: 1px; top: .08em;
  width: 2px; height: 1em; background: var(--c-accent);
  animation: eqblink 1s steps(1) infinite;
}
@keyframes eqblink { 50% { opacity: 0; } }
@keyframes ctaShimmer { 0% { background-position: 0 0; } 100% { background-position: 220% 0; } }
.expert-name {
  margin-top: 12px; font-family: var(--font-head); font-weight: 700;
  color: var(--c-primary); font-size: 18px;
}
.expert-role { font-size: 13px; color: var(--c-muted); }

/* CTA-якорі до форми */
.cta-row { text-align: center; margin-top: 36px; }

/* Ціни акції: на плашках, щоб читались на будь-якому фоні */
.promo-price {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 6px 0 16px; flex-wrap: wrap;
}
.hero .promo-price { justify-content: flex-start; margin: 0 0 16px; }
.price-old {
  font-size: 16px; color: var(--c-muted);
  background: rgba(26, 23, 19, .08);
  padding: 9px 18px; border-radius: 999px;
  text-decoration-color: #c0392b; text-decoration-thickness: 2px;
}
.price-new {
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  color: #221b0e; line-height: 1.1;
  background: linear-gradient(135deg, #e6cb90, #b5924c);
  padding: 6px 24px 8px; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(181, 146, 76, .35);
}
.quick-order .price-old, .order .price-old {
  background: rgba(255, 255, 255, .13);
}
.discount-badge {
  background: linear-gradient(135deg, #a32438, #7c1626); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(143, 29, 44, .3);
}
.model-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.model-price .price-old { font-size: 13px; padding: 6px 13px; }
.model-price .price-new { font-size: 20px; padding: 3px 16px 5px; }
.model-price .discount-badge { font-size: 11px; padding: 4px 10px; }

/* Таймер акції */
.promo-timer {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin: 0 0 22px;
}
.hero .promo-timer { align-items: flex-start; }
.timer-label {
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-muted);
}
.timer-digits {
  font-family: var(--font-head); font-size: 25px; font-weight: 600;
  letter-spacing: .07em; color: var(--c-fg);
  border: 1px solid rgba(181, 146, 76, .55); border-radius: 999px;
  padding: 5px 22px; min-width: 140px; text-align: center;
  font-variant-numeric: tabular-nums;
  background: rgba(181, 146, 76, .06);
}
/* Екстрений стиль: знижка от-от згорить */
.promo-timer.urgent .timer-label { color: #a32438; font-weight: 700; }
.promo-timer.urgent .timer-digits {
  color: #a32438;
  border-color: rgba(163, 36, 56, .6);
  background: rgba(163, 36, 56, .07);
  animation: timerPulse 1.8s ease-in-out infinite;
}
.promo-timer.critical .timer-digits { animation: timerPulse .9s ease-in-out infinite; }
@keyframes timerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 36, 56, .3); }
  55% { box-shadow: 0 0 0 7px rgba(163, 36, 56, 0); }
}
/* на темних секціях червоний світліший, щоб читався */
.quick-order .promo-timer.urgent .timer-label,
.order .promo-timer.urgent .timer-label { color: #ff8e9b; }
.quick-order .promo-timer.urgent .timer-digits,
.order .promo-timer.urgent .timer-digits {
  color: #ff9aa5;
  border-color: rgba(255, 130, 145, .55);
  background: rgba(163, 36, 56, .22);
}

/* Швидкі форми замовлення (плавний перехід світле -> темне -> світле) */
.quick-order {
  padding: 130px 0 140px;
  background: linear-gradient(180deg,
    var(--c-bg) 0%, var(--c-dark) 120px,
    var(--c-dark) calc(100% - 120px), var(--c-bg) 100%);
}
/* Якщо далі йде біла секція галереї - хвіст градієнта в білий */
.quick-order:has(+ .gallery) {
  background: linear-gradient(180deg,
    var(--c-bg) 0%, var(--c-dark) 120px,
    var(--c-dark) calc(100% - 120px), var(--c-surface) 100%);
}
.quick-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.quick-order .section-title { color: var(--c-dark-fg); }
.quick-order .section-sub { color: var(--c-dark-muted); margin-bottom: 24px; }
.quick-order .price-old { color: var(--c-dark-muted); }
.quick-order .timer-label { color: var(--c-dark-muted); }
.quick-order .timer-digits { color: var(--c-dark-fg); }
.order-form.mini {
  display: flex; flex-direction: column; gap: 12px;
  background: transparent; box-shadow: none; padding: 0; border-radius: 0;
}
/* Світлі поля на темному фоні */
.order-form.mini input, .order-form.mini select {
  width: 100%; padding: 14px 22px; font-family: var(--font-body); font-size: 15px;
  border: 1px solid transparent; border-radius: 999px;
  background: #faf8f4; color: var(--c-fg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: border-color .3s, box-shadow .3s;
}
.order-form.mini input::placeholder { color: #8a8171; }
.order-form.mini select { color: var(--c-fg); }
.order-form.mini select option { color: var(--c-fg); background: #fff; }
.order-form.mini input:focus, .order-form.mini select:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(181, 146, 76, .28), 0 6px 18px rgba(0, 0, 0, .25);
}
.order-form.mini .btn-primary {
  background: linear-gradient(135deg, #d3b273, #a8853f); color: var(--c-dark);
  margin-top: 4px; box-shadow: 0 10px 26px rgba(181, 146, 76, .28);
}
.order-form.mini .btn-primary:hover {
  background: linear-gradient(135deg, #e0c288, #b99550);
  box-shadow: 0 12px 30px rgba(181, 146, 76, .45);
}
.quick-order .field-error { color: #e08585; font-size: 13px; }
.quick-order .form-done { color: #8fce9f; }

/* FAQ */
.faq { padding: 24px 0 64px; }
.faq-list { max-width: 720px; margin: 32px auto 0; }
.faq-item {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 0 20px; margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none;
  display: flex; align-items: center; gap: 14px;
}
.faq-item summary span { flex: 1; }
.faq-ava {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid #fff; box-shadow: 0 3px 10px rgba(26, 23, 19, .18);
}
.faq-item p { padding-left: 52px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-head); font-size: 24px; color: var(--c-accent);
  line-height: 1; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 16px; color: #45402f; font-size: 16px; line-height: 1.7; }

/* 3D-переглядач сумки */
.view3d { background: var(--c-surface); }
.mv-wrap { max-width: 640px; margin: 0 auto; }
/* Перемикач моделей - сегментна пігулка з ковзним індикатором і світлом, що біжить */
.mv-switch {
  position: relative; display: flex; width: max-content; margin: 0 auto 22px;
  padding: 4px; border-radius: 999px; overflow: hidden;
  background: var(--c-bg); border: 1px solid var(--c-border);
  box-shadow: inset 0 1px 3px rgba(26, 23, 19, .06);
}
/* ковзна золота пігулка під активною кнопкою */
.mv-ind {
  position: absolute; z-index: 1; top: 4px; bottom: 4px; left: 4px; width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #262117, #14110e);
  box-shadow: 0 4px 12px rgba(20, 17, 14, .3);
  transition: transform .34s cubic-bezier(.4, 0, .2, 1), width .34s cubic-bezier(.4, 0, .2, 1);
}
.mv-model {
  position: relative; z-index: 2; border: 0; background: transparent; cursor: pointer;
  padding: 10px 30px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted);
  transition: color .3s;
}
.mv-model.is-active { color: var(--c-dark-fg); }
.mv-model:not(.is-active):hover { color: var(--c-accent); }
/* світло, що періодично пробігає по перемикачу - натяк «це перемикач» */
.mv-switch::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(212, 171, 71, .55) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: mvSweep 3.4s ease-in-out infinite;
}
@keyframes mvSweep {
  0%, 55% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
.view3d model-viewer {
  width: 100%; height: 520px; display: block;
  border-radius: var(--radius); border: 1px solid #2a2a2e;
  background:
    radial-gradient(120% 95% at 50% 8%, #3a3a40 0%, #232327 55%, #161618 100%);
  --poster-color: transparent;
}
.mv-poster { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.mv-spin {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid rgba(181, 146, 76, .25); border-top-color: var(--c-accent);
  animation: mvspin .9s linear infinite;
}
@keyframes mvspin { to { transform: rotate(360deg); } }
.mv-ar {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
/* Кнопки керування 3D */
.mv-controls {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  margin-top: 16px;
}
.mv-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--c-border); background: var(--c-surface);
  color: var(--c-fg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 23, 19, .1);
  transition: background .25s, color .25s, transform .15s, box-shadow .25s;
}
.mv-btn:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); box-shadow: 0 6px 16px rgba(181, 146, 76, .32); }
.mv-btn:active { transform: scale(.92); }
.mv-btn.mv-reset { width: 42px; height: 42px; color: var(--c-muted); }
.mv-hint {
  text-align: center; font-size: 13px; color: var(--c-muted);
  margin-top: 12px; letter-spacing: .02em;
}
@media (max-width: 900px) {
  .view3d model-viewer { height: 420px; }
}

/* Хук Inimă: новинка-серце окремим блоком (плавно з фону в рожевий шовк і назад) */
.inima-hook {
  padding: 120px 0 130px;
  background: linear-gradient(180deg,
    var(--c-bg) 0%, #f7e9e7 110px,
    #f7e9e7 calc(100% - 110px), var(--c-bg) 100%);
}
.inima-inner {
  max-width: 1020px; margin: 0 auto;
  display: grid; grid-template-columns: .85fr 1fr; gap: 48px; align-items: center;
}
.inima-photo {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(143, 29, 44, .18);
}
.inima-photo img { width: 100%; height: auto; display: block; }
/* журнальні написи на фото серця */
.inima-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(60, 10, 16, .5) 0%, transparent 36%, transparent 58%, rgba(60, 10, 16, .66) 100%);
}
.inima-head { top: 54px; }
.inima-head .cover-mast {
  font-size: clamp(44px, 6vw, 76px); color: #ffd7d0;
  text-transform: none; letter-spacing: .06em;
}
.inima-head .cover-sub { color: rgba(255, 215, 208, .95); }
.inima-cover-tag {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; margin: 0;
  padding: 0 20px 18px; text-align: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #ffd7d0; text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  pointer-events: none;
}
.inima-badge { z-index: 3; }
.inima-badge {
  position: absolute; top: 16px; left: 16px;
  background: #8f1d2c; color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(143, 29, 44, .35);
}
.inima-text .section-title { text-align: left; }
.inima-text .section-title::before { margin-left: 0; background: #8f1d2c; }
.inima-lead { font-size: 17px; line-height: 1.75; color: #45402f; margin-bottom: 6px; }
.inima-list { list-style: none; margin: 16px 0 24px; }
.inima-list li {
  position: relative; padding: 9px 0 9px 34px;
  font-size: 16px; line-height: 1.65; color: #45402f;
}
.inima-list li::before {
  content: "\2665"; position: absolute; left: 2px; top: 8px;
  color: #8f1d2c; font-size: 17px;
}
.inima-list li b { color: var(--c-fg); }
.inima-hook .promo-price { justify-content: flex-start; margin: 6px 0 22px; }
.inima-hook .gallery-grid { margin-top: 40px; }

/* Форма замовлення прямо в hero */
.hero-form { max-width: 430px; margin: 0 0 22px; }
.hero .order-form.mini input, .hero .order-form.mini select {
  background: #ffffff; border: 1px solid var(--c-border);
  box-shadow: 0 4px 14px rgba(26, 23, 19, .07);
}
.hero .order-form.mini input:focus, .hero .order-form.mini select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(181, 146, 76, .18);
}
.hero .field-error { color: #c0264b; font-size: 13px; text-align: center; }
.hero .form-done { color: #1a7f4e; }

/* Мініатюра обраної сумки у формі */
.form-preview {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px; border: 1px dashed rgba(181, 146, 76, .55);
  border-radius: 16px; background: rgba(181, 146, 76, .06);
  text-align: left;
}
.form-preview.has { border-style: solid; }
.fp-img {
  width: 62px; height: 62px; border-radius: 12px; overflow: hidden;
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 32%, rgba(181, 146, 76, .32), rgba(26, 23, 19, .08) 75%);
  box-shadow: inset 0 0 0 1px rgba(181, 146, 76, .4), 0 4px 12px rgba(26, 23, 19, .12);
}
.fp-img svg { color: var(--c-accent); filter: drop-shadow(0 3px 4px rgba(26, 23, 19, .35)); }
.fp-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-txt { font-size: 13.5px; line-height: 1.45; color: var(--c-muted); }
.fp-txt b { color: var(--c-fg); }
.quick-order .fp-txt { color: var(--c-dark-muted); }
.quick-order .fp-txt b { color: var(--c-dark-fg); }
.quick-order .form-preview { background: rgba(181, 146, 76, .1); }

/* Поля доставки (спільні для всіх форм) */
.order-form .plainfld {
  width: 100%; padding: 13px 20px; font-family: var(--font-body); font-size: 15px;
  border: 1.5px solid var(--c-border); border-radius: 999px; background: #fff;
  color: var(--c-fg); transition: border-color .3s, box-shadow .3s;
}
.order-form .plainfld:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(181, 146, 76, .16);
}
.order-form:not(.mini) .plainfld { margin-bottom: 14px; }
.dlv { display: flex; flex-direction: column; gap: 12px; }
.order-form:not(.mini) .dlv { gap: 0; }
.dlv[hidden] { display: none; }

/* Дожим біля форми */
.order-note {
  text-align: center; font-size: 14px; color: var(--c-primary);
  max-width: 560px; margin: -8px auto 28px; font-weight: 500;
}
.footer-tagline { letter-spacing: .04em; }

/* Mobile */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  /* Відгуки: карусель свайпом */
  .reviews-grid {
    display: flex; overflow-x: auto; gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px; margin-left: -20px; margin-right: -20px;
    padding-left: 20px; padding-right: 20px;
    scrollbar-width: thin; scrollbar-color: var(--c-accent) transparent;
  }
  .wa-chat { flex: 0 0 86%; scroll-snap-align: center; }
  /* Мобільний порядок hero: заголовок і текст -> фото -> ціна -> таймер -> кнопки */
  .hero-inner { display: flex; flex-direction: column; gap: 0; }
  .hero-text { display: contents; }
  .hero-eyebrow { order: 1; }
  .hero-text h1 { order: 2; margin-bottom: 22px; }
  /* На мобілці довгий текст ховаємо - його суть написана на самому фото */
  .hero-sub { display: none; }
  .hero-photo { order: 4; margin: 0 0 26px; }
  .hero .promo-price { order: 5; justify-content: center; }
  .hero-form { order: 6; max-width: 100%; width: 100%; }
  .hero .promo-timer { order: 7; align-items: center; }
  .hero-actions { order: 8; justify-content: center; }
  .hero { padding: 44px 0 60px; }
  .models-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  /* Галерея: більша карта під палець */
  .gallery-grid { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .gallery-grid button { flex-basis: 64vw; }
  .gallery-band { padding: 56px 0 34px; }
  .band-cover img { max-height: 480px; }
  .cover-head { top: 14px; }
  .cover-kicker { font-size: 9px; letter-spacing: .34em; }
  .cover-mast { font-size: clamp(40px, 13vw, 64px); }
  .cover-sub { font-size: 9px; letter-spacing: .26em; margin-top: 7px; }
  .band-tagline { font-size: 10.5px; letter-spacing: .16em; padding: 0 12px 14px; line-height: 2; }
  .expert-card { flex-direction: column; }
  .expert-card > img.expert-photo { width: 100%; max-height: 380px; object-fit: cover; object-position: center 18%; }
  .inima-inner { grid-template-columns: 1fr; gap: 28px; }
  .inima-hook { padding: 90px 0 100px; }
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  /* Шапка на мобілці: делікатна, напівпрозора, з золотою лінією */
  .site-header {
    background: rgba(16, 13, 10, .82);
    border-bottom: 0;
  }
  .site-header::after {
    content: ""; display: block; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(181, 146, 76, .65) 50%, transparent 100%);
  }
  .header-inner { height: 54px; gap: 10px; }
  .logo { font-size: 14px; letter-spacing: .22em; }
  .header-cta {
    display: inline-block; margin-left: auto;
    padding: 8px 18px; border-radius: 999px;
    font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: #221b0e;
    background: linear-gradient(110deg, #b5924c 0%, #ecd49b 45%, #b5924c 90%);
    background-size: 220% 100%;
    animation: ctaShimmer 3.2s linear infinite;
    box-shadow: 0 5px 14px rgba(181, 146, 76, .4);
  }
  .nav {
    display: none; position: absolute; top: 55px; left: 0; right: 0;
    flex-direction: column; background: rgba(16, 13, 10, .96); padding: 22px 20px;
    border-bottom: 1px solid rgba(181, 146, 76, .25); gap: 18px;
  }
  .nav.open { display: flex; }
  .nav-burger { display: block; padding: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
