/*
Theme Name: Wellness Catalog
Theme URI: https://example.local/
Author: Wellness
Description: Premium WordPress theme for a wellness/recovery equipment catalog with dynamic categories (massage chairs, cryo, saunas, SPA capsules, compression, cosmetology, salt rooms, SPA pools, IR blankets, shower cabins). Forked from massage-chair-reference.
Version: 1.8.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: wellness-catalog
*/

:root {
  /* Wellness palette — design-direction.md, default bronze accent.
     Token names keep the inherited --mc-* prefix to avoid touching 1000+
     existing rules. New tokens (--mc-bg-dark, --mc-on-dark, etc.) live
     alongside for the wellness components added Day 2+. */
  --mc-bg: #ebece8;
  --mc-surface: #ffffff;
  --mc-surface-soft: #dcdeda;
  --mc-bg-dark: #131419;
  --mc-ink: #15161b;
  --mc-muted: #65686a;
  --mc-muted-soft: #969997;
  --mc-on-dark: #e8e9e6;
  --mc-on-dark-muted: rgba(232, 233, 230, 0.72);
  --mc-line: #d5d7d2;
  --mc-line-strong: #bec0ba;
  --mc-accent: #c25a3a;
  --mc-accent-strong: #93401f;
  --mc-accent-soft: #f1d9cd;
  --mc-blue: #286fd8;
  --mc-red: #de3346;
  --mc-green: #3a5a40;
  --mc-radius: 8px;
  --mc-radius-card: 16px;
  --mc-radius-pill: 999px;
  --mc-shadow: 0 22px 55px rgba(29, 23, 16, 0.12);
  --mc-shadow-card: 0 4px 16px rgba(26, 26, 26, 0.06);
  --mc-shadow-card-hover: 0 8px 24px rgba(26, 26, 26, 0.10);
  --mc-container: min(1280px, calc(100vw - 32px));
  --mc-font-display: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  --mc-font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--mc-font-body);
  color: var(--mc-ink);
  background: var(--mc-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .hero h1, .section-title {
  font-family: var(--mc-font-display);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.mcr-motion-ready .motion-reveal,
.mcr-motion-ready .motion-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--motion-index, 0) * 55ms);
}

.mcr-motion-ready .motion-reveal.is-visible,
.mcr-motion-ready .motion-stagger > .is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.mcr-motion-ready .hero__copy {
  animation: heroCopyIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mcr-motion-ready .motion-reveal,
  .mcr-motion-ready .motion-stagger > * {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--mc-container);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--mc-accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section[id],
.lifestyle-collection[id] {
  scroll-margin-top: 118px;
}

.section--soft {
  background: var(--mc-surface);
}

.section-title {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}

.section-lead {
  max-width: 680px;
  margin: -14px 0 32px;
  color: var(--mc-muted);
  font-size: 18px;
}

.button,
.wp-block-button__link,
.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--mc-accent);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.wp-block-button__link:hover,
.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  background: var(--mc-accent-strong);
  box-shadow: 0 14px 30px rgba(181, 122, 49, 0.24);
}

.button--light {
  background: #fff;
  color: var(--mc-accent-strong);
  border-color: rgba(255, 255, 255, 0.68);
}

.button--light:hover {
  background: #f6efe5;
  color: var(--mc-accent-strong);
}

.button--ghost {
  background: transparent;
  color: var(--mc-ink);
  border-color: var(--mc-line);
}

.button--ghost:hover {
  background: var(--mc-ink);
  color: #fff;
  border-color: var(--mc-ink);
}

.topline {
  position: relative;
  z-index: 70;
  background: #18120d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  border-bottom: 1px solid rgba(222, 216, 207, 0.72);
  box-shadow: 0 16px 42px rgba(29, 23, 16, 0.08);
  backdrop-filter: blur(22px);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.home .site-header {
  margin-bottom: -76px;
}

.home .site-header:not(.is-scrolled) {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 12, 10, 0.62), rgba(15, 12, 10, 0.28));
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 122, 49, 0.72), transparent);
  opacity: 0.58;
  pointer-events: none;
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 18, 12, 0.12);
  transition: background 0.22s ease, color 0.22s ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #2f2d2a;
  font-size: 15px;
  font-weight: 800;
}

.home .site-header:not(.is-scrolled) .main-nav {
  color: rgba(255, 255, 255, 0.88);
}

.home .site-header:not(.is-scrolled) .brand-mark {
  background: rgba(255, 255, 255, 0.92);
}

.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.home .site-header:not(.is-scrolled) .header-actions .button {
  background: #fff;
  color: var(--mc-accent-strong);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 40px));
  color: #fff;
  overflow: hidden;
  background:
    url("assets/images/hero-lifestyle-generated.png") center / cover no-repeat,
    linear-gradient(135deg, #211a14 0%, #12100d 54%, #3a2b1e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 10, 0.82) 0%, rgba(18, 14, 10, 0.52) 38%, rgba(18, 14, 10, 0.08) 72%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.18), rgba(18, 14, 10, 0.14)),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 116px 116px, 116px 116px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(820px, calc(100vh - 40px));
  padding: 120px 0 76px;
}

.hero__copy {
  max-width: 640px;
}

.hero .eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 14, 10, 0.48);
  color: var(--mc-accent);
  backdrop-filter: blur(12px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.95;
}

.hero p {
  max-width: 560px;
  margin: 20px 0 28px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

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

.lifestyle-collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #14100d;
}

.collection-tile {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 42px;
  color: #fff;
  isolation: isolate;
}

.collection-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--tile-image) center / cover no-repeat,
    linear-gradient(145deg, #eadfce, #8f735d);
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(16, 12, 9, 0.1), rgba(16, 12, 9, 0.72));
  transition: background 0.3s ease;
}

.collection-tile:hover::before {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.04);
}

.collection-tile:hover::after {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(16, 12, 9, 0.18), rgba(16, 12, 9, 0.84));
}

.collection-tile__content {
  width: min(100%, 520px);
  text-align: center;
  transform: translateY(34px);
  transition: transform 0.28s ease;
}

.collection-tile__content span,
.collection-tile__content em {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-tile__content h2 {
  margin: 8px 0 12px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.collection-tile__content p,
.collection-tile__content em {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.collection-tile__content p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
}

.collection-tile__content em {
  min-height: 44px;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--mc-accent-strong);
}

.collection-tile:hover .collection-tile__content,
.collection-tile:focus-visible .collection-tile__content,
.collection-tile--featured .collection-tile__content {
  transform: translateY(0);
}

.collection-tile:hover .collection-tile__content p,
.collection-tile:hover .collection-tile__content em,
.collection-tile:focus-visible .collection-tile__content p,
.collection-tile:focus-visible .collection-tile__content em,
.collection-tile--featured .collection-tile__content p,
.collection-tile--featured .collection-tile__content em {
  opacity: 1;
  transform: translateY(0);
}

.category-grid,
.benefit-grid,
.product-grid,
.steps-grid,
.seo-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card,
.benefit-card,
.product-card,
.step-card,
.seo-card,
.filter-panel,
.product-summary,
.spec-card {
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
}

.category-card {
  min-height: 190px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,1)),
    var(--image, none) center / cover;
}

.category-card h3,
.benefit-card h3,
.step-card h3,
.seo-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-card p,
.benefit-card p,
.step-card p,
.seo-card p {
  margin: 0;
  color: var(--mc-muted);
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  padding: 22px;
}

.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 122, 49, 0.36);
  box-shadow: 0 20px 48px rgba(36, 29, 22, 0.12);
}

.product-card--unavailable .product-card__media img,
.product-card--unavailable .product-card__body {
  opacity: 0.72;
}

.product-card.is-filtered-out {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 24px;
  background: linear-gradient(145deg, #f8f8f8, #e9e3dc);
}

.product-card__media img {
  width: min(100%, 310px);
  max-height: 230px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

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

.product-card__video {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  max-width: calc(100% - 28px);
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

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

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.badge--sale {
  background: #ffe8e9;
  color: #bd2230;
}

.badge--hit {
  background: #e8f4ec;
  color: #1f7c3f;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.product-card__status {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--mc-green);
  font-size: 13px;
  font-weight: 900;
}

.product-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  margin: 14px 0 18px;
  color: var(--mc-muted);
  font-size: 14px;
}

.price {
  margin-top: auto;
  font-size: 26px;
  font-weight: 900;
}

.price-stack,
.product-price-stack {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.old-price {
  color: #9a948a;
  font-size: 15px;
  font-weight: 800;
  text-decoration: line-through;
}

.cashback {
  color: var(--mc-accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.installment {
  margin: 4px 0 16px;
  color: var(--mc-muted);
  font-size: 14px;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card__tools {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.product-card__tools button {
  border: 0;
  background: transparent;
  color: var(--mc-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.product-card__tools button:hover {
  color: var(--mc-accent-strong);
}

.scenario-lab__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.scenario-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.scenario-controls button,
.tech-tabs__nav button {
  min-height: 52px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
  color: var(--mc-ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.scenario-controls button:hover,
.tech-tabs__nav button:hover {
  transform: translateY(-1px);
}

.scenario-controls button.is-active,
.tech-tabs__nav button.is-active {
  border-color: var(--mc-ink);
  background: var(--mc-ink);
  color: #fff;
}

.scenario-result {
  overflow: hidden;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
  box-shadow: var(--mc-shadow);
}

.scenario-result img {
  width: 100%;
  height: 330px;
  padding: 28px;
  background: linear-gradient(145deg, #f8f5ef, #e9dfd3);
  object-fit: contain;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.scenario-result img.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.scenario-result__body {
  padding: 24px;
}

.scenario-result__body span,
.tech-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--mc-accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-result h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.05;
}

.scenario-result p {
  margin: 0 0 20px;
  color: var(--mc-muted);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
}

.product-showcase-section .section-title {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 64px);
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
  box-shadow: var(--mc-shadow);
}

.featured-product__media {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 24px;
  background:
    radial-gradient(circle at 52% 42%, rgba(181, 122, 49, 0.16), transparent 34%),
    linear-gradient(145deg, #f7f3ed, #e7dfd3);
}

.featured-product__media img {
  width: min(100%, 380px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(29, 23, 16, 0.22));
}

.featured-product__body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.featured-product h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1;
}

.featured-product p {
  margin: 0 0 18px;
  color: var(--mc-muted);
  font-size: 17px;
}

.featured-product__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.featured-product__specs div {
  padding: 12px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fbfaf7;
}

.featured-product__specs dt {
  color: var(--mc-muted);
  font-size: 13px;
}

.featured-product__specs dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.featured-product__purchase {
  display: grid;
  gap: 3px;
  margin-top: auto;
  margin-bottom: 14px;
}

.featured-product__purchase strong {
  font-size: 30px;
  line-height: 1;
}

.featured-product__purchase span {
  color: var(--mc-muted);
  font-size: 14px;
}

.featured-product__service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.featured-product__service span {
  padding: 10px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fbfaf7;
  color: #3c3934;
  font-size: 13px;
  font-weight: 900;
}

.product-rail {
  display: grid;
  gap: 12px;
}

.product-rail__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 118px;
  padding: 12px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-rail__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(36, 29, 22, 0.09);
}

.product-rail__item img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: var(--mc-radius);
  background: #f3eee7;
}

.product-rail__item span {
  display: grid;
  gap: 6px;
  color: var(--mc-muted);
  font-size: 14px;
}

.product-rail__item strong {
  color: var(--mc-ink);
  font-size: 17px;
}

.product-rail__item--catalog {
  grid-template-columns: 1fr;
  background: var(--mc-ink);
  color: #fff;
}

.product-rail__item--catalog strong,
.product-rail__item--catalog span {
  color: #fff;
}

.tech-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.tech-tabs {
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(36, 29, 22, 0.08);
}

.tech-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--mc-line);
}

.tech-panel {
  display: none;
  min-height: 250px;
  padding: 34px;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76)),
    url("assets/images/chair-product-clean.png") right 20px bottom 8px / min(300px, 42%) no-repeat;
}

.tech-panel.is-active {
  display: block;
  animation: panelIn 0.28s ease both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-panel h3 {
  max-width: 420px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.tech-panel p {
  max-width: 440px;
  margin: 0 0 26px;
  color: var(--mc-muted);
  font-size: 18px;
}

.steps-grid {
  grid-template-columns: repeat(5, 1fr);
}

.step-card {
  padding: 20px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mc-accent);
  color: #fff;
  font-weight: 900;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.filter-toggle {
  display: none;
  width: 100%;
  margin-bottom: 14px;
}

.filter-panel {
  position: sticky;
  top: 148px;
  max-height: calc(100vh - 168px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px;
  background:
    linear-gradient(180deg, #fff, #faf7f2);
  box-shadow: 0 18px 46px rgba(36, 29, 22, 0.08);
  scrollbar-width: thin;
}

.filter-panel::-webkit-scrollbar {
  width: 8px;
}

.filter-panel::-webkit-scrollbar-thumb {
  background: rgba(36, 29, 22, 0.18);
  border-radius: 999px;
}

.filter-panel__head {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 122, 49, 0.26), transparent 42%),
    #181818;
  color: #fff;
}

.filter-panel__head span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-panel__head strong {
  font-size: 18px;
  line-height: 1.05;
}

.filter-panel__head p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 6px;
  border-top: 1px solid rgba(222, 216, 207, 0.72);
}

.filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.filter-group h3 {
  flex: 0 0 100%;
  margin: 0 0 2px;
  color: #6c6257;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.filter-option {
  position: relative;
  display: inline-flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(222, 216, 207, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #34312d;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.filter-option:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 122, 49, 0.42);
  background: #fffaf3;
}

.filter-option:has(input:checked) {
  border-color: #181818;
  background: #181818;
  color: #fff;
}

.filter-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.filter-panel__actions {
  padding: 12px 6px 6px;
}

.filter-panel__actions .button {
  width: 100%;
  min-height: 42px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(36, 29, 22, 0.06);
}

.catalog-toolbar__copy {
  display: grid;
  gap: 3px;
}

.catalog-toolbar__copy span {
  color: var(--mc-muted);
  font-size: 14px;
  font-weight: 700;
}

.catalog-toolbar select {
  min-width: 190px;
  min-height: 44px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(222, 216, 207, 0.95);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #181818 50%) right 18px center / 6px 6px no-repeat,
    linear-gradient(135deg, #181818 50%, transparent 50%) right 13px center / 6px 6px no-repeat,
    #fff;
  color: var(--mc-ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-page {
  padding-top: 48px;
}

.catalog-hero {
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.84fr);
  gap: 34px;
  align-items: center;
  padding: 38px 44px;
  border-radius: var(--mc-radius);
  background:
    radial-gradient(circle at 82% 22%, rgba(181,122,49,0.2), transparent 32%),
    linear-gradient(145deg, #fffdf9, #e9dfd1 72%, #ded1c1);
  box-shadow: var(--mc-shadow);
  overflow: hidden;
}

.catalog-hero__copy {
  position: relative;
  z-index: 1;
}

.catalog-hero h1 {
  max-width: 660px;
  margin: 0 0 12px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 0.98;
}

.catalog-hero p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--mc-muted);
  font-size: 18px;
}

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

.catalog-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.catalog-hero__stats span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(222, 216, 207, 0.8);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: #3b332a;
  font-weight: 800;
}

.catalog-hero__stats strong {
  color: var(--mc-accent-strong);
}

.catalog-hero__visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(222, 216, 207, 0.84);
  border-radius: var(--mc-radius);
  background: #1b1612;
  box-shadow: 0 24px 70px rgba(36, 29, 22, 0.2);
  overflow: hidden;
}

.catalog-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 14, 10, 0.05), rgba(18, 14, 10, 0.42)),
    linear-gradient(90deg, rgba(18, 14, 10, 0.02), rgba(18, 14, 10, 0.22));
}

.catalog-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 58% center;
}

.catalog-hero__panel {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  max-width: 360px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(20, 16, 12, 0.68);
  backdrop-filter: blur(14px);
  color: #fff;
}

.catalog-hero__panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-hero__panel strong {
  max-width: 300px;
  font-size: 22px;
  line-height: 1.08;
}

.catalog-hero__panel small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: -8px 0 22px;
}

.catalog-service-strip span {
  display: grid;
  gap: 3px;
  min-height: 68px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
  color: #3c3934;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(36, 29, 22, 0.06);
}

.catalog-service-strip strong {
  color: var(--mc-ink);
  font-size: 16px;
}

.catalog-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: -8px 0 24px;
}

