/*
Theme Name: WellVibe
Theme URI: https://wellvibe.ru/
Author: Client Work
Description: Bespoke WordPress catalog theme for the sexual wellness niche (premium devices, accessories, lubricants, intimate health). Backend logic ported from the Myastech project and adapted to the niche; frontend built from scratch (hybrid art-direction A+B per DESIGN.md). No WooCommerce — lead-to-manager model.
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: wellvibe
*/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap");

/* ============================================================
   Tokens — hybrid A+B (premium light base + purple + vivid scenarios)
   ============================================================ */
:root {
    /* Warm sensual palette — wine / berry / terracotta / honey on warm cream */
    --wv-ink: #2A0E18;           /* deep wine-black */
    --wv-plum: #7A1F3D;          /* deep berry */
    --wv-primary: #9B2D4F;       /* berry/raspberry — brand + CTA */
    --wv-primary-dk: #71203A;
    --wv-blush: #E9B9AE;         /* warm blush */
    --wv-rose: #C2674A;          /* terracotta — secondary accent */
    --wv-peach: #E8A87C;         /* peach */
    --wv-sand: #F3E7DD;          /* warm sand */
    --wv-cream: #FBF4EE;         /* warm cream */
    --wv-gold: #D99A5B;          /* honey */
    --wv-surface: #FFFFFF;
    --wv-text: #2E1820;          /* warm near-black */
    --wv-muted: #9A7A80;         /* warm muted */
    --wv-line: rgba(42, 14, 24, 0.12);
    --wv-line-2: rgba(42, 14, 24, 0.07);

    /* scenario block colors (warm) */
    --wv-sc-magenta: #A81F57;
    --wv-sc-teal: #B0543A;       /* terracotta instead of cool teal */

    /* stock */
    --wv-in-stock: #2E7D52;
    --wv-on-order: #B7791F;
    --wv-request: #9B2D4F;
    --wv-reserved: #9A7A80;

    --wv-font-ui: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --wv-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;

    --wv-container: 1200px;
    --wv-radius: 18px;
    --wv-radius-sm: 12px;
    --wv-gap: 24px;
    --wv-section-y: clamp(56px, 8vw, 104px);
    --wv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --wv-shadow: 0 18px 50px rgba(26, 19, 38, 0.10);
    --wv-shadow-sm: 0 8px 24px rgba(26, 19, 38, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--wv-cream);
    color: var(--wv-text);
    font-family: var(--wv-font-ui);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--wv-ink); line-height: 1.12; margin: 0 0 .4em; font-weight: 700; letter-spacing: -0.01em; }
a { color: var(--wv-primary); text-decoration: none; transition: color .2s var(--wv-ease); }
a:hover { color: var(--wv-rose); }

.wv-container { max-width: var(--wv-container); margin: 0 auto; padding: 0 24px; }
.wv-narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
/* Page prose (about, delivery, faq…) flush-left under the left-aligned H1, not centred. */
.wv-prose.wv-narrow { margin-left: 0; margin-right: 0; }
.wv-muted { color: var(--wv-muted); }
.wv-skip { position: absolute; left: -9999px; }
.wv-skip:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 8px 14px; border-radius: 8px; }

.wv-h1 { font-family: var(--wv-font-display); font-weight: 600; font-size: clamp(34px, 5vw, 56px); }
.wv-h2 { font-family: var(--wv-font-display); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); }
.wv-h2--light { color: #fff; }
.wv-h2 em { font-style: italic; color: var(--wv-primary); }
.wv-h2--light em { color: var(--wv-blush); }
.wv-h3 { font-size: 20px; margin-top: 1.6em; }
.wv-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--wv-primary); margin-bottom: 14px; }
.wv-eyebrow--light { color: var(--wv-blush); }

/* ============================================================
   Buttons
   ============================================================ */
