
:root {
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-width: 430px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --danger: #b34b42;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; font-family: var(--font); color: var(--text); }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
.page-shell { min-height: 100vh; padding: 12px 0 24px; }
.page, .site-footer { width: min(100%, var(--page-width)); margin: 0 auto; }
.page { display: flex; flex-direction: column; gap: 22px; }
.hero { display: flex; flex-direction: column; gap: 14px; }
.hero-media { position: relative; margin: 0 12px; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow); background: var(--media-bg); }
.hero-media img { aspect-ratio: .764 / 1; object-fit: cover; }
.hero-title-card { position: absolute; left: 16px; right: 16px; display: grid; gap: 8px; padding: 14px 16px; border-radius: 23px; border: 1px solid var(--overlay-line); background: var(--overlay); backdrop-filter: blur(14px); color: var(--overlay-text); }
.hero-title-card span { font-size: 11px; line-height: 1.2; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
h1, h2, h3, p { margin-top: 0; }
.hero-title-card h1 { margin: 0; font-size: clamp(31px, 8vw, 42px); line-height: .95; letter-spacing: -.055em; }
.hero-body { margin: 0 14px; padding: 2px 4px 0; }
.lead { margin: 0 0 15px; color: var(--muted); font-size: 15px; line-height: 1.68; }
.price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 15px; }
.price-old, .price-current { font-size: 27px; line-height: 1; letter-spacing: -.045em; }
.price-old { color: var(--old-price); font-weight: 700; text-decoration: line-through; text-decoration-thickness: 2px; }
.price-current { color: var(--price); font-weight: 850; }
.button { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 56px; border: 0; border-radius: 18px; padding: 0 18px; text-decoration: none; cursor: pointer; font-weight: 800; transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease; }
.button:active { transform: translateY(1px); }
.button:disabled { opacity: .72; cursor: default; }
.button-primary { background: var(--button-bg); color: var(--button-text); box-shadow: var(--button-shadow); }
.meta-note { margin: 10px 0 0; color: var(--soft-muted); text-align: center; font-size: 13px; line-height: 1.45; }
.section-intro { margin: 0 14px 12px; }
.section-kicker { display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border-radius: 999px; background: var(--kicker-bg); border: 1px solid var(--kicker-line); color: var(--kicker-text); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.section-intro h2, .order-card h2 { margin: 11px 0 0; font-size: 29px; line-height: 1.04; letter-spacing: -.046em; color: var(--heading); }
.story-card, .order-card { margin: 0 14px; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--card-line); background: var(--card-bg); box-shadow: var(--card-shadow); }
.story-photo { aspect-ratio: .82 / 1; object-fit: cover; background: var(--media-bg); }
.story-copy, .order-card { padding: 22px; }
.story-copy h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.1; letter-spacing: -.035em; color: var(--heading); }
.story-copy p, .order-card > p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.story-copy p + p { margin-top: 13px; }
.facts-grid { display: grid; gap: 10px; margin-top: 18px; }
.fact-item { padding: 14px 15px; border-radius: var(--radius-md); border: 1px solid var(--fact-line); background: var(--fact-bg); }
.fact-item strong { display: block; margin-bottom: 6px; color: var(--heading); font-size: 14px; }
.fact-item p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.color-showcase { margin-top: 18px; display: grid; gap: 12px; }
.color-preview { overflow: hidden; border-radius: 22px; border: 1px solid var(--card-line); background: var(--media-bg); }
.color-preview img { aspect-ratio: 1 / 1.14; object-fit: cover; }
.color-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.color-tabs button { min-height: 42px; border: 1px solid var(--chip-line); border-radius: 999px; background: var(--chip-bg); color: var(--text); display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; font-size: 13px; font-weight: 750; }
.color-tabs button.is-active { background: var(--chip-active); color: var(--chip-active-text); border-color: transparent; }
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,.13); }
.dot-black { background: #111; }
.dot-gray { background: #c9ccd4; }
.dot-white { background: #fff; }
.reviews-carousel { position: relative; margin: 0 14px; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform .34s ease; }
.review-card { flex: 0 0 100%; min-height: 178px; padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--card-line); background: var(--review-bg); box-shadow: var(--card-shadow); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--avatar-bg); color: var(--avatar-text); font-weight: 850; }
.review-card h3 { margin: 0 0 3px; font-size: 16px; color: var(--heading); }
.review-card span { color: var(--soft-muted); font-size: 13px; }
.review-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.62; }
.carousel-arrow { position: absolute; z-index: 2; top: 50%; width: 34px; height: 34px; transform: translateY(-50%); border-radius: 50%; border: 1px solid var(--arrow-line); background: var(--arrow-bg); box-shadow: 0 12px 24px rgba(0,0,0,.08); cursor: pointer; }
.carousel-arrow::before { content: ''; position: absolute; inset: 11px 13px; border-top: 2px solid var(--arrow-color); border-left: 2px solid var(--arrow-color); }
.carousel-arrow-prev { left: -5px; }
.carousel-arrow-prev::before { transform: rotate(-45deg); }
.carousel-arrow-next { right: -5px; }
.carousel-arrow-next::before { transform: rotate(135deg); }
.carousel-dots { display: flex; justify-content: center; gap: 7px; margin: 12px 0 0; }
.carousel-dots button { width: 7px; height: 7px; border: 0; padding: 0; border-radius: 99px; background: var(--dot-bg); cursor: pointer; transition: width .2s ease, background .2s ease; }
.carousel-dots button.is-active { width: 22px; background: var(--dot-active); }
.order-section { scroll-margin-top: 16px; }
.order-card h2 { margin-bottom: 9px; }
.order-form { display: grid; gap: 13px; margin-top: 18px; }
.field-group { display: grid; gap: 7px; }
.field-group label { color: var(--heading); font-size: 14px; font-weight: 800; }
.field-group input { width: 100%; min-height: 54px; border: 1px solid var(--input-line); border-radius: 17px; padding: 0 15px; outline: none; color: var(--text); background: var(--input-bg); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.field-group input:focus { border-color: var(--input-focus); box-shadow: var(--focus-shadow); background: var(--input-focus-bg); }
.field-group.has-error input { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(179,75,66,.11); }
.field-error { min-height: 16px; color: var(--danger); font-size: 12px; line-height: 1.3; }
.form-policy { margin: -2px 0 0; color: var(--soft-muted); font-size: 11px; line-height: 1.5; text-align: center; }
.form-message { margin: 0; min-height: 18px; color: var(--muted); font-size: 13px; text-align: center; }
.form-message.is-error { color: var(--danger); }
.site-footer { margin-top: 22px; padding: 22px 24px 8px; color: var(--footer-text); font-size: 12px; line-height: 1.58; }
.site-footer h2 { margin: 0 0 10px; color: var(--footer-heading); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.site-footer p { margin: 0 0 10px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 4px 7px; margin-bottom: 10px; }
.site-footer a { text-decoration: none; border-bottom: 1px solid currentColor; }
.registry-note { opacity: .9; }
.legal-body { background: var(--legal-bg); }
.legal-page { width: min(100% - 28px, 430px); margin: 14px auto 28px; padding: 26px 22px; border-radius: 28px; background: var(--card-bg); border: 1px solid var(--card-line); box-shadow: var(--card-shadow); }
.legal-page h1 { margin: 12px 0 14px; font-size: 30px; line-height: 1.05; letter-spacing: -.045em; color: var(--heading); }
.legal-page h2 { margin: 22px 0 8px; font-size: 17px; color: var(--heading); }
.legal-page p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.back-link { display: inline-flex; margin-bottom: 8px; color: var(--muted); text-decoration: none; font-weight: 750; }
@media (min-width: 720px) {
  .page-shell { padding-top: 20px; }
}


.theme-one {
  --text: #27262b;
  --heading: #18181b;
  --muted: #62616b;
  --soft-muted: #868494;
  --old-price: #a6a4b2;
  --price: #202024;
  --media-bg: #f2f2fb;
  --overlay: rgba(22, 22, 26, .62);
  --overlay-line: rgba(255,255,255,.2);
  --overlay-text: #fff;
  --button-bg: linear-gradient(180deg, #2d2d34 0%, #111114 100%);
  --button-text: #fff;
  --button-shadow: 0 18px 28px rgba(28,28,33,.24);
  --kicker-bg: rgba(235,235,250,.72);
  --kicker-line: rgba(52,52,74,.08);
  --kicker-text: #4d5069;
  --card-bg: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,246,251,.98));
  --card-line: rgba(32,32,40,.09);
  --card-shadow: 0 18px 45px rgba(28,28,42,.08);
  --fact-bg: rgba(239,239,248,.86);
  --fact-line: rgba(37,37,48,.07);
  --chip-bg: rgba(255,255,255,.78);
  --chip-line: rgba(35,35,44,.12);
  --chip-active: #1f1f24;
  --chip-active-text: #fff;
  --review-bg: linear-gradient(180deg, rgba(255,255,255,.96), rgba(242,242,250,.98));
  --avatar-bg: #202025;
  --avatar-text: #fff;
  --arrow-bg: rgba(255,255,255,.94);
  --arrow-line: rgba(34,34,45,.12);
  --arrow-color: #292932;
  --dot-bg: #d4d3df;
  --dot-active: #282832;
  --input-bg: rgba(255,255,255,.85);
  --input-line: rgba(32,32,40,.13);
  --input-focus: #595a77;
  --input-focus-bg: #fff;
  --focus-shadow: 0 0 0 4px rgba(89,90,119,.12);
  --footer-text: #6f6d7a;
  --footer-heading: #2c2c34;
  --legal-bg: linear-gradient(180deg, #f7f7fb 0%, #efeff8 100%);
  background: radial-gradient(circle at top right, rgba(222,222,255,.9), transparent 32%), linear-gradient(180deg, #fbfbfd 0%, #f1f1f8 45%, #f8f7f2 100%);
}
.theme-one .hero-title-card { top: 16px; max-width: 290px; }
.theme-one .hero-media img { object-position: 50% 50%; }