.catalog-shortcuts span {
  color: var(--mc-muted);
  font-weight: 900;
}

.catalog-shortcuts a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--mc-line);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.catalog-shortcuts a:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 122, 49, 0.42);
  background: #fbf5ed;
}

.catalog-empty,
.catalog-choice__grid,
.product-detail-grid {
  display: grid;
  gap: 18px;
}

.catalog-empty {
  padding: 28px;
  border: 1px dashed var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-layout.is-loading {
  opacity: 0.68;
  pointer-events: none;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px 0 0;
}

.catalog-pagination a,
.catalog-pagination span {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--mc-line);
  border-radius: 999px;
  background: #fff;
  color: var(--mc-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.catalog-pagination a {
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.catalog-pagination a:hover,
.catalog-pagination a.is-active {
  border-color: var(--mc-accent-strong);
  background: var(--mc-accent);
  color: #fff;
}

.catalog-pagination a:hover {
  transform: translateY(-1px);
}

.catalog-pagination span[aria-disabled="true"] {
  opacity: 0.42;
}

.catalog-choice {
  padding-top: 0;
}

.catalog-choice__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  align-items: center;
  padding: 34px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
  box-shadow: 0 14px 42px rgba(36, 29, 22, 0.08);
}

.catalog-choice__steps,
.consultation-steps {
  display: grid;
  gap: 10px;
}

.catalog-choice__steps span,
.consultation-steps span,
.product-offers span {
  padding: 13px 14px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fbfaf7;
  font-weight: 900;
}

.product-page {
  padding: 46px 0 74px;
}

.product-summary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: start;
  padding: 34px;
  box-shadow: var(--mc-shadow);
}

.product-media-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-gallery.has-thumbs {
  grid-template-columns: 74px 1fr;
}

.product-gallery__thumbs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.product-gallery__thumbs button {
  display: grid;
  width: 74px;
  height: 74px;
  padding: 8px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #e8e9e6;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--mc-accent-strong);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__main {
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #e8e9e6;
}

.product-gallery__main {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 34px;
}

.product-gallery__main img {
  max-height: 460px;
  object-fit: contain;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-gallery__main img.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.product-description {
  padding: 24px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
}

.product-description h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.product-description :where(p, ul, ol) {
  margin: 0 0 14px;
  color: var(--mc-muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-description :where(p, ul, ol):last-child {
  margin-bottom: 0;
}

.product-info h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.rating {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--mc-green);
  font-weight: 900;
}

.rating span {
  color: var(--mc-muted);
  font-weight: 700;
}

.product-info .price {
  font-size: 34px;
}

.product-info .product-price-stack {
  margin: 24px 0 4px;
}

.swatches {
  display: flex;
  gap: 10px;
  margin: 20px 0 24px;
}

.swatch {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--mc-line);
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.quick-order-box {
  margin: -4px 0 18px;
  padding: 16px;
  border: 1px solid rgba(181, 122, 49, 0.32);
  border-radius: var(--mc-radius);
  background: #fff8ef;
}

.quick-order-box strong {
  display: block;
  margin-bottom: 4px;
}

.quick-order-box p {
  margin: 0;
  color: var(--mc-muted);
}

.product-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.product-offers span {
  min-height: 58px;
  color: #3c3934;
  font-size: 13px;
}

.product-logistics {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.product-logistics a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mc-line);
  color: #34312d;
  font-weight: 900;
}

.product-logistics a::after {
  content: "→";
  color: var(--mc-accent-strong);
}

.delivery-box {
  padding: 18px;
  border-radius: var(--mc-radius);
  background: #f3f0ea;
  color: #3c3934;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.spec-card {
  padding: 18px;
}

.spec-card span {
  display: block;
  color: var(--mc-muted);
  font-size: 13px;
}

.spec-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.feature-media {
  min-height: 420px;
  border-radius: var(--mc-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.24)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.video-consult {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.video-consult__media {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--mc-radius);
  background:
    linear-gradient(120deg, rgba(21,21,21,0.78), rgba(21,21,21,0.18)),
    url("assets/images/chair-product-clean.png") center / min(470px, 82%) no-repeat,
    linear-gradient(145deg, #eee8df, #d9cbb9);
  box-shadow: var(--mc-shadow);
}

.video-consult__media span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: #fff;
  color: var(--mc-accent-strong);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(29, 23, 16, 0.24);
}

.product-detail-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.detail-card {
  padding: 30px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
  box-shadow: 0 14px 42px rgba(36, 29, 22, 0.08);
}

.detail-card--wide {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72)),
    url("assets/images/chair-product-clean.png") right 24px bottom 10px / min(320px, 42%) no-repeat;
}

.detail-card h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
}

.detail-card p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 18px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.detail-list span {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: rgba(255,255,255,0.82);
}

.consultation-cta--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.trust-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.trust-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-showcase__grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(36, 29, 22, 0.08);
}

.trust-showcase__grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--mc-accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-showcase__grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.trust-showcase__grid p {
  margin: 0;
  color: var(--mc-muted);
}

.seo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.seo-card {
  padding: 22px;
}