.wv-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 999px; border: 1.5px solid transparent;
    font: 700 15px/1 var(--wv-font-ui); cursor: pointer; white-space: nowrap;
    transition: transform .2s var(--wv-ease), background .2s var(--wv-ease), color .2s var(--wv-ease), border-color .2s var(--wv-ease);
}
.wv-btn--sm { padding: 9px 18px; font-size: 14px; }
.wv-btn--lg { padding: 15px 30px; font-size: 16px; }
.wv-btn--block { display: flex; width: 100%; }
.wv-btn--primary { background: linear-gradient(120deg, #C23A5D 0%, #9B2D4F 100%); color: #fff; border-color: transparent; box-shadow: 0 12px 30px rgba(194,58,93,.42); transition: transform .2s var(--wv-ease), box-shadow .25s var(--wv-ease), filter .2s var(--wv-ease); }
.wv-btn--primary:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 18px 42px rgba(194,58,93,.56); }
.wv-btn--ghost { background: transparent; border-color: var(--wv-line); color: var(--wv-ink); }
.wv-btn--ghost:hover { border-color: var(--wv-primary); color: var(--wv-primary); }
/* Ghost buttons on dark sections (hero/band/editorial) need light styling */
.wv-hero .wv-btn--ghost, .wv-band .wv-btn--ghost, .wv-editorial .wv-btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.wv-hero .wv-btn--ghost:hover, .wv-band .wv-btn--ghost:hover, .wv-editorial .wv-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

/* ============================================================
   Topbar + Header
   ============================================================ */
.wv-topbar { background: var(--wv-ink); color: #efe7ee; font-size: 13px; }
.wv-topbar__inner { display: flex; align-items: center; gap: 22px; min-height: 38px; }
.wv-topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.wv-topbar__item svg { width: 15px; height: 15px; }
.wv-topbar__item--right { margin-left: auto; }
.wv-topbar a { color: #fff; }
.wv-topbar svg { fill: none; stroke: var(--wv-blush); stroke-width: 2; }

.wv-header { position: sticky; top: 0; z-index: 50; background: rgba(251,247,243,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--wv-line-2); }
.wv-header__inner { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.wv-logo { display: inline-flex; flex-direction: column; line-height: 1; }
.wv-logo__mark { font-family: var(--wv-font-display); font-size: 26px; font-weight: 600; color: var(--wv-ink); letter-spacing: .01em; }
.wv-logo__mark--light { color: #fff; }
.wv-logo__tag { display: block; font: 700 9px/1 var(--wv-font-ui); letter-spacing: .26em; text-transform: uppercase; color: var(--wv-muted); margin-top: 6px; padding-left: 2px; }
.wv-nav { margin-left: 8px; }
.wv-nav__list, .wv-nav .menu { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.wv-nav__list a, .wv-nav .menu a { color: var(--wv-text); font-weight: 600; font-size: 15px; padding: 6px 0; position: relative; display: inline-flex; align-items: center; }
.wv-nav__list a::after, .wv-nav .menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--wv-primary); transition: width .25s var(--wv-ease); }
.wv-nav__list a:hover::after, .wv-nav .menu a:hover::after { width: 100%; }
.wv-nav__close { display: none; }
.wv-header__actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.wv-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--wv-line); border-radius: 10px; cursor: pointer; }
.wv-burger span { width: 20px; height: 2px; background: var(--wv-ink); border-radius: 2px; transition: .2s; }
/* z-index 49 (ниже .wv-header z:50): иначе backdrop, лежащий на уровне body, перекрывал
   меню (которое заперто в stacking-context хедера) и съедал клики по пунктам. */
.wv-nav__backdrop { position: fixed; inset: 0; background: rgba(26,19,38,.5); z-index: 49; }

/* ---- Mega-menu (Каталог dropdown) ---- */
.wv-nav__item { position: static; }
.wv-nav__top { display: inline-flex; align-items: center; gap: 5px; }
.wv-nav__chev { transition: transform .25s var(--wv-ease); }
.wv-mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--wv-surface); border-top: 1px solid var(--wv-line-2); box-shadow: var(--wv-shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .22s var(--wv-ease), transform .22s var(--wv-ease), visibility .22s; z-index: 49; }
.wv-has-mega:hover .wv-mega, .wv-has-mega:focus-within .wv-mega, .wv-has-mega.is-open .wv-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.wv-has-mega:hover .wv-nav__chev, .wv-has-mega.is-open .wv-nav__chev { transform: rotate(180deg); }
.wv-mega__inner { max-width: var(--wv-container); margin: 0 auto; padding: 32px 24px 38px; display: grid; grid-template-columns: 1fr 300px; gap: 44px; }
.wv-mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 24px; align-content: start; }
/* category card: photo thumb + name */
.wv-mega__head { display: flex; flex-direction: column; gap: 10px; color: var(--wv-ink); }
.wv-mega__head::after { display: none; }
.wv-mega__thumb { display: block; width: 100%; aspect-ratio: 3 / 2; border-radius: var(--wv-radius-sm); background-size: cover; background-position: center; overflow: hidden; transition: transform .35s var(--wv-ease); }
.wv-mega__head:hover .wv-mega__thumb { transform: scale(1.035); }
.wv-mega__thumb--icon { display: flex; align-items: center; justify-content: center; background: var(--wv-sand); }
.wv-mega__thumb--icon svg { width: 34px; height: 34px; fill: none; stroke: var(--wv-primary); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.wv-mega__name { font-family: var(--wv-font-display); font-size: 19px; font-weight: 600; line-height: 1.15; transition: color .2s var(--wv-ease); }
.wv-mega__head:hover .wv-mega__name { color: var(--wv-primary); }
.wv-mega__sub { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.wv-mega__sub a { font-weight: 500; font-size: 14px; color: var(--wv-muted); }
.wv-mega__sub a::after { display: none; }
.wv-mega__sub a:hover { color: var(--wv-primary); }
.wv-mega__aside { border-left: 1px solid var(--wv-line-2); padding-left: 40px; display: flex; flex-direction: column; }
.wv-mega__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wv-primary); margin-bottom: 14px; }
.wv-mega__aud { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.wv-mega__aud a { font-family: var(--wv-font-display); font-size: 20px; font-weight: 600; color: var(--wv-ink); }
.wv-mega__aud a::after { bottom: 0; }
/* big photo CTA */
.wv-mega__feature { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: auto; min-height: 190px; padding: 22px 26px 24px 28px; border-radius: var(--wv-radius); overflow: hidden; color: #fff; isolation: isolate; }
.wv-mega__feature::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--wv-feat-img); background-size: cover; background-position: center 60%; transition: transform .5s var(--wv-ease); }
/* Light overall scrim — the frosted-glass panel below does the heavy lifting for text contrast. */
.wv-mega__feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(18,4,9,.5) 0%, rgba(18,4,9,.16) 48%, transparent 78%); }
.wv-mega__feature:hover::before { transform: scale(1.06); }
.wv-mega__feature:hover { color: #fff; }
/* Frosted-glass panel hugging the text — blurs the silk behind it (glassmorphism). */
.wv-mega__feature-txt { padding: 11px 16px; border-radius: 14px; background: rgba(28,8,16,.24); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 8px 24px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(9px) saturate(125%); -webkit-backdrop-filter: blur(9px) saturate(125%); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.wv-mega__feature-kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #F6D8E1; margin-bottom: 4px; }
.wv-mega__feature-title { display: block; font-family: var(--wv-font-display); font-size: 24px; font-weight: 600; line-height: 1.05; color: #fff; }
.wv-mega__feature-arrow { flex: none; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.55); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .2s var(--wv-ease), color .2s var(--wv-ease), border-color .2s var(--wv-ease), transform .25s var(--wv-ease); }
.wv-mega__feature:hover .wv-mega__feature-arrow { background: var(--wv-primary); border-color: var(--wv-primary); color: #fff; transform: translateX(3px); }

/* ============================================================
   Sections
   ============================================================ */
.wv-main { display: block; }
.wv-section { padding: var(--wv-section-y) 0; }
.wv-section--soft { background: var(--wv-sand); }
.wv-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.wv-section__sub { color: var(--wv-muted); max-width: 52ch; margin: 6px 0 0; }
.wv-section__link { font-weight: 700; white-space: nowrap; }
.wv-section__cta { text-align: center; margin-top: 38px; }
/* Vertical only — longhand keeps the .wv-container horizontal 24px padding (shorthand «40px 0» zeroed it → контент прилипал к краям на мобиле). */
.wv-pagewrap { padding-top: 40px; padding-bottom: var(--wv-section-y); }

/* ============================================================
   Hero
   ============================================================ */
.wv-hero { position: relative; background: linear-gradient(120deg, #100207 0%, #210912 55%, #34101d 100%); color: #fff; overflow: hidden; }
/* Full-bleed banner: always fills the viewport width, video centred & cover-cropped.
   (aspect-ratio + max-height made the browser derive width from height → a narrow box on wide screens.) */
.wv-hero { width: 100%; min-height: clamp(560px, 84vh, 900px); display: flex; flex-direction: column; justify-content: center; }
/* Parallax still background (background-attachment:fixed → moves on scroll). */
.wv-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: var(--wv-hero-img); background-size: cover; background-position: center;
    background-attachment: fixed;
    opacity: .6;
}
.wv-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(42,14,24,.94) 0%, rgba(42,14,24,.78) 38%, rgba(42,14,24,.4) 64%, rgba(155,45,79,.1) 100%); }
.wv-hero__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; opacity: .56; transform-origin: 50% 50%; animation: wv-hero-drift 24s ease-in-out infinite alternate; }
/* Gentle "breathing" drift — kept small so the corner hands aren't zoomed out of frame. */
@keyframes wv-hero-drift { from { transform: scale(1.004); } to { transform: scale(1.022); } }
@media (prefers-reduced-motion: reduce) { .wv-hero__video { animation: none; } }
.wv-hero__inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(32px, 5vw, 72px); padding-bottom: clamp(32px, 5vw, 72px); }
.wv-hero__content { max-width: 660px; }
.wv-hero__title { font-family: var(--wv-font-display); font-weight: 600; color: #fff; font-size: clamp(40px, 6.4vw, 76px); line-height: 1.03; margin: 0 0 18px; }
.wv-hero__title em { font-style: italic; color: var(--wv-blush); }
.wv-hero__lead { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.86); max-width: 54ch; margin: 0 0 30px; }
.wv-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.wv-hero__usp { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; margin: 34px 0 0; padding: 0; font-size: 14px; color: rgba(255,255,255,.85); }
.wv-hero__usp li { display: inline-flex; align-items: center; gap: 8px; }
.wv-hero__usp svg { width: 18px; height: 18px; fill: none; stroke: var(--wv-blush); stroke-width: 2; }
/* Variant: content on the right (use when the motion/highlight sits on the left) */
.wv-hero--right::after { background: linear-gradient(260deg, rgba(42,14,24,.88) 0%, rgba(42,14,24,.46) 52%, rgba(155,45,79,.12) 100%); }
.wv-hero--right .wv-hero__content { margin-left: auto; text-align: right; }
.wv-hero--right .wv-hero__actions, .wv-hero--right .wv-hero__usp { justify-content: flex-end; }