.site-footer {
  padding: 44px 0;
  background: #161616;
  color: rgba(255,255,255,0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.mobile-bottom-nav {
  display: none;
}

.hero__content {
  justify-content: flex-start;
}

.hero--premium::before {
  background:
    linear-gradient(90deg, rgba(20, 15, 10, 0.84) 0%, rgba(20, 15, 10, 0.5) 38%, rgba(20, 15, 10, 0.08) 76%),
    linear-gradient(180deg, rgba(20, 15, 10, 0.26) 0%, rgba(20, 15, 10, 0.1) 45%, rgba(20, 15, 10, 0.18) 100%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 116px 116px, 116px 116px;
}

.section-title {
  max-width: 820px;
}

.category-card,
.product-card,
.benefit-card,
.step-card {
  box-shadow: 0 14px 42px rgba(36, 29, 22, 0.08);
}

.consultation-cta {
  padding: 42px;
  border: 1px solid var(--mc-line);
  border-radius: var(--mc-radius);
  background: var(--mc-surface);
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 0;
  }

  .header-row {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .trust-strip__grid,
  .category-grid,
  .benefit-grid,
  .product-grid,
  .steps-grid,
  .seo-grid,
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout,
  .product-summary,
  .feature-split,
  .catalog-hero,
  .scenario-lab__grid,
  .product-showcase,
  .featured-product,
  .tech-story__grid,
  .catalog-choice__grid,
  .product-detail-grid,
  .consultation-cta--split,
  .video-consult,
  .trust-showcase {
    grid-template-columns: 1fr;
  }

  .catalog-service-strip,
  .catalog-shortcuts,
  .trust-showcase__grid,
  .featured-product__service {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .collection-tile {
    min-height: 360px;
    padding: 30px;
  }

  .hero__content {
    align-items: center;
  }

  .product-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-rail__item {
    grid-template-columns: 1fr;
    min-height: 100%;
  }

  .product-rail__item img {
    width: 100%;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filter-panel {
    display: none;
    position: static;
  }

  .filter-panel.is-open {
    display: block;
  }

  .product-gallery.has-thumbs {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(5, 1fr);
    order: 2;
  }

  .product-gallery__thumbs button {
    width: 100%;
  }

}

@media (max-width: 640px) {
  :root {
    --mc-container: min(100vw - 24px, 1180px);
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .topline {
    font-size: 13px;
  }

  .header-row {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-actions .button {
    display: none;
  }

  .home .site-header {
    margin-bottom: -66px;
  }

  .hero,
  .hero__content {
    min-height: 700px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 14, 10, 0.52) 0%, rgba(18, 14, 10, 0.96) 76%),
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: auto, 82px 82px, 82px 82px;
  }

  .hero__content {
    align-items: flex-end;
    padding: 96px 0 42px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .category-grid,
  .benefit-grid,
  .product-grid,
  .steps-grid,
  .seo-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero,
  .product-summary,
  .consultation-cta,
  .featured-product__body,
  .featured-product__media,
  .tech-panel {
    padding: 24px;
  }

  .catalog-hero {
    background:
      linear-gradient(145deg, #f9f6f0, #e8dfd3);
  }

  .scenario-controls,
  .lifestyle-collection,
  .featured-product__specs,
  .tech-tabs__nav,
  .product-rail,
  .product-offers,
  .detail-list,
  .catalog-hero__actions,
  .catalog-hero__stats,
  .catalog-shortcuts,
  .catalog-service-strip,
  .trust-showcase__grid,
  .featured-product__service {
    grid-template-columns: 1fr;
  }

  .collection-tile {
    min-height: 360px;
    padding: 26px 22px;
  }

  .collection-tile__content {
    transform: none;
  }

  .collection-tile__content h2 {
    font-size: 38px;
  }

  .collection-tile__content p,
  .collection-tile__content em {
    opacity: 1;
    transform: none;
  }

  .collection-tile__content p {
    font-size: 16px;
  }

  .catalog-hero__actions,
  .catalog-hero__stats {
    display: grid;
  }

  .catalog-hero__visual {
    min-height: 330px;
  }

  .catalog-hero__visual img {
    min-height: 330px;
    max-height: none;
    object-position: 67% center;
  }

  .catalog-hero__panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .catalog-hero__panel strong {
    font-size: 18px;
  }

  .scenario-result img {
    height: 240px;
  }

  .featured-product__media {
    min-height: 340px;
  }

  .product-rail__item {
    grid-template-columns: 96px 1fr;
  }

  .product-rail__item--catalog {
    grid-template-columns: 1fr;
  }

  .product-rail__item img {
    width: 96px;
    height: 96px;
  }

  .product-card__actions,
  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .product-gallery__main {
    min-height: 340px;
    padding: 20px;
  }

  .product-description {
    padding: 20px;
  }

  .product-description h2 {
    font-size: 26px;
  }

  .product-description :where(p, ul, ol) {
    font-size: 16px;
  }

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

  .mobile-bottom-nav {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--mc-line);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-bottom-nav a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: #3a3631;
    font-size: 12px;
    font-weight: 800;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .catalog-hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero p,
  .catalog-hero p {
    font-size: 16px;
  }
}

/* ======================================================================
   Day 2 — Wellness components: hero lead form, footer columns, header chrome
   ====================================================================== */

/* -- Hero with inline lead form -------------------------------------- */
.hero--wellness {
  min-height: min(720px, calc(100vh - 40px));
}
.hero--wellness .hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  min-height: min(720px, calc(100vh - 40px));
  padding: 120px 0 80px;
}
.hero--wellness .hero__copy {
  max-width: none;
}
.hero--wellness h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero--wellness .hero__sub {
  margin: 24px 0 32px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--mc-on-dark-muted);
  max-width: 540px;
  text-shadow: none;
}
.hero--wellness .hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.hero--wellness .hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(247, 246, 243, 0.18);
  border-radius: var(--mc-radius-pill);
  background: rgba(247, 246, 243, 0.04);
  color: var(--mc-on-dark);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* -- Lead form (used in hero, footer, contacts page) ---------------- */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--mc-surface);
  border-radius: var(--mc-radius-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  color: var(--mc-ink);
}
.lead-form__title {
  margin: 0;
  font-family: var(--mc-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}
.lead-form__sub {
  margin: -4px 0 6px;
  font-size: 14px;
  color: var(--mc-muted);
  line-height: 1.45;
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-form__field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mc-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lead-form__field input,
.lead-form__field textarea {
  padding: 14px 16px;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  background: var(--mc-bg);
  font-family: inherit;
  font-size: 16px;
  color: var(--mc-ink);
  transition: border-color 160ms ease, background 160ms ease;
}
.lead-form__field input:focus,
.lead-form__field textarea:focus {
  outline: none;
  border-color: var(--mc-accent);
  background: var(--mc-surface);
}
.lead-form__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border: none;
  border-radius: var(--mc-radius-pill);
  background: var(--mc-accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.lead-form__submit:hover:not(:disabled) {
  background: var(--mc-accent-strong);
}
.lead-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lead-form__legal {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--mc-muted-soft);
  line-height: 1.5;
}
.lead-form__legal a {
  color: var(--mc-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lead-form__message {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.lead-form__message.is-visible {
  display: block;
}
.lead-form__message--success {
  background: rgba(58, 90, 64, 0.10);
  color: var(--mc-green);
}
.lead-form__message--error {
  background: rgba(222, 51, 70, 0.08);
  color: var(--mc-red);
}

/* Variant: lead-form on dark background (footer) */
.lead-form--dark {
  background: rgba(247, 246, 243, 0.04);
  border: 1px solid rgba(247, 246, 243, 0.10);
  color: var(--mc-on-dark);
  box-shadow: none;
}
.lead-form--dark .lead-form__sub,
.lead-form--dark .lead-form__field label {
  color: var(--mc-on-dark-muted);
}
.lead-form--dark .lead-form__field input,
.lead-form--dark .lead-form__field textarea {
  background: rgba(247, 246, 243, 0.06);
  border-color: rgba(247, 246, 243, 0.16);
  color: var(--mc-on-dark);
}
.lead-form--dark .lead-form__field input::placeholder,
.lead-form--dark .lead-form__field textarea::placeholder {
  color: rgba(247, 246, 243, 0.4);
}
.lead-form--dark .lead-form__field input:focus,
.lead-form--dark .lead-form__field textarea:focus {
  background: rgba(247, 246, 243, 0.10);
  border-color: var(--mc-accent);
}
.lead-form--dark .lead-form__legal {
  color: rgba(247, 246, 243, 0.42);
}
.lead-form--dark .lead-form__legal a {
  color: rgba(247, 246, 243, 0.7);
}

/* -- Site header refinements ---------------------------------------- */
.topline {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--mc-muted);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tel {
  font-family: var(--mc-font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: var(--mc-ink);
}
.header-tel:hover {
  color: var(--mc-accent);
}

/* -- Site footer (wellness 3-column + lead form) -------------------- */
.site-footer {
  background: var(--mc-bg-dark);
  color: var(--mc-on-dark);
  padding: 96px 0 40px;
}
.site-footer .container {
  display: grid;
  gap: 80px;
}
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}
.footer-cta__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--mc-on-dark);
}
.footer-cta__copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--mc-on-dark-muted);
  max-width: 460px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  border-top: 1px solid rgba(247, 246, 243, 0.10);
}
.site-footer .footer-grid h3 {
  margin: 0 0 18px;
  font-family: var(--mc-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mc-on-dark);
}
.site-footer .footer-grid a,
.site-footer .footer-grid p {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mc-on-dark-muted);
  transition: color 160ms ease;
}
.site-footer .footer-grid a:hover {
  color: var(--mc-accent);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(247, 246, 243, 0.4);
}

/* -- Mobile (≤980) --------------------------------------------------- */
@media (max-width: 980px) {
  .hero--wellness .hero__content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 88px 0 56px;
  }
  .hero--wellness h1 {
    font-size: clamp(32px, 8vw, 48px);
  }
  .lead-form {
    padding: 24px;
  }
  .footer-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer {
    padding: 64px 0 32px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer .container {
    gap: 56px;
  }
}

/* =============================================================================
   wellness-catalog v2 — .wlc-* namespace
   Полный визуальный сброс поверх унаследованного chair-движка.
   Кинематографичная подача: dark hero, нумерованные секции, асимметричная сетка,
   крупная редакторская типографика, минимум motion. NB: классы .wlc-* должны
   жить в одиночку — не смешивать с .hero / .section / .container из старой темы.
   ============================================================================= */

:root {
  /* Тонкие токены поверх --mc-* — для удобства отладки и контраста именования. */
  --wlc-ink: #131419;
  --wlc-ink-soft: #2a2b30;
  --wlc-bg: #e8e9e6;
  --wlc-bg-soft: #d8dad5;
  --wlc-bg-card: #ffffff;
  --wlc-bg-dark: #131419;
  --wlc-bg-deep: #08090d;
  --wlc-line: #cbcdc7;
  --wlc-line-dark: rgba(232, 233, 230, 0.12);
  --wlc-muted: #65686a;
  --wlc-muted-dark: rgba(232, 233, 230, 0.6);
  --wlc-on-dark: #e8e9e6;
  --wlc-accent: #c25a3a;
  --wlc-accent-soft: rgba(194, 90, 58, 0.13);
  --wlc-accent-strong: #93401f;

  --wlc-step: 8px;
  --wlc-radius-pill: 999px;
  --wlc-radius-card: 22px;

  --wlc-shell: min(1320px, calc(100vw - 48px));
  --wlc-gutter: clamp(16px, 4vw, 56px);

  --wlc-font-display: "Manrope", "Inter", system-ui, sans-serif;
  --wlc-font-body: "Inter", system-ui, sans-serif;

  --wlc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.wlc-page {
  font-family: var(--wlc-font-body);
  color: var(--wlc-ink);
  background: var(--wlc-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wlc-shell {
  max-width: var(--wlc-shell);
  margin: 0 auto;
  padding-inline: var(--wlc-gutter);
}
.wlc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wlc-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wlc-accent);
}
.wlc-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.wlc-num {
  font-family: var(--wlc-font-display);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--wlc-accent);
}
.wlc-text-balance {
  text-wrap: balance;
}
.wlc-text-pretty {
  text-wrap: pretty;
}

/* -- Header --------------------------------------------------------- */
.wlc-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  height: 80px;
  background: rgba(244, 241, 235, 0.0);
  color: var(--wlc-ink);
  transition: background 220ms var(--wlc-ease), color 220ms var(--wlc-ease), border-color 220ms var(--wlc-ease);
  border-bottom: 1px solid transparent;
}
body.wlc-page--dark-hero .wlc-header {
  background: rgba(17, 17, 16, 0.0);
  color: var(--wlc-on-dark);
}
body.wlc-header-floating .wlc-header {
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(11, 11, 9, 0.08);
}
body.wlc-page--dark-hero.wlc-header-floating .wlc-header {
  background: rgba(17, 17, 16, 0.85);
  border-bottom-color: rgba(244, 241, 235, 0.08);
}
.wlc-header__row {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.wlc-brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--wlc-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
}
.wlc-brand::after {
  content: "·";
  color: var(--wlc-accent);
  margin-left: 4px;
  font-size: 32px;
  line-height: 0;
  position: relative;
  top: 2px;
}
.wlc-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.wlc-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
  opacity: 0.84;
  transition: opacity 160ms var(--wlc-ease), color 160ms var(--wlc-ease);
}
.wlc-nav a:hover { opacity: 1; color: var(--wlc-accent); }
.wlc-header__cta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.wlc-tel {
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}
.wlc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--wlc-radius-pill);
  border: 1px solid currentColor;
  font-family: var(--wlc-font-display);
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  transition: background 180ms var(--wlc-ease), color 180ms var(--wlc-ease);
}
.wlc-pill:hover {
  background: var(--wlc-on-dark);
  color: var(--wlc-ink);
  border-color: var(--wlc-on-dark);
}
.wlc-pill--solid {
  background: var(--wlc-accent);
  border-color: var(--wlc-accent);
  color: #fff;
}
.wlc-pill--solid:hover {
  background: var(--wlc-accent-strong);
  border-color: var(--wlc-accent-strong);
  color: #fff;
}

/* -- Hero ----------------------------------------------------------- */
.wlc-hero {
  position: relative;
  isolation: isolate;
  margin-top: -80px; /* compensate sticky header */
  padding: 200px 0 120px;
  color: var(--wlc-on-dark);
  background: var(--wlc-bg-deep);
  overflow: hidden;
}
.wlc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 75% 30%, rgba(194, 90, 58, 0.2) 0%, transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(194, 90, 58, 0.13) 0%, transparent 50%),
    linear-gradient(180deg, #0c0c0a 0%, #14130f 60%, #0a0a08 100%);
  z-index: -2;
}
.wlc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: -1;
}
.wlc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 72px;
  align-items: stretch;
  min-height: 580px;
}
.wlc-hero__copy { max-width: 720px; align-self: end; }
.wlc-hero__visual {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.0) 0%, rgba(11, 11, 9, 0.55) 100%),
    url("assets/images/hero-atmosphere.jpg") center/cover no-repeat;
  background-color: #1a1815;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}
.wlc-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 100%, rgba(194, 90, 58, 0.2) 0%, transparent 70%);
  z-index: 0;
}
.wlc-hero__visual-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wlc-on-dark);
  background: rgba(11, 11, 9, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 241, 235, 0.12);
  border-radius: 999px;
}
.wlc-hero__visual-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wlc-accent);
  box-shadow: 0 0 0 4px rgba(194, 90, 58, 0.2);
}
.wlc-hero__title {
  margin: 24px 0 28px;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 5vw, 80px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--wlc-on-dark);
  overflow-wrap: anywhere;
  hyphens: manual;
}
.wlc-hero__title em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-hero__lead {
  max-width: 540px;
  margin: 0 0 40px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--wlc-muted-dark);
}
.wlc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wlc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--wlc-line-dark);
  border-radius: var(--wlc-radius-pill);
  background: rgba(244, 241, 235, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: var(--wlc-on-dark);
}
.wlc-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wlc-accent);
}
.wlc-hero__rail {
  display: grid;
  gap: 24px;
  padding: 32px 28px;
  border: 1px solid var(--wlc-line-dark);
  border-radius: var(--wlc-radius-card);
  background: rgba(244, 241, 235, 0.03);
  backdrop-filter: blur(6px);
}
.wlc-hero__rail-title {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wlc-on-dark);
  opacity: 0.7;
}
.wlc-hero__rail-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wlc-hero__rail-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wlc-line-dark);
}
.wlc-hero__rail-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.wlc-hero__rail-item .wlc-num {
  font-size: 18px;
  color: var(--wlc-accent);
  letter-spacing: 0;
}
.wlc-hero__rail-item span {
  display: block;
  color: var(--wlc-on-dark);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.wlc-hero__rail-item small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--wlc-muted-dark);
}
.wlc-hero__bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--wlc-line-dark);
  padding-top: 32px;
  font-size: 13px;
  color: var(--wlc-muted-dark);
}
.wlc-hero__bottom strong {
  color: var(--wlc-on-dark);
  font-weight: 600;
}
.wlc-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wlc-font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wlc-on-dark);
}
.wlc-scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--wlc-accent), transparent);
  display: inline-block;
}

/* -- Manifesto strip ------------------------------------------------ */
.wlc-manifesto {
  padding: 140px 0;
  background: var(--wlc-bg);
}
.wlc-manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
}
.wlc-manifesto__quote {
  margin: 12px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-manifesto__quote em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-manifesto__support {
  display: grid;
  gap: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wlc-muted);
}
.wlc-manifesto__support p { margin: 0; max-width: 380px; }

/* -- Contacts page -------------------------------------------------- */
.wlc-contacts-hero {
  position: relative;
  isolation: isolate;
  margin-top: -80px;
  padding: 200px 0 80px;
  background: var(--wlc-bg-deep);
  color: var(--wlc-on-dark);
  overflow: hidden;
}
.wlc-contacts-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 80% 30%, rgba(194, 90, 58, 0.17) 0%, transparent 60%),
    linear-gradient(180deg, #0c0c0a 0%, #14130f 60%, #0a0a08 100%);
  z-index: -1;
}
.wlc-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(244, 241, 235, 0.55);
  letter-spacing: 0.04em;
}
.wlc-breadcrumb a { color: rgba(244, 241, 235, 0.7); text-decoration: none; transition: color 200ms; }
.wlc-breadcrumb a:hover { color: var(--wlc-accent); }
.wlc-breadcrumb span[aria-hidden] { color: rgba(244, 241, 235, 0.3); }
.wlc-contacts-hero__title {
  margin: 16px 0 18px;
  max-width: 880px;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 5vw, 80px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--wlc-on-dark);
  overflow-wrap: anywhere;
}
.wlc-contacts-hero__title em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-contacts-hero__lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 241, 235, 0.75);
}

.wlc-contacts {
  padding: 80px 0 120px;
  background: var(--wlc-bg);
}
.wlc-contacts__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.wlc-contacts__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.wlc-contacts-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--wlc-bg-card);
  border: 1px solid var(--wlc-line);
  border-radius: 18px;
  transition: border-color 240ms var(--wlc-ease), transform 240ms var(--wlc-ease), box-shadow 240ms var(--wlc-ease);
}
.wlc-contacts-card:hover {
  border-color: rgba(194, 90, 58, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -32px rgba(11, 11, 9, 0.18);
}
.wlc-contacts-card--accent {
  background: linear-gradient(135deg, var(--wlc-bg-deep) 0%, #14130f 100%);
  border-color: transparent;
  color: var(--wlc-on-dark);
}
.wlc-contacts-card--accent .wlc-contacts-card__hint { color: rgba(244, 241, 235, 0.55); }
.wlc-contacts-card--accent .wlc-contacts-card__label { color: rgba(244, 241, 235, 0.55); }
.wlc-contacts-card--accent .wlc-contacts-card__value { color: var(--wlc-on-dark); }
.wlc-contacts-card--wide { grid-column: 1 / -1; }
.wlc-contacts-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(194, 90, 58, 0.13);
  color: var(--wlc-accent);
}
.wlc-contacts-card__icon svg { width: 22px; height: 22px; }
.wlc-contacts-card__label {
  font-family: var(--wlc-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}
.wlc-contacts-card__value {
  font-family: var(--wlc-font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
  text-decoration: none;
  transition: color 200ms;
}
.wlc-contacts-card__value:hover { color: var(--wlc-accent); }
.wlc-contacts-card__value--multiline { font-size: 16px; line-height: 1.5; font-weight: 500; }
.wlc-contacts-card__hint {
  margin-top: auto;
  padding-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--wlc-muted);
}

.wlc-contacts__form-wrap { position: sticky; top: 100px; }
.wlc-contacts-form {
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--wlc-bg-deep) 0%, #14130f 100%);
  border-radius: 22px;
  color: var(--wlc-on-dark);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.5);
}
.wlc-contacts-form__title {
  margin: 14px 0 24px;
  font-family: var(--wlc-font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--wlc-on-dark);
}

.wlc-contacts-map {
  background: var(--wlc-bg);
  padding: 0 0 120px;
}
.wlc-contacts-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--wlc-bg-card);
  overflow: hidden;
}
.wlc-contacts-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wlc-contacts-map--placeholder { padding: 0 0 120px; }
.wlc-contacts-map__empty {
  padding: 80px 32px;
  background:
    repeating-linear-gradient(45deg, rgba(194, 90, 58, 0.05) 0 12px, transparent 12px 24px),
    var(--wlc-bg-card);
  border: 1px dashed var(--wlc-line);
  border-radius: 22px;
  text-align: center;
}
.wlc-contacts-map__empty h3 {
  margin: 12px 0 12px;
  font-family: var(--wlc-font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
}
.wlc-contacts-map__empty p {
  margin: 0 auto;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wlc-muted);
}
.wlc-contacts-map__empty strong {
  color: var(--wlc-ink);
  font-weight: 600;
}

@media (max-width: 980px) {
  .wlc-contacts-hero { padding: 120px 0 60px; }
  .wlc-contacts { padding: 56px 0 80px; }
  .wlc-contacts__layout { grid-template-columns: 1fr; gap: 32px; }
  .wlc-contacts__form-wrap { position: static; }
  .wlc-contacts-form { padding: 28px 22px; }
  .wlc-contacts__cards { grid-template-columns: 1fr; }
  .wlc-contacts-card { padding: 22px; }
  .wlc-contacts-map__frame { aspect-ratio: 4 / 3; }
  .wlc-contacts-map__empty { padding: 48px 22px; }
}

/* -- Home FAQ (mini accordion before CTA) -------------------------- */
.wlc-home-faq {
  padding: 0 0 120px;
  background: var(--wlc-bg);
}
.wlc-home-faq__head {
  max-width: 760px;
  margin: 0 0 40px;
}
.wlc-home-faq__head h2 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-home-faq__head h2 em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-home-faq__list { max-width: 880px; }

@media (max-width: 980px) {
  .wlc-home-faq { padding: 0 0 60px; }
  .wlc-home-faq__head { margin-bottom: 24px; }
}

/* -- Quiz modal ----------------------------------------------------- */
.wlc-quiz-trigger { font-size: 14px; padding: 14px 22px; }
.wlc-quiz {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wlc-quiz[hidden] { display: none; }
.wlc-quiz__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 9, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
  animation: wlc-quiz-fade 240ms ease both;
}
.wlc-quiz__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px 48px 32px;
  background: var(--wlc-bg);
  border-radius: 24px;
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.5);
  animation: wlc-quiz-slide 320ms var(--wlc-ease) both;
}
@keyframes wlc-quiz-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wlc-quiz-slide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.wlc-quiz__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wlc-line);
  border-radius: 50%;
  background: transparent;
  color: var(--wlc-muted);
  cursor: pointer;
  transition: color 200ms var(--wlc-ease), border-color 200ms var(--wlc-ease);
}
.wlc-quiz__close:hover { color: var(--wlc-ink); border-color: var(--wlc-ink); }
.wlc-quiz__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.wlc-quiz__progress span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(194, 90, 58, 0.2);
  transition: background 200ms var(--wlc-ease);
}
.wlc-quiz__progress span.is-active,
.wlc-quiz__progress span.is-done { background: var(--wlc-accent); }
.wlc-quiz__step { display: none; }
.wlc-quiz__step.is-active { display: block; animation: wlc-quiz-fade 220ms ease both; }
.wlc-quiz__title {
  margin: 12px 0 28px;
  font-family: var(--wlc-font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-quiz__hint {
  margin: -16px 0 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wlc-muted);
}
.wlc-quiz__options {
  display: grid;
  gap: 12px;
}
.wlc-quiz__option {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  border: 1px solid var(--wlc-line);
  background: var(--wlc-bg-card);
  border-radius: 14px;
  font-family: inherit;
  cursor: pointer;
  color: var(--wlc-ink);
  transition: border-color 200ms var(--wlc-ease), background 200ms var(--wlc-ease), transform 200ms var(--wlc-ease);
}
.wlc-quiz__option:hover {
  border-color: var(--wlc-accent);
  transform: translateX(4px);
}
.wlc-quiz__option.is-selected {
  border-color: var(--wlc-accent);
  background: rgba(194, 90, 58, 0.09);
}
.wlc-quiz__option-title {
  font-family: var(--wlc-font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wlc-quiz__option-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--wlc-muted);
}
.wlc-quiz__form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
/* override dark-CTA lead-form styles for the light modal context */
.wlc-quiz .wlc-lead-form__field label,
.wlc-quiz .wlc-lead-form__field > span {
  color: var(--wlc-muted);
}
.wlc-quiz .wlc-lead-form__field input,
.wlc-quiz .wlc-lead-form__field textarea {
  background: var(--wlc-bg-card);
  border-color: var(--wlc-line);
  color: var(--wlc-ink);
}
.wlc-quiz .wlc-lead-form__field input::placeholder,
.wlc-quiz .wlc-lead-form__field textarea::placeholder {
  color: rgba(11, 11, 9, 0.35);
}
.wlc-quiz .wlc-lead-form__field input:focus,
.wlc-quiz .wlc-lead-form__field textarea:focus {
  border-color: var(--wlc-accent);
  background: rgba(194, 90, 58, 0.05);
}
.wlc-quiz__submit { width: 100%; padding: 16px 24px; font-size: 15px; }
.wlc-quiz__error {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(192, 60, 60, 0.08);
  color: #c03c3c;
  font-size: 13px;
  line-height: 1.5;
}
.wlc-quiz__nav {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}
.wlc-quiz__back {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 13px;
  color: var(--wlc-muted);
  cursor: pointer;
  padding: 8px 0;
  letter-spacing: 0.04em;
  transition: color 200ms var(--wlc-ease);
}
.wlc-quiz__back:hover { color: var(--wlc-ink); }
.wlc-quiz__done {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  color: var(--wlc-ink);
}
.wlc-quiz__done svg {
  color: var(--wlc-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wlc-quiz__done p { color: var(--wlc-muted); font-size: 14px; line-height: 1.6; max-width: 420px; }
.wlc-quiz__done a { color: var(--wlc-accent); text-decoration: none; font-weight: 600; }
@media (max-width: 600px) {
  .wlc-quiz { padding: 0; align-items: stretch; }
  .wlc-quiz__panel {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
    padding: 56px 20px 24px;
  }
  .wlc-quiz__title { font-size: 22px; }
}

/* -- Trust section (proof signals) ---------------------------------- */
.wlc-proof {
  padding: 0 0 120px;
  background: var(--wlc-bg);
}
.wlc-proof__head {
  max-width: 760px;
  margin: 0 0 56px;
}
.wlc-proof__head h2 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-proof__head h2 em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.wlc-proof-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--wlc-bg-card);
  border: 1px solid var(--wlc-line);
  border-radius: 18px;
  transition: transform 240ms var(--wlc-ease), border-color 240ms var(--wlc-ease), box-shadow 240ms var(--wlc-ease);
}
.wlc-proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 90, 58, 0.42);
  box-shadow: 0 20px 60px -32px rgba(11, 11, 9, 0.18);
}
.wlc-proof-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(194, 90, 58, 0.13);
  color: var(--wlc-accent);
}
.wlc-proof-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wlc-proof-card__title {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
}
.wlc-proof-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wlc-muted);
}
.wlc-proof__quote {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 40px;
  background: linear-gradient(135deg, var(--wlc-bg-deep) 0%, #14130f 100%);
  border-radius: 22px;
  color: var(--wlc-on-dark);
}
.wlc-proof__quote blockquote {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.wlc-proof__quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
  border-left: 1px solid rgba(244, 241, 235, 0.15);
}
.wlc-proof__quote figcaption strong {
  font-family: var(--wlc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--wlc-on-dark);
}
.wlc-proof__quote figcaption span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 241, 235, 0.55);
}