/* Top-right placement — keeps the reaching hands (lower / centre) clear of the text. */
.wv-hero--topright { justify-content: flex-start; }
.wv-hero--topright::after { background: linear-gradient(215deg, rgba(13,3,8,.93) 0%, rgba(15,4,10,.76) 36%, rgba(15,4,10,.54) 64%, rgba(15,4,10,.44) 100%); }
.wv-hero--topright .wv-hero__inner { padding-top: clamp(40px, 6vw, 84px); padding-bottom: 0; }
.wv-hero--topright .wv-hero__content { margin-left: auto; text-align: right; }
.wv-hero--topright .wv-hero__lead { margin-left: auto; }
.wv-hero--topright .wv-hero__actions, .wv-hero--topright .wv-hero__usp { justify-content: flex-end; }

/* ============================================================
   Bento audiences
   ============================================================ */
.wv-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.wv-tile { position: relative; border-radius: var(--wv-radius); overflow: hidden; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--wv-shadow-sm); isolation: isolate; }
.wv-tile::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--wv-tile-img); background-size: cover; background-position: center; transition: transform .6s var(--wv-ease); }
/* Per-rubric colour tint (top) + dark bottom for label legibility — tiles read distinct, not uniform */
.wv-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(165deg, var(--wv-tile-tint, rgba(42,14,24,.4)) 0%, rgba(42,14,24,.28) 48%, rgba(42,14,24,.9) 100%); }
.wv-tile:hover::before { transform: scale(1.06); }
.wv-tile--lg { grid-column: span 2; grid-row: span 2; }
.wv-tile__body { padding: 22px; }
.wv-tile__title { display: block; font-family: var(--wv-font-display); font-size: 26px; font-weight: 600; }
.wv-tile__sub { display: block; font-size: 14px; color: rgba(255,255,255,.82); margin-top: 4px; }

/* ============================================================
   Product grid + card
   ============================================================ */
.wv-grid { display: grid; gap: var(--wv-gap); }
.wv-grid--cards { grid-template-columns: repeat(4, 1fr); }
.wv-card { background: var(--wv-surface); border: 1px solid var(--wv-line-2); border-radius: var(--wv-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--wv-ease), box-shadow .25s var(--wv-ease); }
.wv-card:hover { transform: translateY(-4px); box-shadow: var(--wv-shadow); }
.wv-card__media { position: relative; display: block; aspect-ratio: 4/5; background: var(--wv-sand); overflow: hidden; }
.wv-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--wv-ease); }
.wv-card:hover .wv-card__media img { transform: scale(1.04); }
.wv-card__flags { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.wv-flag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--wv-ink); }
.wv-flag--app { background: var(--wv-primary); color: #fff; }
.wv-flag--vibro { background: rgba(155,45,79,.12); color: var(--wv-primary); }
.wv-flag svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.wv-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.wv-card__brand { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--wv-muted); }
.wv-card__title { font-family: var(--wv-font-ui); font-size: 16px; font-weight: 700; line-height: 1.3; margin: 0; }
.wv-card__title a { color: var(--wv-ink); }
.wv-card__title a:hover { color: var(--wv-primary); }
.wv-card__specs { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--wv-muted); }
.wv-card__specs li { background: var(--wv-sand); padding: 3px 9px; border-radius: 999px; }
.wv-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }
.wv-card__price { display: flex; align-items: baseline; gap: 8px; }
.wv-price { font-weight: 800; font-size: 18px; color: var(--wv-ink); }
.wv-price--lg { font-size: 30px; }
.wv-price__old { font-size: 13px; color: var(--wv-muted); text-decoration: line-through; }
.wv-pill { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--wv-sand); }
.wv-pill.stock-in_stock { color: var(--wv-in-stock); background: rgba(46,125,82,.12); }
.wv-pill.stock-on_order { color: var(--wv-on-order); background: rgba(183,121,31,.12); }
.wv-pill.stock-request { color: var(--wv-request); background: rgba(155,45,79,.10); }
.wv-pill.stock-reserved { color: var(--wv-reserved); background: rgba(154,122,128,.14); }

/* ============================================================
   Scenario blocks (purposes)
   ============================================================ */