/* -- Categories grid (7 направлений, asymmetric) -------------------- */
.wlc-categories {
  padding: 0 0 140px;
  background: var(--wlc-bg);
}
.wlc-categories__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.wlc-categories__head h2 {
  margin: 16px 0 0;
  max-width: 720px;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wlc-categories__counter {
  flex-shrink: 0;
  font-family: var(--wlc-font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}
.wlc-categories__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.wlc-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 32px;
  border-radius: var(--wlc-radius-card);
  background-color: var(--wlc-bg-dark);
  background-size: cover;
  background-position: center;
  color: var(--wlc-on-dark);
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transition: transform 320ms var(--wlc-ease), box-shadow 320ms var(--wlc-ease), background-size 600ms var(--wlc-ease);
}
.wlc-cat::before {
  /* Subtle inner glow on hover — accent visible only on interaction */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 30%, rgba(194, 90, 58, 0.24) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 320ms var(--wlc-ease);
  z-index: 0;
  pointer-events: none;
}
.wlc-cat > * { position: relative; z-index: 1; }
.wlc-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -25px rgba(11, 11, 9, 0.55);
  background-size: 110%;
}
.wlc-cat:hover::before { opacity: 1; }
.wlc-cat__num {
  font-family: var(--wlc-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wlc-accent);
}
.wlc-cat__name {
  margin: auto 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wlc-on-dark);
}
.wlc-cat__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(244, 241, 235, 0.7);
  font-weight: 500;
}
.wlc-cat__meta > span:not(.wlc-cat__count) {
  padding: 5px 10px;
  background: rgba(244, 241, 235, 0.08);
  border: 1px solid rgba(244, 241, 235, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.wlc-cat__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 5px 12px;
  background: rgba(194, 90, 58, 0.2);
  border: 1px solid rgba(194, 90, 58, 0.38);
  border-radius: 999px;
  color: var(--wlc-on-dark);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.wlc-cat__cta {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-family: var(--wlc-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 241, 235, 0.7);
  background: rgba(11, 11, 9, 0.45);
  border: 1px solid rgba(244, 241, 235, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms var(--wlc-ease), transform 220ms var(--wlc-ease), color 220ms var(--wlc-ease), border-color 220ms var(--wlc-ease);
}
.wlc-cat:hover .wlc-cat__cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--wlc-on-dark);
  border-color: rgba(194, 90, 58, 0.52);
}

/* Bottom CTA: open full catalog */
.wlc-categories__cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.wlc-categories__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 15px;
  font-family: var(--wlc-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
  border: 1px solid var(--wlc-ink);
  border-radius: 999px;
  text-decoration: none;
  transition: background 240ms var(--wlc-ease), border-color 240ms var(--wlc-ease), transform 240ms var(--wlc-ease), box-shadow 240ms var(--wlc-ease);
}
.wlc-categories__cta-arrow {
  display: inline-block;
  transition: transform 240ms var(--wlc-ease);
}
.wlc-categories__cta-link:hover {
  background: var(--wlc-accent);
  border-color: var(--wlc-accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(194, 90, 58, 0.48);
}
.wlc-categories__cta-link:hover .wlc-categories__cta-arrow {
  transform: translateX(6px);
}
.wlc-categories__cta-note {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--wlc-muted);
}

/* asymmetric placement: row 1 = 7+5, row 2 = 6+3+3, row 3 = 4+4+4 */
.wlc-cat--feature {
  grid-column: span 7;
  min-height: 480px;
  background:
    linear-gradient(135deg, rgba(11, 11, 9, 0.7) 0%, rgba(11, 11, 9, 0.35) 60%, transparent 100%),
    var(--wlc-bg-dark);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--wlc-on-dark);
}
.wlc-cat--feature .wlc-cat__name { color: var(--wlc-on-dark); }
.wlc-cat--feature .wlc-cat__meta { color: var(--wlc-muted-dark); }
.wlc-cat--feature .wlc-cat__meta span + span::before { color: var(--wlc-line-dark); }
.wlc-cat--feature::after { color: var(--wlc-on-dark); }

.wlc-cat--md { grid-column: span 5; }
.wlc-cat--sm { grid-column: span 4; }
.wlc-cat--xs { grid-column: span 3; }
.wlc-cat--tall { grid-column: span 6; min-height: 360px; }

/* -- Process 01–04 (Alfa SPA pattern) ------------------------------- */
.wlc-process {
  padding: 140px 0;
  background: var(--wlc-bg-soft);
}
.wlc-process__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 96px;
  align-items: end;
}
.wlc-process__head h2 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wlc-process__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wlc-muted);
  max-width: 480px;
}
.wlc-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.wlc-step {
  display: grid;
  gap: 20px;
}
.wlc-step__num {
  font-family: var(--wlc-font-display);
  font-size: clamp(72px, 7vw, 112px);
  line-height: 0.85;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--wlc-accent);
}
.wlc-step__name {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
}
.wlc-step__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--wlc-muted);
}

/* -- Big numbers --------------------------------------------------- */
.wlc-numbers {
  padding: 120px 0;
  background: var(--wlc-bg);
  border-top: 1px solid var(--wlc-line);
}
.wlc-numbers__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: center;
}
.wlc-stat {
  padding: 24px;
  border-right: 1px solid var(--wlc-line);
}
.wlc-stat:last-child { border-right: 0; }
.wlc-stat__value {
  display: block;
  font-family: var(--wlc-font-display);
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--wlc-ink);
}
.wlc-stat__suffix {
  display: block;
  margin-top: 6px;
  font-family: var(--wlc-font-display);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  color: var(--wlc-accent);
}
.wlc-stat__label {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}

/* -- Cases ---------------------------------------------------------- */
.wlc-cases {
  padding: 140px 0;
  background: var(--wlc-bg-soft);
}
.wlc-cases__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.wlc-cases__head h2 {
  margin: 16px 0 0;
  max-width: 720px;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wlc-cases__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}
.wlc-case {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 32px;
  border-radius: var(--wlc-radius-card);
  overflow: hidden;
  color: var(--wlc-on-dark);
  isolation: isolate;
  background: var(--wlc-bg-dark);
}
.wlc-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.05) 0%, rgba(11, 11, 9, 0.85) 90%),
    var(--wlc-case-image, var(--wlc-bg-dark));
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: transform 600ms var(--wlc-ease);
}
.wlc-case:hover::before { transform: scale(1.04); }
.wlc-case--hero { grid-column: 1; grid-row: 1 / 3; min-height: 600px; }
.wlc-case--side { grid-column: 2; min-height: 290px; }
.wlc-case__pill {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--wlc-radius-pill);
  background: rgba(244, 241, 235, 0.16);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--wlc-on-dark);
}
.wlc-case__name {
  margin: 16px 0 8px;
  font-family: var(--wlc-font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wlc-case__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wlc-muted-dark);
  max-width: 460px;
}

/* -- Final CTA (form on dark) -------------------------------------- */
.wlc-cta {
  padding: 140px 0;
  background: var(--wlc-bg-deep);
  color: var(--wlc-on-dark);
}
.wlc-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.wlc-cta__title {
  margin: 24px 0 28px;
  font-family: var(--wlc-font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.wlc-cta__title em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-cta__lead {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wlc-muted-dark);
}
.wlc-cta__perks {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.wlc-cta__perks li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--wlc-on-dark);
}
.wlc-cta__perks li::before {
  content: "—";
  color: var(--wlc-accent);
  font-weight: 600;
}

/* -- Footer (wellness redux) --------------------------------------- */
.wlc-footer {
  background: var(--wlc-bg-dark);
  color: var(--wlc-on-dark);
  padding: 96px 0 32px;
}
.wlc-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--wlc-line-dark);
}
.wlc-footer__brand h3 {
  margin: 0 0 16px;
  font-family: var(--wlc-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.wlc-footer__brand p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--wlc-muted-dark);
  max-width: 360px;
}
.wlc-footer__col h4 {
  margin: 0 0 18px;
  font-family: var(--wlc-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wlc-on-dark);
  opacity: 0.7;
}
.wlc-footer__col a,
.wlc-footer__col p {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--wlc-muted-dark);
  transition: color 160ms var(--wlc-ease);
}
.wlc-footer__col a:hover { color: var(--wlc-accent); }
.wlc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(244, 241, 235, 0.4);
}
.wlc-footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* -- Lead form on dark (used in CTA section) ----------------------- */
.wlc-lead-form {
  display: grid;
  gap: 14px;
  padding: 36px;
  border: 1px solid var(--wlc-line-dark);
  border-radius: var(--wlc-radius-card);
  background: rgba(244, 241, 235, 0.04);
  backdrop-filter: blur(6px);
  color: var(--wlc-on-dark);
}
.wlc-lead-form__title {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wlc-lead-form__sub {
  margin: -4px 0 12px;
  font-size: 14px;
  color: var(--wlc-muted-dark);
}
.wlc-lead-form__field { display: grid; gap: 6px; }
.wlc-lead-form__field label {
  font-family: var(--wlc-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wlc-muted-dark);
}
.wlc-lead-form__field input,
.wlc-lead-form__field textarea {
  padding: 14px 16px;
  border: 1px solid var(--wlc-line-dark);
  border-radius: 12px;
  background: rgba(244, 241, 235, 0.06);
  font-family: inherit;
  font-size: 15px;
  color: var(--wlc-on-dark);
  transition: border-color 160ms var(--wlc-ease), background 160ms var(--wlc-ease);
}
.wlc-lead-form__field input::placeholder,
.wlc-lead-form__field textarea::placeholder { color: rgba(244, 241, 235, 0.32); }
.wlc-lead-form__field input:focus,
.wlc-lead-form__field textarea:focus {
  outline: none;
  border-color: var(--wlc-accent);
  background: rgba(244, 241, 235, 0.10);
}
.wlc-lead-form__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 16px 24px;
  border: none;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-accent);
  color: #fff;
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms var(--wlc-ease);
}
.wlc-lead-form__submit:hover:not(:disabled) { background: var(--wlc-accent-strong); }
.wlc-lead-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.wlc-lead-form__legal {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(244, 241, 235, 0.4);
  line-height: 1.5;
}
.wlc-lead-form__legal a { color: inherit; text-decoration: underline; }
.wlc-lead-form__message {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
}
.wlc-lead-form__message.is-visible { display: block; }
.wlc-lead-form__message--success {
  background: rgba(166, 192, 142, 0.12);
  color: #a6c08e;
}
.wlc-lead-form__message--error {
  background: rgba(232, 90, 90, 0.12);
  color: #e85a5a;
}

/* -- Reveal motion (per design-direction.md budget) ---------------- */
.wlc-reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--wlc-ease), transform 600ms var(--wlc-ease); }
.wlc-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .wlc-reveal { opacity: 1; transform: none; transition: none; }
}

/* -- Mobile (≤980) --------------------------------------------------- */
@media (max-width: 980px) {
  .wlc-header { height: 64px; }
  .wlc-nav { display: none; }
  .wlc-tel { display: none; }
  .wlc-hero { padding: 120px 0 80px; }
  .wlc-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: stretch; }
  .wlc-hero__copy { align-self: stretch; }
  .wlc-hero__visual { order: -1; min-height: 240px; border-radius: 18px; }
  .wlc-hero__visual-tag { left: 16px; bottom: 16px; }
  .wlc-hero__bottom { margin-top: 48px; flex-direction: column; align-items: flex-start; }
  .wlc-manifesto, .wlc-process, .wlc-cases, .wlc-cta, .wlc-numbers { padding: 80px 0; }
  .wlc-proof { padding: 0 0 60px; }
  .wlc-proof__head { margin-bottom: 32px; }
  .wlc-proof__grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
  .wlc-proof-card { padding: 20px; }
  .wlc-proof__quote { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .wlc-proof__quote figcaption { padding-left: 0; padding-top: 16px; border-left: 0; border-top: 1px solid rgba(244, 241, 235, 0.15); }
  .wlc-manifesto__grid, .wlc-process__head, .wlc-cta__grid { grid-template-columns: 1fr; gap: 32px; }
  .wlc-categories__head, .wlc-cases__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .wlc-categories__grid { grid-template-columns: 1fr; }
  .wlc-cat, .wlc-cat--feature, .wlc-cat--md, .wlc-cat--sm, .wlc-cat--xs, .wlc-cat--tall { grid-column: 1; min-height: 220px; padding: 24px; }
  .wlc-cat--feature { min-height: 340px; }
  .wlc-cat__cta { display: none; }
  .wlc-categories__cta { margin-top: 32px; }
  .wlc-categories__cta-link { padding: 14px 24px; font-size: 14px; }
  .wlc-process__steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .wlc-numbers__row { grid-template-columns: 1fr 1fr; }
  .wlc-stat { border-right: 0; border-bottom: 1px solid var(--wlc-line); padding: 32px 16px; }
  .wlc-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .wlc-cases__grid { grid-template-columns: 1fr; }
  .wlc-case--hero { grid-column: 1; grid-row: auto; min-height: 360px; }
  .wlc-case--side { grid-column: 1; }
  .wlc-footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
}

/* =============================================================================
   wellness-catalog v2 — Day 4-5 catalog system
   - .wlc-catalog-hub  : /catalog/ HUB листинг 7 направлений
   - .wlc-catalog      : taxonomy template (sidebar filters + grid)
   - .wlc-card         : product card (used in grids)
   ============================================================================= */

/* -- Shared term hero (used by /category/ and /purpose/) ---------------- */
.wlc-term-hero {
  position: relative;
  isolation: isolate;
  padding: 140px 0 80px;
  margin-top: -80px;
  color: var(--wlc-on-dark);
  background: var(--wlc-bg-deep);
  overflow: hidden;
}
.wlc-term-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 80% 30%, rgba(194, 90, 58, 0.17) 0%, transparent 60%),
    linear-gradient(180deg, #0c0c0a 0%, #14130f 60%, #0a0a08 100%);
  z-index: -2;
}
.wlc-term-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: -1;
}
.wlc-term-hero__crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--wlc-muted-dark);
  margin-bottom: 20px;
}
.wlc-term-hero__crumbs a { color: inherit; opacity: 0.7; }
.wlc-term-hero__crumbs a:hover { opacity: 1; color: var(--wlc-accent); }
.wlc-term-hero__crumbs span:not(:last-child)::after { content: " /"; opacity: 0.4; margin-left: 8px; }
.wlc-term-hero__title {
  margin: 8px 0 16px;
  max-width: 920px;
  font-family: var(--wlc-font-display);
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--wlc-on-dark);
}
.wlc-term-hero__lead {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--wlc-muted-dark);
}
.wlc-term-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  font-family: var(--wlc-font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wlc-muted-dark);
}
.wlc-term-hero__meta strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  color: var(--wlc-on-dark);
}

/* -- Catalog (taxonomy grid) layout: sidebar + main ------------------- */
.wlc-catalog {
  padding: 80px 0 120px;
  background: var(--wlc-bg);
}
.wlc-catalog__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.wlc-catalog__sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 32px;
}
.wlc-filter-form {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 116px);
}
.wlc-filter-head { display: none; }
.wlc-filter-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  margin: 0 -4px;
  padding: 0 4px;
}
.wlc-filter-foot {
  flex: none;
  display: grid;
  gap: 10px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--wlc-line);
}
.wlc-filter-apply {
  appearance: none;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-accent);
  color: #fff;
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms var(--wlc-ease), opacity 160ms var(--wlc-ease);
}
.wlc-filter-apply:hover:not(:disabled) { background: var(--wlc-accent-strong); }
.wlc-filter-apply:disabled { opacity: 0.45; cursor: not-allowed; }
.wlc-filter-apply.is-loading { opacity: 0.7; }
.wlc-filter-reset {
  text-align: center;
  font-size: 13px;
  color: var(--wlc-muted);
  transition: color 160ms var(--wlc-ease);
}
.wlc-filter-reset:hover { color: var(--wlc-accent); }
.wlc-filter-open { display: none; }
.wlc-filter-close {
  appearance: none;
  border: 0;
  background: none;
  font-size: 22px;
  line-height: 1;
  color: var(--wlc-ink);
  cursor: pointer;
  padding: 4px 6px;
}
.wlc-filter-group {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--wlc-line);
}
.wlc-filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}
.wlc-filter-group.is-collapsed { gap: 0; }
.wlc-filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--wlc-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}
.wlc-filter-group__toggle:hover { color: var(--wlc-accent); }
.wlc-filter-group__toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(-135deg);
  transition: transform 180ms var(--wlc-ease);
}
.wlc-filter-group.is-collapsed .wlc-filter-group__toggle::after { transform: translateY(1px) rotate(45deg); }
.wlc-filter-group.is-collapsed .wlc-filter-group__list { display: none; }
.wlc-filter-group__title {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}
.wlc-filter-group__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wlc-filter-group__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--wlc-ink);
  cursor: pointer;
  user-select: none;
}
.wlc-filter-group__item input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--wlc-line);
  border-radius: 4px;
  background: var(--wlc-bg-card);
  cursor: pointer;
  position: relative;
}
.wlc-filter-group__item input:checked {
  background: var(--wlc-accent);
  border-color: var(--wlc-accent);
}
.wlc-filter-group__item input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}
.wlc-filter-group__item:hover { color: var(--wlc-accent); }
.wlc-filter-group__count {
  margin-left: auto;
  font-size: 12px;
  color: var(--wlc-muted);
}
.wlc-filter-actions {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--wlc-line);
}
.wlc-filter-actions button {
  appearance: none;
  padding: 12px 18px;
  border: 1px solid var(--wlc-ink);
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
  font-family: var(--wlc-font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms var(--wlc-ease);
}
.wlc-filter-actions button:hover { background: var(--wlc-accent); border-color: var(--wlc-accent); }
.wlc-filter-actions a {
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--wlc-muted);
}
.wlc-filter-actions a:hover { color: var(--wlc-accent); }

.wlc-catalog__main { display: grid; gap: 24px; }
.wlc-catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--wlc-line);
  font-size: 14px;
  color: var(--wlc-muted);
}
.wlc-catalog__count strong { color: var(--wlc-ink); font-weight: 600; }
.wlc-catalog__sort label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wlc-muted); margin-right: 8px; }
.wlc-catalog__sort select {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--wlc-line);
  border-radius: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2365686a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 8px;
  background-color: var(--wlc-bg-card);
  font-family: inherit;
  font-size: 13px;
  color: var(--wlc-ink);
  cursor: pointer;
}

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

.wlc-card {
  display: flex;
  flex-direction: column;
  background: var(--wlc-bg-card);
  border-radius: var(--wlc-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--wlc-ink);
  transition: transform 220ms var(--wlc-ease), box-shadow 220ms var(--wlc-ease);
  position: relative;
}
.wlc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(20, 18, 14, 0.10);
}
.wlc-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--wlc-bg-soft);
  overflow: hidden;
}
.wlc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--wlc-ease);
}
.wlc-card:hover .wlc-card__media img { transform: scale(1.04); }
.wlc-card__brand-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  max-width: calc(100% - 32px);
  padding: 6px 12px;
  border-radius: var(--wlc-radius-pill);
  background: rgba(11, 11, 9, 0.88);
  color: var(--wlc-on-dark);
  font-family: var(--wlc-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wlc-card__stock {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: var(--wlc-radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wlc-card__stock--in    { background: rgba(58, 90, 64, 0.92); color: #f7f6f3; }
.wlc-card__stock--order { background: rgba(194, 90, 58, 0.92); color: #fff; }
.wlc-card__stock--out   { background: rgba(150, 150, 150, 0.92); color: #fff; }
.wlc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 12px;
}
.wlc-card__name {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
}
.wlc-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wlc-card__chip {
  padding: 4px 10px;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-bg-soft);
  font-size: 11px;
  font-weight: 500;
  color: var(--wlc-muted);
}
.wlc-card__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--wlc-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wlc-card__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.wlc-card__price-value {
  font-family: var(--wlc-font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-card__price-old {
  font-size: 14px;
  color: var(--wlc-muted-soft);
  text-decoration: line-through;
}
.wlc-card__installment {
  font-size: 12px;
  color: var(--wlc-muted);
}
.wlc-card__cta {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
  font-family: var(--wlc-font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: background 160ms var(--wlc-ease);
}
.wlc-card__cta:hover { background: var(--wlc-accent); }

.wlc-catalog__empty {
  grid-column: 1 / -1;
  padding: 80px 32px;
  text-align: center;
  background: var(--wlc-bg-soft);
  border-radius: var(--wlc-radius-card);
}
.wlc-catalog__empty h3 {
  margin: 0 0 12px;
  font-family: var(--wlc-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--wlc-ink);
}
.wlc-catalog__empty p {
  margin: 0 auto 24px;
  max-width: 440px;
  color: var(--wlc-muted);
}
.wlc-catalog__empty a {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-accent);
  color: #fff;
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
}

.wlc-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.wlc-pagination a,
.wlc-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--wlc-bg-card);
  border: 1px solid var(--wlc-line);
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--wlc-ink);
}
.wlc-pagination span.current {
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
  border-color: var(--wlc-ink);
}
.wlc-pagination a:hover { border-color: var(--wlc-accent); color: var(--wlc-accent); }

/* -- /catalog/ All-products section -------------------------------- */
.wlc-all-products {
  padding: 0 0 120px;
  background: var(--wlc-bg);
  scroll-margin-top: 96px;
}
.wlc-all-products__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 32px;
  flex-wrap: wrap;
}
.wlc-all-products__head > div { max-width: 760px; }
.wlc-all-products__title {
  margin: 16px 0 14px;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-all-products__title em {
  font-style: normal;
  color: var(--wlc-accent);
}
.wlc-all-products__lead {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--wlc-muted);
}
.wlc-all-products__sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.wlc-all-products__sort label {
  font-family: var(--wlc-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}
.wlc-all-products__sort select {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 38px 10px 16px;
  border: 1px solid var(--wlc-line);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2365686a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  background-color: var(--wlc-bg-card);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--wlc-ink);
  cursor: pointer;
  transition: border-color 200ms var(--wlc-ease);
}
.wlc-all-products__sort select:hover { border-color: var(--wlc-accent); }
.wlc-all-products__sort select:focus { outline: none; border-color: var(--wlc-accent); }

.wlc-all-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.wlc-all-products__empty {
  padding: 48px;
  text-align: center;
  background: var(--wlc-bg-card);
  border: 1px dashed var(--wlc-line);
  border-radius: 18px;
  color: var(--wlc-muted);
}

@media (max-width: 980px) {
  .wlc-all-products { padding: 0 0 60px; }
  .wlc-all-products__head { gap: 16px; }
  .wlc-all-products__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 600px) {
  .wlc-all-products__grid { grid-template-columns: 1fr; }
}

.wlc-bottom-cta {
  padding: 64px 0;
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
}
.wlc-bottom-cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wlc-bottom-cta h3 {
  margin: 0;
  max-width: 560px;
  font-family: var(--wlc-font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.wlc-bottom-cta__contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--wlc-muted-dark);
}
.wlc-bottom-cta__contacts a { color: var(--wlc-on-dark); font-weight: 600; }
.wlc-bottom-cta__contacts a:hover { color: var(--wlc-accent); }
.wlc-bottom-cta__buttons {
  display: flex;
  gap: 12px;
}

.wlc-catalog-hub {
  padding: 80px 0 120px;
  background: var(--wlc-bg);
}
.wlc-catalog-hub__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.wlc-catalog-hub__head h1 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--wlc-ink);
}
.wlc-catalog-hub__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wlc-muted);
  max-width: 480px;
}
.wlc-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.wlc-hub-tile {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 32px;
  background: var(--wlc-bg-card);
  border-radius: var(--wlc-radius-card);
  text-decoration: none;
  color: var(--wlc-ink);
  border: 1px solid var(--wlc-line);
  transition: transform 220ms var(--wlc-ease), border-color 220ms var(--wlc-ease), box-shadow 220ms var(--wlc-ease);
}
.wlc-hub-tile:hover {
  transform: translateY(-3px);
  border-color: var(--wlc-accent);
  box-shadow: 0 16px 40px rgba(20, 18, 14, 0.08);
}
.wlc-hub-tile__num {
  font-family: var(--wlc-font-display);
  font-size: 64px;
  line-height: 0.85;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--wlc-accent);
}
.wlc-hub-tile__body { display: grid; gap: 12px; align-content: start; }
.wlc-hub-tile__name {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wlc-hub-tile__features {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--wlc-muted);
  line-height: 1.4;
}
.wlc-hub-tile__features li::before {
  content: "—";
  margin-right: 8px;
  color: var(--wlc-accent);
}
.wlc-hub-tile__count {
  margin-top: 4px;
  font-size: 13px;
  font-family: var(--wlc-font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wlc-muted);
}
.wlc-hub-tile__count strong { color: var(--wlc-ink); }