.wv-scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wv-scenarios--page { margin-top: 40px; }
.wv-scenario { position: relative; border-radius: var(--wv-radius); padding: 28px; min-height: 200px; display: flex; flex-direction: column; color: #fff; overflow: hidden; transition: transform .25s var(--wv-ease); }
.wv-scenario:hover { transform: translateY(-4px); color: #fff; }
.wv-scenario__title { font-family: var(--wv-font-display); font-size: 25px; font-weight: 600; }
.wv-scenario__text { font-size: 14px; color: rgba(255,255,255,.88); margin-top: 8px; }
.wv-scenario__cta { margin-top: auto; padding-top: 18px; font-weight: 700; font-size: 14px; }
.wv-scenario--blush { background: linear-gradient(150deg, #C2674A, #E8A87C); }
.wv-scenario--plum { background: linear-gradient(150deg, #5E1A30, #7A1F3D); }
.wv-scenario--magenta { background: linear-gradient(150deg, #6E1538, var(--wv-sc-magenta)); }
.wv-scenario--teal { background: linear-gradient(150deg, #7A3320, var(--wv-sc-teal)); }
.wv-scenario--sand { background: linear-gradient(150deg, #A86A3E, #E8A87C); }
.wv-scenario--gold { background: linear-gradient(150deg, #8A5A22, var(--wv-gold)); }
/* Photo background variant: drop assets/img/scene-{slug}.jpg. Falls back to the gradient above. */
.wv-scenario--photo { background-image: var(--wv-sc-img) !important; background-size: cover !important; background-position: center !important; }
.wv-scenario--photo::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(160deg, rgba(42,14,24,.35) 0%, rgba(42,14,24,.55) 45%, rgba(42,14,24,.9) 100%); }
.wv-scenario > * { position: relative; z-index: 1; }

/* ============================================================
   Full-bleed fruit divider (parallax)
   ============================================================ */
.wv-divider { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; }
.wv-divider__bg { position: absolute; inset: -60% 0; z-index: 0; background-image: var(--wv-div-img); background-size: cover; background-position: center; will-change: transform; }
.wv-divider__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wv-divider::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(42,14,24,.82) 0%, rgba(42,14,24,.45) 42%, rgba(42,14,24,.05) 78%, rgba(42,14,24,0) 100%); }
.wv-divider__inner { position: relative; z-index: 2; }
.wv-divider__line { font-family: var(--wv-font-display); font-style: italic; font-weight: 600; font-size: clamp(36px, 6vw, 72px); color: #fff; max-width: 18ch; margin: 0; line-height: 1.02; }
.wv-divider__line em { color: var(--wv-blush); font-style: italic; }
.wv-divider--inset { min-height: 300px; border-radius: var(--wv-radius); margin: 20px 0 4px; }
.wv-divider--inset .wv-divider__inner { padding: 0 clamp(28px, 5vw, 60px); }

/* ============================================================
   Editorial / sensual manifesto band
   ============================================================ */
.wv-editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.wv-editorial__media { position: relative; background-image: var(--wv-ed-img); background-size: cover; background-position: center; }
.wv-editorial__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wv-editorial__text { background: linear-gradient(150deg, #2A0E18, #5E1A30 70%, #7A1F3D); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 88px); }
.wv-editorial__text p { color: rgba(255,255,255,.85); max-width: 46ch; margin: 0 0 26px; }
.wv-editorial__text .wv-h2 { font-style: normal; }
/* Visual polish (ref audit) */
.wv-accent { font-style: italic; font-weight: 500; color: var(--wv-blush); }
.wv-mark { background: linear-gradient(104deg, transparent .5%, rgba(217,154,91,.45) 1%, rgba(217,154,91,.45) 97%, transparent 98%); padding: .02em .14em; border-radius: .18em; }
/* Unified warm grade so mixed photo sources read as one shoot */
.wv-card__media img, .wv-gallery__main img, .wv-gallery__thumb img,
.wv-tile::before, .wv-hero__bg, .wv-hero__video, .wv-divider__bg,
.wv-editorial__media, .wv-band::before, .wv-archive-hero__bg,
.wv-mega__thumb, .wv-mega__feature::before {
    filter: sepia(.07) saturate(.97) contrast(1.02);
}

/* ============================================================
   Category groups
   ============================================================ */
.wv-catgroups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.wv-catgroup__title { display: flex; align-items: center; gap: 10px; font-family: var(--wv-font-ui); font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.wv-catgroup__ico { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9px; background: var(--wv-surface); box-shadow: var(--wv-shadow-sm); }
.wv-catgroup__ico svg { width: 20px; height: 20px; fill: none; stroke: var(--wv-primary); stroke-width: 1.8; }
.wv-catgroup__list { list-style: none; margin: 0; padding: 0; }
.wv-catgroup__list li { border-bottom: 1px solid var(--wv-line-2); }
.wv-catgroup__list a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; color: var(--wv-text); font-weight: 600; font-size: 15px; }
.wv-catgroup__list a:hover { color: var(--wv-primary); }
.wv-count { font-size: 12px; color: var(--wv-muted); font-weight: 700; background: var(--wv-sand); padding: 1px 8px; border-radius: 999px; }

/* Shop-by cards — audience imagery + direct category links with counts (merged section) */
.wv-shop { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.wv-shopcard { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--wv-radius); padding: 28px 30px 30px; min-height: clamp(340px, 30vw, 440px); display: flex; flex-direction: column; color: #fff; box-shadow: var(--wv-shadow-sm); }
.wv-shopcard::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--wv-shop-img); background-size: cover; background-position: center; transition: transform .6s var(--wv-ease); }
/* Softer top so more of the photo subject breathes through; list still sits on a dark base. */
.wv-shopcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28,10,16,.3) 0%, rgba(28,10,16,.12) 30%, var(--wv-shop-tint, rgba(42,14,24,.5)) 60%, rgba(20,8,12,.86) 100%); }
/* Integrated full-width catalog CTA — last item in the grid, matches the card language. */
.wv-shopcta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 104px; padding: 20px 28px; border-radius: var(--wv-radius); background: linear-gradient(120deg, #2A0E18 0%, #5E1A30 52%, #9B2D4F 100%); color: #fff; box-shadow: var(--wv-shadow-sm); transition: transform .25s var(--wv-ease), box-shadow .25s var(--wv-ease); }
.wv-shopcta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(122,31,61,.3); }
.wv-shopcta__text { font-family: var(--wv-font-display); font-weight: 600; font-size: clamp(21px, 2.4vw, 28px); letter-spacing: .01em; }
.wv-shopcta__arrow { flex: none; width: 46px; height: 46px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4); transition: background .25s var(--wv-ease), transform .25s var(--wv-ease), border-color .25s var(--wv-ease); }
.wv-shopcta:hover .wv-shopcta__arrow { background: rgba(255,255,255,.95); border-color: transparent; color: var(--wv-primary); transform: translateX(4px); }
.wv-shopcard:hover::before { transform: scale(1.05); }
.wv-shopcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: auto; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
/* Keep the head white on hover — otherwise the link inherits the global a:hover accent and the title becomes unreadable. */
.wv-shopcard__head:hover, .wv-shopcard:hover .wv-shopcard__head { color: #fff; }
.wv-shopcard__title { font-family: var(--wv-font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.05; color: #fff; }
.wv-shopcard__all { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.82); white-space: nowrap; transition: color .2s; }
.wv-shopcard__head:hover .wv-shopcard__all { color: #fff; }
.wv-shopcard__list { list-style: none; margin: 20px 0 0; padding: 0; }
.wv-shopcard__list li + li a { border-top: 1px solid rgba(255,255,255,.16); }
.wv-shopcard__list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; color: rgba(255,255,255,.92); font-weight: 500; font-size: 17px; }
.wv-shopcard__list a:hover { color: #fff; }
.wv-shopcard__list a:hover > span:first-child { text-decoration: underline; text-underline-offset: 3px; }
.wv-shopcard__list .wv-count { color: rgba(255,255,255,.78); background: rgba(255,255,255,.16); }

/* ============================================================
   Band (app/long-distance)
   ============================================================ */
.wv-band { position: relative; color: #fff; overflow: hidden; background: var(--wv-ink); }
.wv-band::before { content: ""; position: absolute; inset: 0; background-image: var(--wv-band-img); background-size: cover; background-position: center; opacity: .5; }
.wv-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wv-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(42,14,24,.88), rgba(155,45,79,.5)); }
.wv-band__inner { position: relative; z-index: 2; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.wv-band__content { max-width: 540px; }
.wv-band__content p { color: rgba(255,255,255,.86); margin: 0 0 24px; }

/* ============================================================
   Brand strip
   ============================================================ */
/* Brands — a tinted band with deliberate, larger chips so it reads as a curated roster, not a tag cloud. */
.wv-brands { position: relative; background: radial-gradient(120% 140% at 50% -20%, rgba(155,45,79,.07) 0%, transparent 55%), var(--wv-sand); border-block: 1px solid var(--wv-line); }
.wv-brands__head { align-items: flex-end; }
.wv-brandstrip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding-top: 8px; }
.wv-brandchip { position: relative; padding: 15px 30px; border: 1px solid var(--wv-line); border-radius: 999px; font-family: var(--wv-font-display); font-weight: 600; font-size: 19px; color: var(--wv-ink); background: var(--wv-surface); letter-spacing: .01em; box-shadow: 0 1px 0 rgba(26,19,38,.03), 0 6px 18px rgba(122,31,61,.05); transition: transform .25s var(--wv-ease), box-shadow .25s var(--wv-ease), color .25s var(--wv-ease), border-color .25s var(--wv-ease), background .25s var(--wv-ease); }
.wv-brandchip:hover { border-color: transparent; color: #fff; background: linear-gradient(120deg, var(--wv-primary) 0%, #9B2D4F 100%); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(122,31,61,.28); }

/* ============================================================
   Request form
   ============================================================ */
.wv-section--request { background: var(--wv-sand); }
.wv-request { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.wv-request__usp, .wv-request__intro ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.wv-request__usp li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.wv-request__usp svg { width: 20px; height: 20px; fill: none; stroke: var(--wv-primary); stroke-width: 2; }
.wv-request__form { background: var(--wv-surface); border-radius: var(--wv-radius); padding: 30px; box-shadow: var(--wv-shadow); }
/* Merged consultation block: steps timeline (left) + form (right). */
.wv-consult__head { margin-bottom: 34px; }
.wv-consult__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 4vw, 60px); align-items: start; }

/* Left: vertical "how it works" timeline (no card chrome, connector line between numbers).
   NB: needs .wv-steps.wv-steps--vert to outrank the later `.wv-steps { display:grid }` rule. */
.wv-steps.wv-steps--vert { display: flex; flex-direction: column; gap: 0; margin-top: 6px; }
.wv-steps--vert .wv-step { display: grid; grid-template-columns: 46px 1fr; column-gap: 20px; align-items: center; padding: 0 0 30px; background: none; box-shadow: none; border-radius: 0; position: relative; }
.wv-steps--vert .wv-step:last-child { padding-bottom: 0; }
.wv-steps--vert .wv-step:not(:last-child)::before { content: ""; position: absolute; left: 22px; top: 52px; bottom: 4px; width: 2px; background: linear-gradient(var(--wv-primary), rgba(155,45,79,.12)); }
.wv-steps--vert .wv-step__num { grid-column: 1; grid-row: 1; margin: 0; width: 46px; height: 46px; position: relative; z-index: 1; }
.wv-steps--vert .wv-step__title { grid-column: 2; grid-row: 1; margin: 0; }
.wv-steps--vert .wv-step__text { grid-column: 2; grid-row: 2; margin: 8px 0 0; }

/* Right: sensual, "low-light" form card — deep gradient with a warm glow. */
.wv-consult__form { margin: 0; position: relative; overflow: hidden; padding: clamp(26px, 2.6vw, 40px); background: linear-gradient(155deg, #2A0E18 0%, #401326 52%, #5C1734 100%); box-shadow: 0 30px 70px rgba(60,12,28,.34); }
.wv-consult__form::before { content: ""; position: absolute; z-index: 0; top: -34%; right: -16%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(233,185,174,.34) 0%, transparent 68%); pointer-events: none; }
.wv-consult__form::after { content: ""; position: absolute; z-index: 0; bottom: -30%; left: -14%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(155,45,79,.4) 0%, transparent 70%); pointer-events: none; }
.wv-consult__form > * { position: relative; z-index: 1; }
.wv-consult__form .wv-form label { color: rgba(255,255,255,.78); }
.wv-consult__form .wv-form input:not([type=checkbox]):not([type=radio]),
.wv-consult__form .wv-form textarea { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; transition: border-color .2s var(--wv-ease), background .2s var(--wv-ease), box-shadow .2s var(--wv-ease); }
.wv-consult__form .wv-form input::placeholder,
.wv-consult__form .wv-form textarea::placeholder { color: rgba(255,255,255,.42); }
.wv-consult__form .wv-form input:not([type=checkbox]):not([type=radio]):focus,
.wv-consult__form .wv-form textarea:focus { border-color: var(--wv-blush); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(233,185,174,.2); }
.wv-consult__form .wv-form__hint,
.wv-consult__form .wv-form__consent,
.wv-consult__form .wv-form__consent label,
.wv-consult__form .wv-form__note { color: rgba(255,255,255,.6); }
.wv-consult__form .wv-form__consent input[type=checkbox] { accent-color: var(--wv-blush); }
/* Primary button now carries the gradient+glow globally (see .wv-btn--primary). */

.wv-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.wv-field { display: flex; flex-direction: column; gap: 6px; }
.wv-field--wide { grid-column: 1 / -1; }
.wv-form label { font-size: 14px; color: var(--wv-muted); }
.wv-form input:not([type=checkbox]):not([type=radio]), .wv-form textarea {
    padding: 13px 15px; border: 1.5px solid var(--wv-line); border-radius: var(--wv-radius-sm);
    background: var(--wv-cream); font: 400 16px var(--wv-font-ui); color: var(--wv-text); width: 100%;
}
.wv-form input:not([type=checkbox]):not([type=radio]):focus, .wv-form textarea:focus { outline: none; border-color: var(--wv-primary); background: #fff; }
.wv-form__hint { font-size: 12px; color: var(--wv-muted); margin: -2px 0 0; }
.wv-form__consent { font-size: 13px; color: var(--wv-muted); }
.wv-form__consent label { display: flex; gap: 10px; align-items: flex-start; color: var(--wv-muted); line-height: 1.45; cursor: pointer; }
.wv-form__consent input[type=checkbox] { flex: 0 0 auto; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--wv-primary); cursor: pointer; }
.wv-form__submit { display: flex; flex-direction: column; gap: 8px; }
.wv-form__note { font-size: 12px; color: var(--wv-muted); margin: 0; }
.wv-form__success { padding: 14px 16px; border-radius: var(--wv-radius-sm); background: rgba(18,138,91,.1); color: var(--wv-in-stock); font-weight: 700; }

/* ============================================================
   Trust bar + Footer
   ============================================================ */
/* Press strip (placeholder logos) */
.wv-press { background: var(--wv-surface); padding: 30px 0 6px; }
.wv-press__inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.wv-press__label { font: 700 11px/1 var(--wv-font-ui); letter-spacing: .2em; text-transform: uppercase; color: var(--wv-muted); }
.wv-press__logos { list-style: none; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin: 0; padding: 0; }
.wv-press__logos li { font-family: var(--wv-font-display); font-size: 21px; color: var(--wv-ink); opacity: .42; letter-spacing: .02em; transition: opacity .3s var(--wv-ease); }
.wv-press__logos li:hover { opacity: .85; }

.wv-trustbar { background: var(--wv-surface); }
.wv-trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 40px 24px 44px; }
.wv-trust { display: flex; flex-direction: column; gap: 3px; padding: 4px 30px; }
.wv-trust + .wv-trust { border-left: 1px solid var(--wv-line-2); }
.wv-trust b { color: var(--wv-ink); font-size: 15px; }
.wv-trust span:last-child { font-size: 13px; color: var(--wv-muted); }
.wv-trust__ico { display: inline-flex; align-items: center; margin-bottom: 10px; }
.wv-trust__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--wv-primary); stroke-width: 1.5; }

.wv-footer { background: var(--wv-ink); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.wv-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; }
.wv-footer__brand p { font-size: 14px; margin: 14px 0 0; max-width: 32ch; }
.wv-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.wv-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 14px; }
.wv-footer a { color: rgba(255,255,255,.74); }
.wv-footer a:hover { color: #fff; }
.wv-footer__brands { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 14px; }
.wv-footer__contacts .wv-muted { color: rgba(255,255,255,.45); font-size: 13px; }
.wv-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: rgba(255,255,255,.55); }

/* ============================================================
   Archive head, crumbs, filters, pagination
   ============================================================ */
.wv-crumbs { font-size: 13px; color: var(--wv-muted); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.wv-crumbs span { color: var(--wv-line); }
.wv-archive__head { margin-bottom: 30px; }
.wv-archive__lead { color: var(--wv-muted); max-width: 64ch; }
/* Photo hero for audience rubric pages */
.wv-archive-hero { position: relative; overflow: hidden; border-radius: var(--wv-radius); background: var(--wv-ink); color: #fff; margin-bottom: 36px; min-height: 320px; display: flex; }
.wv-archive-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .6; }
.wv-archive-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .62; }
.wv-archive-hero--wide { min-height: 380px; }
.wv-archive-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,14,24,.9) 0%, rgba(42,14,24,.5) 60%, rgba(42,14,24,.1) 100%); }
.wv-archive-hero__inner { position: relative; z-index: 1; align-self: center; padding: clamp(36px, 6vw, 72px); max-width: 620px; }
.wv-archive-hero .wv-h1 { color: #fff; margin: 0; }
.wv-archive-hero__lead { color: rgba(255,255,255,.9); font-size: clamp(16px, 2vw, 19px); line-height: 1.6; margin: 14px 0 0; }

/* Catalog: left sticky sidebar + product grid (scales to 100+ products & per-category facets). */
.wv-catalog-layout { display: grid; grid-template-columns: 256px minmax(0, 1fr); gap: 36px; align-items: start; }
.wv-catalog-sidebar { position: sticky; top: 88px; }
.wv-catalog-sidebar__title { font-family: var(--wv-font-display); font-weight: 600; font-size: 20px; margin: 0 0 14px; }
.wv-catalog-main { min-width: 0; }
.wv-catalog-main .wv-grid--cards { grid-template-columns: repeat(3, 1fr); }
.wv-catalog-sidebar .wv-filters { flex-direction: column; align-items: stretch; gap: 16px; margin-bottom: 0; padding: 20px; }
.wv-catalog-sidebar .wv-filter { width: 100%; }
.wv-catalog-sidebar .wv-filter select { width: 100%; min-width: 0; }
.wv-catalog-sidebar .wv-filters__reset { margin: 6px 0 0; align-self: flex-start; }

.wv-filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; padding: 18px; background: var(--wv-surface); border: 1px solid var(--wv-line-2); border-radius: var(--wv-radius); margin-bottom: 18px; }
.wv-filter { display: flex; flex-direction: column; gap: 5px; }
.wv-filter span { font-size: 12px; font-weight: 700; color: var(--wv-muted); text-transform: uppercase; letter-spacing: .04em; }
.wv-filter select { appearance: none; -webkit-appearance: none; padding: 10px 38px 10px 15px; border: 1.5px solid var(--wv-line); border-radius: 999px; background-color: var(--wv-surface); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239B2D4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; font: 600 14px var(--wv-font-ui); color: var(--wv-text); min-width: 150px; cursor: pointer; transition: border-color .2s var(--wv-ease); }
.wv-filter select:hover, .wv-filter select:focus { border-color: var(--wv-primary); outline: none; }
.wv-filters__reset { margin-left: auto; align-self: center; font-weight: 700; font-size: 14px; }

/* Results toolbar: count on the left, a single sort control on the right (sort is NOT a filter). */
.wv-catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 18px 0 22px; }
.wv-results-count { color: var(--wv-muted); font-size: 15px; margin: 0; }
.wv-sort { display: flex; align-items: center; gap: 10px; margin: 0; }
.wv-sort__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--wv-muted); white-space: nowrap; }
.wv-sort__select { appearance: none; -webkit-appearance: none; padding: 10px 38px 10px 15px; border: 1.5px solid var(--wv-line); border-radius: 999px; background-color: var(--wv-surface); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239B2D4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; font: 600 14px var(--wv-font-ui); color: var(--wv-text); cursor: pointer; transition: border-color .2s var(--wv-ease); }
.wv-sort__select:hover, .wv-sort__select:focus { border-color: var(--wv-primary); outline: none; }

/* Active-filter chips + clear-all */
.wv-active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 20px; }
.wv-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 8px 7px 14px; border-radius: 999px; background: var(--wv-sand); color: var(--wv-ink); font-size: 13px; font-weight: 600; border: 1px solid var(--wv-line); transition: background .2s var(--wv-ease), border-color .2s var(--wv-ease), color .2s var(--wv-ease); }
.wv-chip:hover { background: var(--wv-surface); border-color: var(--wv-primary); color: var(--wv-primary); }
.wv-chip__x { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 999px; background: rgba(122,31,61,.1); font-size: 14px; line-height: 1; color: var(--wv-muted); }
.wv-chip:hover .wv-chip__x { background: var(--wv-primary); color: #fff; }
.wv-active-filters__clear { font-size: 13px; font-weight: 700; color: var(--wv-primary); margin-left: 4px; }

/* Mobile filter drawer trigger (hidden on desktop). */
.wv-filters-toggle { display: none; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--wv-line); background: var(--wv-surface); font: 700 14px var(--wv-font-ui); color: var(--wv-ink); cursor: pointer; margin-bottom: 14px; }
.wv-filters-toggle svg { color: var(--wv-primary); }
.wv-filters-toggle__n { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--wv-primary); color: #fff; font-size: 12px; }

.wv-pagination { margin-top: 44px; display: flex; justify-content: center; }
.wv-pagination .page-numbers { display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0 12px; margin: 0 3px; border-radius: 10px; border: 1px solid var(--wv-line); font-weight: 700; color: var(--wv-ink); }
.wv-pagination .page-numbers.current { background: var(--wv-primary); color: #fff; border-color: var(--wv-primary); }
.wv-pagination .page-numbers:hover:not(.current) { border-color: var(--wv-primary); color: var(--wv-primary); }
.wv-empty { text-align: center; padding: 60px 20px; background: var(--wv-surface); border-radius: var(--wv-radius); }
.wv-empty p { color: var(--wv-muted); margin: 0 0 16px; }

/* ============================================================
   Single product
   ============================================================ */
.wv-product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wv-gallery__main { border-radius: var(--wv-radius); overflow: hidden; background: var(--wv-sand); aspect-ratio: 4/5; }
.wv-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.wv-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.wv-gallery__thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: var(--wv-sand); }
.wv-gallery__thumb.is-active { border-color: var(--wv-primary); }
.wv-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wv-product__brand { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--wv-muted); }
.wv-product__title { font-family: var(--wv-font-display); font-weight: 600; font-size: clamp(28px, 4vw, 44px); margin: 8px 0 14px; }
.wv-product__excerpt { color: var(--wv-muted); margin: 0 0 22px; }
.wv-product__pricerow { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.wv-product__flags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; padding: 0; }
.wv-product__flags li { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; background: var(--wv-sand); padding: 8px 13px; border-radius: 999px; }
.wv-product__flags svg { width: 16px; height: 16px; fill: none; stroke: var(--wv-primary); stroke-width: 2; }
.wv-product__cta { background: var(--wv-surface); border: 1px solid var(--wv-line-2); border-radius: var(--wv-radius); padding: 22px; box-shadow: var(--wv-shadow-sm); }
.wv-product__note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--wv-muted); margin: 14px 0 0; }
.wv-product__note svg { width: 16px; height: 16px; fill: none; stroke: var(--wv-primary); stroke-width: 2; flex: none; }
.wv-product__quick { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 0; }
.wv-product__quick li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--wv-line-2); font-size: 15px; }
.wv-product__quick span { color: var(--wv-muted); }
.wv-product__quick b { color: var(--wv-ink); text-align: right; }