@media (max-width: 980px) {
  .wlc-term-hero { padding: 96px 0 56px; }
  .wlc-catalog { padding: 56px 0 80px; }
  .wlc-catalog__layout { grid-template-columns: 1fr; gap: 32px; }
  .wlc-filter-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--wlc-ink);
    border-radius: var(--wlc-radius-pill);
    background: var(--wlc-bg-card);
    font-family: var(--wlc-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--wlc-ink);
    cursor: pointer;
  }
  .wlc-catalog__sidebar {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    padding: 0;
    background: var(--wlc-bg);
    transform: translateY(100%);
    transition: transform 300ms var(--wlc-ease);
  }
  .wlc-catalog__sidebar.is-open { transform: none; }
  .wlc-filter-form { max-height: none; height: 100%; }
  .wlc-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: none;
    padding: 18px 20px;
    border-bottom: 1px solid var(--wlc-line);
  }
  .wlc-filter-head__title { font-family: var(--wlc-font-display); font-size: 18px; font-weight: 700; }
  .wlc-filter-close { display: inline-flex; }
  .wlc-filter-scroll { padding: 16px 20px; margin: 0; }
  .wlc-filter-foot { padding: 16px 20px; margin: 0; box-shadow: 0 -10px 30px rgba(20, 18, 14, 0.08); }
  .wlc-grid { grid-template-columns: 1fr; gap: 16px; }
  .wlc-catalog__toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .wlc-catalog-hub__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .wlc-hub-grid { grid-template-columns: 1fr; }
  .wlc-hub-tile { padding: 24px; grid-template-columns: 56px 1fr; gap: 16px; }
  .wlc-hub-tile__num { font-size: 44px; }
  .wlc-bottom-cta__row { flex-direction: column; align-items: flex-start; }
}

/* =============================================================================
   wellness-catalog v2 — Day 6-7 product detail (.wlc-product-*)
   Hyperice-style: gallery left + sticky right + accordions + cinematic banner
   ============================================================================= */

.wlc-product { padding: 56px 0 0; background: var(--wlc-bg); }
.wlc-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

/* -- Gallery (left) -------------------------------------------------- */
.wlc-gallery { display: grid; gap: 16px; position: relative; }
.wlc-gallery__main {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--wlc-bg-soft);
  border-radius: var(--wlc-radius-card);
  overflow: hidden;
}
.wlc-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 200ms var(--wlc-ease);
}
.wlc-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.wlc-gallery__thumb {
  appearance: none;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: var(--wlc-bg-soft);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  padding: 0;
  transition: border-color 160ms var(--wlc-ease);
}
.wlc-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wlc-gallery__thumb.is-active { border-color: var(--wlc-accent); }
.wlc-gallery__thumb:hover { border-color: var(--wlc-line-strong); }

.wlc-gallery__perks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wlc-gallery__perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--wlc-bg-card);
  border: 1px solid var(--wlc-line);
  border-radius: 14px;
  transition: border-color 200ms var(--wlc-ease), background 200ms var(--wlc-ease);
}
.wlc-gallery__perk:hover {
  border-color: rgba(194, 90, 58, 0.42);
  background: rgba(194, 90, 58, 0.05);
}
.wlc-gallery__perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(194, 90, 58, 0.13);
  color: var(--wlc-accent);
}
.wlc-gallery__perk-icon svg { width: 19px; height: 19px; }
.wlc-gallery__perk > span:not(.wlc-gallery__perk-icon) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wlc-gallery__perk strong {
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
}
.wlc-gallery__perk small {
  font-size: 12px;
  line-height: 1.45;
  color: var(--wlc-muted);
}

.wlc-gallery__note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin: 4px 0 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wlc-bg-deep) 0%, #14130f 100%);
  color: rgba(244, 241, 235, 0.78);
  font-size: 13px;
  line-height: 1.55;
}
.wlc-gallery__note-tag {
  flex: 0 0 auto;
  padding: 4px 10px;
  background: rgba(194, 90, 58, 0.2);
  border: 1px solid rgba(194, 90, 58, 0.38);
  border-radius: 999px;
  font-family: var(--wlc-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wlc-on-dark);
}

@media (max-width: 980px) {
  .wlc-gallery__perks { grid-template-columns: 1fr; gap: 10px; }
  .wlc-gallery__perk { padding: 14px; }
  .wlc-gallery__note { padding: 14px 16px; }
}

.wlc-gallery__brand-pill {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: var(--wlc-radius-pill);
  background: rgba(11, 11, 9, 0.9);
  color: var(--wlc-on-dark);
  font-family: var(--wlc-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* -- Info column (right, sticky) ------------------------------------- */
.wlc-product__info {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
}
.wlc-product__crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--wlc-muted);
}
.wlc-product__crumbs a:hover { color: var(--wlc-accent); }
.wlc-product__crumbs span:not(:last-child)::after { content: " /"; opacity: 0.5; margin-left: 6px; }

.wlc-product__title {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-product__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--wlc-muted);
}
.wlc-product__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wlc-product__chip {
  padding: 6px 14px;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-bg-soft);
  font-size: 13px;
  font-weight: 500;
  color: var(--wlc-ink);
}

.wlc-product__price-block {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--wlc-bg-soft);
  border-radius: var(--wlc-radius-card);
}
.wlc-product__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--wlc-font-display);
}
.wlc-product__price-value {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--wlc-ink);
}
.wlc-product__price-old {
  font-size: 16px;
  color: var(--wlc-muted-soft);
  text-decoration: line-through;
}
.wlc-product__installment {
  font-size: 14px;
  color: var(--wlc-muted);
}
.wlc-product__stock-line {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--wlc-muted);
  padding-top: 8px;
  border-top: 1px solid var(--wlc-line);
}
.wlc-product__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wlc-accent);
  flex-shrink: 0;
}
.wlc-product__stock-dot--in     { background: #6a8a5e; }
.wlc-product__stock-dot--order  { background: var(--wlc-accent); }
.wlc-product__stock-dot--out    { background: #aa4444; }

.wlc-product__cta-row { display: grid; gap: 10px; }
.wlc-product__cta-row .wlc-pill { justify-content: center; padding: 16px 24px; font-size: 14px; }
.wlc-product__cta-row .wlc-pill--solid { color: #fff; }
.wlc-product__quick-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 13px;
  color: var(--wlc-muted);
}
.wlc-product__quick-row a { color: var(--wlc-ink); text-decoration: underline; text-underline-offset: 3px; }
.wlc-product__quick-row a:hover { color: var(--wlc-accent); }

/* -- Accordions (Hyperice pattern) ----------------------------------- */
.wlc-acc-list { display: grid; gap: 0; }
.wlc-acc {
  border-bottom: 1px solid var(--wlc-line);
}
.wlc-acc[open] { border-bottom-color: var(--wlc-accent); }
.wlc-acc__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--wlc-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--wlc-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.wlc-acc__summary::-webkit-details-marker { display: none; }
.wlc-acc__summary::after {
  content: "";
  margin-left: auto;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: currentColor;
  color: var(--wlc-muted);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='black' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='black' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  transition: transform 200ms var(--wlc-ease), color 200ms var(--wlc-ease);
}
.wlc-acc[open] > .wlc-acc__summary::after {
  color: var(--wlc-accent);
  transform: rotate(180deg);
}
.wlc-acc__body {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--wlc-muted);
}
.wlc-acc__body p { margin: 0 0 12px; }
.wlc-acc__body table {
  width: 100%;
  border-collapse: collapse;
}
.wlc-acc__body table tr td {
  padding: 8px 0;
  border-bottom: 1px solid var(--wlc-line);
  vertical-align: top;
}
.wlc-acc__body table tr td:first-child { color: var(--wlc-muted); width: 40%; padding-right: 16px; }
.wlc-acc__body table tr td:last-child { color: var(--wlc-ink); font-weight: 500; }
.wlc-acc__body table tr:last-child td { border-bottom: 0; }

/* -- Полное описание товара ----------------------------------------- */
.wlc-product-desc {
  margin: 72px 0 0;
}
.wlc-product-desc__inner {
  max-width: 760px;
}
.wlc-product-desc__inner .wlc-eyebrow {
  display: block;
  margin-bottom: 20px;
}
.wlc-product-desc__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--wlc-ink-soft);
}
.wlc-product-desc__body > * + * { margin-top: 18px; }
.wlc-product-desc__body h2,
.wlc-product-desc__body h3 {
  font-family: var(--wlc-font-display);
  color: var(--wlc-ink);
  margin-top: 32px;
  line-height: 1.25;
}
.wlc-product-desc__body h2 { font-size: 26px; }
.wlc-product-desc__body h3 { font-size: 20px; }
.wlc-product-desc__body ul,
.wlc-product-desc__body ol { padding-left: 22px; }
.wlc-product-desc__body li + li { margin-top: 8px; }
.wlc-product-desc__body img { max-width: 100%; height: auto; border-radius: var(--wlc-radius-card); }
.wlc-product-desc__body a { color: var(--wlc-accent); text-decoration: underline; }

/* -- Cinematic banner between gallery and trust ---------------------- */
.wlc-product-banner {
  margin: 96px 0 0;
  padding: 0;
  background: var(--wlc-bg-deep);
  color: var(--wlc-on-dark);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.wlc-product-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 50%, rgba(194, 90, 58, 0.2) 0%, transparent 60%),
    var(--wlc-banner-image, linear-gradient(135deg, #161513 0%, #0a0a08 100%));
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.wlc-product-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 9, 0.85) 0%, rgba(11, 11, 9, 0.4) 60%, transparent 100%);
  z-index: -1;
}
.wlc-product-banner__inner {
  padding: 140px 0;
  max-width: 720px;
}
.wlc-product-banner h2 {
  margin: 0 0 16px;
  font-family: var(--wlc-font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.wlc-product-banner p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wlc-muted-dark);
  max-width: 480px;
}

/* -- Trust 3-tile (Hyperice-pattern) --------------------------------- */
.wlc-trust { padding: 120px 0; background: var(--wlc-bg); }
.wlc-trust__head { margin-bottom: 56px; }
.wlc-trust__head h2 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wlc-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.wlc-trust-card {
  padding: 32px;
  background: var(--wlc-bg-soft);
  border-radius: var(--wlc-radius-card);
  display: grid;
  gap: 16px;
}
.wlc-trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--wlc-accent-soft);
  color: var(--wlc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wlc-font-display);
  font-size: 22px;
  font-weight: 700;
}
.wlc-trust-card h3 {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wlc-ink);
}
.wlc-trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wlc-muted);
}

/* -- Related models -------------------------------------------------- */
.wlc-related { padding: 0 0 120px; background: var(--wlc-bg); }
.wlc-related__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.wlc-related__head h2 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wlc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* -- FAQ ------------------------------------------------------------- */
.wlc-faq { padding: 0 0 120px; background: var(--wlc-bg); }
.wlc-faq__head { margin-bottom: 32px; }
.wlc-faq__head h2 {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wlc-faq__list { max-width: 880px; }

/* -- Sticky compact bar (appears on scroll) -------------------------- */
.wlc-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(11, 11, 9, 0.95);
  backdrop-filter: blur(12px);
  color: var(--wlc-on-dark);
  border-top: 1px solid rgba(244, 241, 235, 0.08);
  transform: translateY(100%);
  transition: transform 280ms var(--wlc-ease);
}
body.wlc-sticky-active .wlc-sticky-bar { transform: translateY(0); }
.wlc-sticky-bar__media {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(244, 241, 235, 0.06);
  overflow: hidden;
  flex-shrink: 0;
}
.wlc-sticky-bar__media img { width: 100%; height: 100%; object-fit: cover; }
.wlc-sticky-bar__name {
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 600;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wlc-sticky-bar__price {
  font-family: var(--wlc-font-display);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.wlc-sticky-bar .wlc-pill {
  padding: 10px 18px;
  font-size: 13px;
  border-color: var(--wlc-on-dark);
  color: var(--wlc-on-dark);
}
.wlc-sticky-bar .wlc-pill--solid {
  background: var(--wlc-accent);
  border-color: var(--wlc-accent);
  color: #fff;
}

/* -- Mobile (≤980) --------------------------------------------------- */
@media (max-width: 980px) {
  .wlc-product { padding: 24px 0 0; }
  .wlc-product__layout { grid-template-columns: 1fr; gap: 32px; }
  .wlc-product__info { position: static; }
  .wlc-product-banner__inner { padding: 80px 0; }
  .wlc-trust, .wlc-related, .wlc-faq { padding: 64px 0; }
  .wlc-trust__grid { grid-template-columns: 1fr; }
  .wlc-related__grid { grid-template-columns: 1fr; }
  .wlc-related__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wlc-sticky-bar { padding: 10px 16px; gap: 12px; }
  .wlc-sticky-bar__name { font-size: 13px; }
  .wlc-sticky-bar .wlc-pill { padding: 8px 14px; font-size: 12px; }
  .wlc-sticky-bar__price { display: none; }
}

/* =============================================================================
   wellness-catalog v2 — Day 9 chrome: skip-link, mobile burger, cookie banner
   ============================================================================= */

.wlc-skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
  border-radius: 10px;
  font-family: var(--wlc-font-display);
  font-size: 13px;
  font-weight: 600;
}
.wlc-skip-link:focus { left: 12px; outline: 2px solid var(--wlc-accent); outline-offset: 2px; }

/* -- Mobile burger button -------------------------------------------- */
.wlc-burger {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
}
.wlc-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  margin: 5px 0;
  transition: transform 240ms var(--wlc-ease), opacity 240ms var(--wlc-ease);
}
body.wlc-mobile-nav-open .wlc-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.wlc-mobile-nav-open .wlc-burger span:nth-child(2) { opacity: 0; }
body.wlc-mobile-nav-open .wlc-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Mobile nav drawer ----------------------------------------------- */
.wlc-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 32px 24px 40px;
  background: rgba(11, 11, 9, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(244, 241, 235, 0.10);
}
.wlc-mobile-nav a {
  color: var(--wlc-on-dark);
  font-family: var(--wlc-font-display);
  font-size: 18px;
  font-weight: 600;
  padding: 6px 0;
}
.wlc-mobile-nav a:hover { color: var(--wlc-accent); }
.wlc-mobile-nav__tel {
  margin-top: 12px;
  padding-top: 16px !important;
  border-top: 1px solid rgba(244, 241, 235, 0.10);
  font-size: 16px !important;
}
.wlc-mobile-nav .wlc-pill {
  margin-top: 8px;
  align-self: stretch;
  justify-content: center;
  padding: 14px 20px;
}
body.wlc-mobile-nav-open .wlc-mobile-nav { display: flex; }
body.wlc-mobile-nav-open { overflow: hidden; }