/* Tabs */
.wv-tabs { margin-top: 56px; }
.wv-tabs__nav { display: flex; gap: 6px; border-bottom: 1px solid var(--wv-line); flex-wrap: wrap; }
.wv-tab { background: transparent; border: 0; padding: 14px 18px; font: 700 15px var(--wv-font-ui); color: var(--wv-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.wv-tab.is-active { color: var(--wv-primary); border-bottom-color: var(--wv-primary); }
.wv-tabs__panel { display: none; padding: 28px 0; }
.wv-tabs__panel.is-active { display: block; }
.wv-spectable { width: 100%; border-collapse: collapse; max-width: 720px; }
.wv-spectable th, .wv-spectable td { text-align: left; padding: 12px 4px; border-bottom: 1px solid var(--wv-line-2); font-size: 15px; vertical-align: top; }
.wv-spectable th { color: var(--wv-muted); font-weight: 600; width: 42%; }
.wv-spectable td { color: var(--wv-ink); font-weight: 600; }
.wv-ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.wv-ticks li { position: relative; padding-left: 28px; }
.wv-ticks li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 7px; height: 12px; border: solid var(--wv-primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.wv-shipgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.wv-shipgrid > div { background: var(--wv-sand); border-radius: var(--wv-radius-sm); padding: 18px; }
.wv-shipgrid b { display: block; margin: 8px 0 4px; }
.wv-shipgrid p { margin: 0; font-size: 14px; color: var(--wv-muted); }
.wv-shipgrid__ico svg { width: 22px; height: 22px; fill: none; stroke: var(--wv-primary); stroke-width: 1.8; }

/* ============================================================
   Purpose page
   ============================================================ */
.wv-purpose__head { max-width: 760px; padding: 8px 0 0; }
.wv-purpose__intro { font-size: 19px; color: var(--wv-muted); line-height: 1.65; }
.wv-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.wv-benefit { background: var(--wv-surface); border-radius: var(--wv-radius); padding: 24px; box-shadow: var(--wv-shadow-sm); }
.wv-benefit h3 { font-size: 17px; }
.wv-benefit p { font-size: 14px; color: var(--wv-muted); margin: 0; }
.wv-variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.wv-purpose__starthead { margin-top: clamp(44px, 5vw, 68px); }
.wv-variant { border: 1px solid var(--wv-line); border-radius: var(--wv-radius); padding: 26px; position: relative; }
.wv-variant__num { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--wv-primary); color: #fff; font-weight: 800; margin-bottom: 12px; }
.wv-variant p { color: var(--wv-muted); font-size: 14px; margin: 0; }
.wv-faq__item { border-bottom: 1px solid var(--wv-line); padding: 4px 0; }
.wv-faq__item summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wv-faq__item summary::-webkit-details-marker { display: none; }
/* Single clean chevron marker (down when closed, up when open) — shared by both FAQ variants. */
.wv-faq__item summary::after { content: ""; flex: none; width: 9px; height: 9px; margin-right: 3px; border-right: 2px solid var(--wv-primary); border-bottom: 2px solid var(--wv-primary); transform: translateY(-2px) rotate(45deg); transition: transform .3s var(--wv-ease); }
.wv-faq__item[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.wv-faq__item p { color: var(--wv-muted); margin: 0 0 16px; }

/* ============================================================
   Prose
   ============================================================ */
.wv-prose { font-size: 17px; line-height: 1.75; }
.wv-prose h2 { font-family: var(--wv-font-display); font-weight: 600; font-size: 30px; margin: 1.4em 0 .5em; }
.wv-prose h3 { font-size: 20px; }
.wv-prose ul { padding-left: 1.2em; }
.wv-prose li { margin: .4em 0; }
.wv-prose a { text-decoration: underline; }
/* About: brand story beside an editorial portrait. */
.wv-about-hero { display: grid; grid-template-columns: 1fr minmax(240px, 320px); gap: clamp(26px, 4vw, 52px); align-items: center; margin: 4px 0 10px; }
.wv-about-hero__text > :first-child { margin-top: 0; }
.wv-about-hero__text h2:first-of-type { margin-top: 1.1em; }
.wv-about-hero__media { margin: 0; border-radius: var(--wv-radius); overflow: hidden; box-shadow: var(--wv-shadow-md, 0 18px 50px rgba(26,19,38,.18)); }
.wv-about-hero__media img { display: block; width: 100%; height: auto; aspect-ratio: 823 / 1100; object-fit: cover; }
@media (max-width: 620px) {
    .wv-about-hero { grid-template-columns: 1fr; gap: 22px; }
    .wv-about-hero__media { max-width: 340px; margin: 0 auto; order: -1; }
}

/* FAQ accordion (native <details>) */
.wv-faq { margin: 10px 0; }
/* Homepage FAQ section: constrain the accordion, offset anchor below the sticky header. */
.wv-faq-section { scroll-margin-top: 92px; }
.wv-faq-home { max-width: none; }
.wv-faq__item { border-bottom: 1px solid var(--wv-line); }
.wv-faq__q { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 700; font-size: 17px; color: var(--wv-text); transition: color .2s var(--wv-ease); }
.wv-faq__q:hover { color: var(--wv-primary); }
/* Chevron marker comes from the shared `.wv-faq__item summary::after` rule above. */
.wv-faq__a { padding: 0 0 20px; }
.wv-faq__a p { margin: 0; color: var(--wv-muted); line-height: 1.7; font-size: 16px; }

/* How-it-works steps */
.wv-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wv-step { position: relative; background: var(--wv-surface); border-radius: var(--wv-radius); padding: 28px 26px; box-shadow: var(--wv-shadow-sm); }
.wv-step__num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--wv-primary); color: #fff; font-family: var(--wv-font-display); font-weight: 600; font-size: 20px; margin-bottom: 16px; }
.wv-step__title { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.wv-step__text { margin: 0; color: var(--wv-muted); line-height: 1.6; font-size: 15px; }

.wv-404 { text-align: center; padding: 80px 20px; }
.wv-404__actions { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ============================================================
   18+ gate + cookie (server-rendered). [hidden] must win over display:flex.
   ============================================================ */
.wv-agegate[hidden], .wv-cookie[hidden] { display: none !important; }
.wv-agegate { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: rgba(26,19,38,.9); backdrop-filter: blur(8px); padding: 24px; }
.wv-agegate__card { background: var(--wv-surface); border-radius: var(--wv-radius); padding: 40px; max-width: 440px; text-align: center; box-shadow: 0 30px 80px rgba(26,19,38,.4); }
.wv-agegate__card h2 { font-family: var(--wv-font-display); font-weight: 600; font-size: 30px; }
.wv-agegate__actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
/* «Мне нет 18»: чёрный фон + блок-экран. Куки нет → перезагрузка снова спросит. */
.wv-agegate.is-blocked { background: #000; backdrop-filter: none; }
.wv-agegate__card--blocked p { color: var(--wv-muted); margin: 10px 0 0; }
.wv-agegate__back { margin-top: 22px; background: none; border: 0; color: var(--wv-primary); font: 600 14px var(--wv-font-ui); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.wv-agegate__back:hover { color: var(--wv-primary-dk); }
.wv-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9998; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; max-width: var(--wv-container); margin: 0 auto; padding: 16px 22px; background: var(--wv-ink); color: #fff; border-radius: var(--wv-radius); box-shadow: 0 20px 50px rgba(26,19,38,.35); }
.wv-cookie p { margin: 0; font-size: 14px; flex: 1 1 320px; color: rgba(255,255,255,.85); }
.wv-cookie a { color: var(--wv-blush); text-decoration: underline; }

/* reveal — gated behind .wv-js so content is fully visible without JS (and never stuck hidden) */
.wv-js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--wv-ease), transform .6s var(--wv-ease); }
.wv-js [data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .wv-js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .wv-grid--cards { grid-template-columns: repeat(3, 1fr); }
    .wv-catgroups { grid-template-columns: repeat(2, 1fr); }
    .wv-benefits { grid-template-columns: repeat(2, 1fr); }
    .wv-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 860px) {
    /* backdrop-filter on the header creates a containing block for fixed children,
       which would trap the slide-in nav inside the header. Drop it on mobile. */
    .wv-header { backdrop-filter: none; background: rgba(251, 247, 243, .98); }
    .wv-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); background: var(--wv-surface); z-index: 60; flex-direction: column; padding: 70px 28px; transform: translateX(100%); transition: transform .3s var(--wv-ease); box-shadow: -20px 0 60px rgba(26,19,38,.2); margin: 0; }
    .wv-nav.is-open { transform: translateX(0); }
    .wv-nav__list, .wv-nav .menu { flex-direction: column; gap: 4px; }
    .wv-nav__list a, .wv-nav .menu a { display: block; padding: 12px 0; font-size: 18px; border-bottom: 1px solid var(--wv-line-2); }
    .wv-nav { overflow-y: auto; }
    /* Mega becomes an in-flow accordion inside the slide-in panel */
    .wv-mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; background: transparent; display: none; }
    .wv-has-mega.is-open .wv-mega { display: block; }
    .wv-mega__inner { display: block; padding: 4px 0 8px; }
    .wv-mega__cols { grid-template-columns: 1fr; gap: 4px; }
    .wv-mega__head { flex-direction: row; align-items: center; gap: 12px; margin: 2px 0; }
    .wv-mega__thumb { width: 52px; flex: none; aspect-ratio: 1 / 1; }
    .wv-mega__name { font-size: 17px; }
    .wv-mega__head::after { display: none; }
    .wv-mega__sub a, .wv-mega__aud a { font-size: 16px; font-family: var(--wv-font-ui); font-weight: 500; }
    .wv-mega__aside { border-left: 0; padding-left: 0; margin-top: 8px; }
    .wv-mega__feature { min-height: 110px; margin-top: 14px; }
    .wv-nav__close { display: block; position: absolute; top: 18px; right: 20px; background: none; border: 0; font-size: 32px; line-height: 1; color: var(--wv-ink); cursor: pointer; }
    .wv-burger { display: flex; }
    .wv-header__cta { display: none; }
    .wv-product, .wv-request, .wv-consult__grid { grid-template-columns: 1fr; gap: 28px; }
    .wv-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
    .wv-tile--lg { grid-column: span 2; grid-row: span 1; }
    .wv-scenarios { grid-template-columns: 1fr 1fr; }
    .wv-shipgrid { grid-template-columns: 1fr; }
    .wv-editorial { grid-template-columns: 1fr; }
    .wv-editorial__media { min-height: 300px; order: -1; }
    .wv-divider { min-height: 320px; }
    .wv-divider__bg { background-attachment: scroll; }
    .wv-hero__bg { background-attachment: scroll; }
    /* Shorter banner on phones so the copy isn't dwarfed by a tall video. */
    .wv-hero { min-height: 72vh; }
    /* Catalog: sidebar stacks above the grid; filters collapse into a drawer toggled by «Фильтры». */
    .wv-catalog-layout { grid-template-columns: 1fr; gap: 0; }
    .wv-catalog-sidebar { position: static; }
    .wv-catalog-sidebar__title { display: none; }
    .wv-catalog-sidebar .wv-filters { padding: 18px; }
    .wv-filters-toggle { display: inline-flex; }
    .wv-filters { display: none; flex-direction: column; align-items: stretch; }
    .wv-filters.is-open { display: flex; }
    .wv-filter { width: 100%; }
    .wv-filter select { width: 100%; min-width: 0; }
    .wv-filters__reset { margin: 4px 0 0; align-self: flex-start; }
    .wv-catalog-toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .wv-sort { width: 100%; justify-content: space-between; }
    .wv-sort__select { flex: 1; }
}
@media (max-width: 600px) {
    .wv-grid--cards, .wv-catalog-main .wv-grid--cards { grid-template-columns: repeat(2, 1fr); }
    .wv-catgroups { grid-template-columns: 1fr; }
    .wv-shop { grid-template-columns: 1fr; }
    .wv-benefits, .wv-variants { grid-template-columns: 1fr; }
    .wv-scenarios { grid-template-columns: 1fr; }
    .wv-steps { grid-template-columns: 1fr; }
    .wv-footer__grid { grid-template-columns: 1fr 1fr; }
    .wv-form { grid-template-columns: 1fr; }
    .wv-topbar__item--hide-sm { display: none; }
    /* Topbar: keep only the consultation line, centred, so the phone doesn't wrap. */
    .wv-topbar__inner { justify-content: center; gap: 12px; }
    .wv-topbar__item:not(.wv-topbar__item--right) { display: none; }
    .wv-topbar__item--right { margin-left: 0; white-space: nowrap; }
    .wv-card__body { padding: 13px; }
    .wv-trustbar__grid { grid-template-columns: 1fr 1fr; row-gap: 26px; }
    .wv-trust { border-left: 0 !important; padding: 4px 10px; }
    .wv-press__inner { gap: 18px; }
    .wv-press__logos { gap: 18px; }
    .wv-press__logos li { font-size: 17px; }
    /* On phones the top-right placement reads awkwardly — fall back to left, normal padding. */
    .wv-hero--topright .wv-hero__content { margin-left: 0; text-align: left; }
    .wv-hero--topright .wv-hero__lead { margin-left: 0; }
    .wv-hero--topright .wv-hero__actions, .wv-hero--topright .wv-hero__usp { justify-content: flex-start; }
    .wv-hero--topright .wv-hero__inner { padding-bottom: clamp(70px, 11vw, 150px); }
}