/* -- Cookie 152-ФЗ banner ------------------------------------------- */
.wlc-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--wlc-bg-deep);
  color: var(--wlc-on-dark);
  border-radius: var(--wlc-radius-card);
  border: 1px solid var(--wlc-line-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  animation: wlcCookieSlide 360ms var(--wlc-ease);
}
@keyframes wlcCookieSlide {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.wlc-cookie__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.wlc-cookie p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--wlc-muted-dark);
}
.wlc-cookie p a { color: var(--wlc-on-dark); text-decoration: underline; text-underline-offset: 2px; }
.wlc-cookie .wlc-pill { white-space: nowrap; flex-shrink: 0; }

/* -- Mobile (≤980): burger + drawer ON, desktop nav OFF -------------- */
@media (max-width: 980px) {
  .wlc-nav { display: none; }
  .wlc-tel { display: none; }
  .wlc-header__cta .wlc-pill { display: none; }
  .wlc-burger { display: block; color: var(--wlc-on-dark); }
  body.wlc-header-floating .wlc-burger { color: var(--wlc-on-dark); }
  .wlc-cookie__row { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; }
  .wlc-cookie .wlc-pill { width: 100%; justify-content: center; }
}

/* =============================================================================
   v1.0.1 polish — dynamic counters + per-category strip + visual richness
   ============================================================================= */

/* -- Big numbers extended to 6 stats -------------------------------- */
.wlc-numbers__row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 1280px) {
  .wlc-numbers__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wlc-stat:nth-child(3) { border-right: 0; }
  .wlc-stat:nth-child(4),
  .wlc-stat:nth-child(5),
  .wlc-stat:nth-child(6) { border-top: 1px solid var(--wlc-line); padding-top: 32px; margin-top: 8px; }
}
@media (max-width: 720px) {
  .wlc-numbers__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wlc-stat { border-right: 0 !important; border-bottom: 1px solid var(--wlc-line); padding: 32px 16px !important; margin-top: 0 !important; }
  .wlc-stat:nth-last-child(-n+2) { border-bottom: 0; }
}
/* Count-up base state (before is-visible) — keep the value visible to avoid CLS. */
.wlc-stat__value[data-count-up] { display: inline-block; }

/* -- Per-category strip («полный список» под numbers) --------------- */
.wlc-cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 64px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--wlc-line);
  justify-content: center;
}
.wlc-cat-strip__item a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-bg-soft);
  color: var(--wlc-ink);
  font-family: var(--wlc-font-display);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 200ms var(--wlc-ease), color 200ms var(--wlc-ease), transform 200ms var(--wlc-ease);
}
.wlc-cat-strip__item a:hover {
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
  transform: translateY(-2px);
}
.wlc-cat-strip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--wlc-radius-pill);
  background: var(--wlc-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

/* -- Manifesto vertical accent bar ---------------------------------- */
.wlc-manifesto__grid > div:first-child {
  position: relative;
  padding-left: 32px;
}
.wlc-manifesto__grid > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--wlc-accent) 0%, transparent 80%);
  border-radius: 2px;
}
@media (max-width: 980px) {
  .wlc-manifesto__grid > div:first-child { padding-left: 20px; }
}

/* -- Process 01-04 hairline connector ------------------------------- */
.wlc-process__steps {
  position: relative;
}
.wlc-process__steps::before {
  /* Hairline at numerals' baseline-ish, behind everything */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 56px;            /* aligns near the visual midpoint of the big numerals */
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(194, 90, 58, 0.38) 8%, rgba(194, 90, 58, 0.38) 92%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.wlc-step {
  position: relative;
  z-index: 1;
}
.wlc-step__num {
  position: relative;
  display: inline-block;
  background: var(--wlc-bg-soft); /* break the connector behind the numeral */
  padding-right: 16px;
}
@media (max-width: 980px) {
  .wlc-process__steps::before { display: none; }
  .wlc-step__num { background: transparent; padding-right: 0; }
}

/* -- Hub-tile (HUB-каталог) bronze gradient on hover ---------------- */
.wlc-hub-tile {
  position: relative;
  overflow: hidden;
}
.wlc-hub-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 100% at 100% 0%, rgba(194, 90, 58, 0.13) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 320ms var(--wlc-ease);
  pointer-events: none;
  z-index: 0;
}
.wlc-hub-tile:hover::after { opacity: 1; }
.wlc-hub-tile > * { position: relative; z-index: 1; }

/* ─── Решения (сегменты) — тёмный премиум-модуль на главной ─── */
.wlc-solutions {
  padding: 88px 0;
  background: var(--wlc-ink);
  color: var(--wlc-on-dark);
}
.wlc-solutions__head { max-width: 660px; margin: 0 0 44px; }
.wlc-solutions__title {
  margin: 16px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-on-dark);
}
.wlc-solutions__lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(232, 233, 230, 0.62);
}
.wlc-solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.wlc-solution-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  min-height: 236px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wlc-radius-card);
  text-decoration: none;
  color: var(--wlc-on-dark);
  transition: transform 220ms var(--wlc-ease), border-color 220ms var(--wlc-ease), background 220ms var(--wlc-ease);
}
.wlc-solution-tile:hover {
  transform: translateY(-4px);
  border-color: var(--wlc-accent);
  background: rgba(255, 255, 255, 0.07);
}
.wlc-solution-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(194, 90, 58, 0.18);
  color: var(--wlc-accent);
}
.wlc-solution-tile__icon svg { width: 24px; height: 24px; }
.wlc-solution-tile__name {
  margin: 0;
  font-family: var(--wlc-font-display);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wlc-on-dark);
}
.wlc-solution-tile__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(232, 233, 230, 0.56);
  flex: 1 1 auto;
}
.wlc-solution-tile__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(232, 233, 230, 0.62);
}
.wlc-solution-tile__count strong { color: var(--wlc-on-dark); font-weight: 700; }
.wlc-solution-tile__arrow {
  color: var(--wlc-accent);
  font-size: 16px;
  transition: transform 200ms var(--wlc-ease);
}
.wlc-solution-tile:hover .wlc-solution-tile__arrow { transform: translateX(4px); }
@media (max-width: 1080px) {
  .wlc-solutions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .wlc-solutions { padding: 64px 0; }
  .wlc-solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wlc-solution-tile { min-height: 0; }
}
@media (max-width: 460px) {
  .wlc-solutions-grid { grid-template-columns: 1fr; }
}
/* строка с моделью в форме заявки (форма на тёмном фоне .wlc-cta) */
.wlc-lead-form__product {
  margin: -4px 0 10px;
  font-size: 13.5px;
  color: rgba(232, 233, 230, 0.62);
}
.wlc-lead-form__product strong { color: var(--wlc-accent); font-weight: 700; }

/* ─── Страница «Спасибо» (page-spasibo.php) ─── */
.wlc-thankyou { padding: 120px 0 72px; background: var(--wlc-bg); }
.wlc-thankyou__inner { max-width: 640px; margin: 0 auto; text-align: center; display: grid; justify-items: center; }
.wlc-thankyou__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(194, 90, 58, 0.12);
  color: var(--wlc-accent);
  margin-bottom: 22px;
}
.wlc-thankyou__check svg { width: 34px; height: 34px; }
.wlc-thankyou__title {
  margin: 14px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-thankyou__lead { margin: 18px 0 0; font-size: 17px; line-height: 1.55; color: var(--wlc-muted); }
.wlc-thankyou__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.wlc-thankyou__contact { margin: 22px 0 0; font-size: 14px; color: var(--wlc-muted); }
.wlc-thankyou__contact a { color: var(--wlc-ink); font-weight: 600; }
.wlc-thankyou-next { padding: 0 0 110px; background: var(--wlc-bg); }
.wlc-thankyou-next__head { margin: 0 0 40px; }
.wlc-thankyou-next__head h2 {
  margin: 14px 0 0;
  font-family: var(--wlc-font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wlc-ink);
}
.wlc-thankyou-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.wlc-thankyou-steps li {
  padding: 28px;
  background: var(--wlc-bg-card);
  border: 1px solid var(--wlc-line);
  border-radius: var(--wlc-radius-card);
}
.wlc-thankyou-steps__num { font-family: var(--wlc-font-display); font-size: 28px; font-weight: 600; color: var(--wlc-accent); letter-spacing: -0.02em; }
.wlc-thankyou-steps h3 { margin: 12px 0 8px; font-family: var(--wlc-font-display); font-size: 18px; font-weight: 700; color: var(--wlc-ink); }
.wlc-thankyou-steps p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--wlc-muted); }
@media (max-width: 760px) {
  .wlc-thankyou { padding: 88px 0 56px; }
  .wlc-thankyou-next { padding: 0 0 72px; }
  .wlc-thankyou-steps { grid-template-columns: 1fr; }
}

/* ─── Карточка: кнопка «Купить в 1 клик» ─── */
.wlc-card__actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}
.wlc-card__quick {
  flex: 1 1 0;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wlc-accent);
  background: var(--wlc-accent);
  color: #fff;
  font-family: var(--wlc-font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 16px;
  border-radius: var(--wlc-radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background 160ms var(--wlc-ease), border-color 160ms var(--wlc-ease);
}
.wlc-card__quick:hover { background: var(--wlc-accent-strong); border-color: var(--wlc-accent-strong); }

/* ─── Модалка «Купить в 1 клик» ─── */
.wlc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wlc-modal[hidden] { display: none; }
.wlc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 13, 0.62);
  opacity: 0;
  transition: opacity 220ms var(--wlc-ease);
}
.wlc-modal.is-open .wlc-modal__overlay { opacity: 1; }
.wlc-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--wlc-bg-deep);
  color: var(--wlc-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wlc-radius-card);
  padding: 32px;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 240ms var(--wlc-ease), opacity 240ms var(--wlc-ease);
}
.wlc-modal.is-open .wlc-modal__dialog { transform: none; opacity: 1; }
.wlc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--wlc-on-dark);
  cursor: pointer;
  transition: background 160ms var(--wlc-ease);
}
.wlc-modal__close:hover { background: rgba(255, 255, 255, 0.12); }
.wlc-modal__close svg { width: 18px; height: 18px; }
.wlc-modal__title {
  margin: 10px 0 0;
  font-family: var(--wlc-font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wlc-on-dark);
}
.wlc-modal__note {
  margin: 10px 0 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(232, 233, 230, 0.6);
}
.wlc-modal .wlc-lead-form { background: none; border: 0; padding: 0; }
@media (max-width: 480px) {
  .wlc-modal__dialog { padding: 26px 20px; }
}
