/*
 * Vata55 — premium festive cotton candy landing
 *
 * Дизайн-система: /DESIGN-SYSTEM.md
 * Токены (менять цвета/отступы там): /design-tokens.css
 *
 * План внедрения — пошагово в DESIGN-SYSTEM.md (шаги 1–12).
 * Не трогать без нужды: #hero-candy, .rv-*, форма #order, навигация .top__*
 */

@font-face {
  font-family: "Nunito";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/nunito-400.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/nunito-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/nunito-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/nunito-800.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 0.5rem);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--v-font-body);
  font-size: var(--v-text-base);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 55% at 8% 0%, rgba(255, 220, 233, 0.6) 0%, transparent 62%),
    radial-gradient(ellipse 70% 48% at 94% 16%, rgba(220, 238, 255, 0.72) 0%, transparent 58%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(255, 248, 234, 0.95) 0%, transparent 72%),
    linear-gradient(135deg, #fff0f7 0%, #eaf5ff 48%, #fff8ea 100%),
    var(--page);
  line-height: var(--v-leading-relaxed);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--pink-dark); text-decoration: none; }
a:hover { color: var(--pink); }

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

main {
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: none;
}

.top__row {
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.top__logo { flex-shrink: 0; position: relative; display: inline-flex; align-items: center; }
.top__logo img { height: 2rem; width: auto; }

.top__logo-accent {
  position: absolute;
  top: -0.15rem;
  right: -0.35rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.55;
  box-shadow: 0 0 0 2px rgba(224, 122, 154, 0.15);
}

.top__tel {
  display: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
}

.top__tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  margin-right: 0.25rem;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  transition: background 0.15s, color 0.15s, transform 0.12s;
  -webkit-tap-highlight-color: transparent;
}

.top__tel-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.04);
}

.top__tel-btn:active {
  transform: scale(0.97);
}

.top__burger {
  position: relative;
  z-index: 102;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.625rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.top__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.top__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.top__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top__backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(46, 40, 50, 0.35);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.top__backdrop[hidden] {
  display: none !important;
}

.top__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: min(17rem, 85vw);
  height: 100dvh;
  padding: calc(var(--header) + 1rem) 1.25rem 1.5rem;
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -4px 0 24px rgba(46, 40, 50, 0.08);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  visibility: hidden;
  pointer-events: none;
}

.top__nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.top__nav-close {
  position: absolute;
  top: calc(var(--header) * 0.5 - 0.85rem);
  right: 0.85rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.top__panel {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.top__panel a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-radius: 0.5rem;
}

.top__panel a:hover { background: var(--pink-light); }

.top__nav-cta { color: var(--pink-dark) !important; }

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--v-btn-min-height);
  padding: var(--v-btn-padding-y) var(--v-btn-padding-x);
  border-radius: var(--v-btn-radius);
  font-family: var(--v-btn-font);
  font-weight: var(--v-btn-weight);
  font-size: var(--v-btn-font-size);
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--v-btn-transition);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--v-btn-primary-bg);
  color: var(--v-btn-primary-color);
  box-shadow: var(--v-btn-primary-shadow);
}

.btn--primary:hover {
  color: var(--v-btn-primary-color);
  background: var(--v-btn-primary-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--v-btn-primary-shadow-hover);
}

.hero__actions .btn--primary {
  font-size: var(--v-text-base);
  padding: 0.9rem 1.5rem;
  box-shadow: 0 6px 24px rgba(232, 67, 122, 0.44);
}

.hero__actions .btn--primary:hover {
  box-shadow: 0 12px 32px rgba(232, 67, 122, 0.52);
}

.btn--outline {
  background: var(--v-btn-outline-bg);
  color: var(--v-btn-outline-color);
  border: var(--v-btn-outline-border);
  box-shadow: var(--v-btn-outline-shadow);
}

.btn--outline:hover {
  background: var(--v-btn-outline-bg-hover);
  color: var(--v-btn-outline-color);
  transform: translateY(-1px);
  border-color: var(--v-btn-outline-border-hover);
  box-shadow: var(--v-btn-outline-shadow-hover);
}

.btn--sm {
  min-height: calc(var(--v-btn-min-height) - 0.35rem);
  padding: var(--v-btn-padding-sm-y) var(--v-btn-padding-sm-x);
  font-size: var(--v-btn-font-size-sm);
}

.btn--wide { width: 100%; }

.btn--ghost {
  background: var(--v-btn-ghost-bg);
  color: var(--v-btn-ghost-color);
  border: var(--v-btn-ghost-border);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--v-btn-ghost-bg-hover);
  color: var(--v-btn-ghost-color);
  transform: translateY(-1px);
}

.btn--ghost-dark {
  background: var(--v-btn-ghost-dark-bg);
  color: var(--v-btn-ghost-dark-color);
  border: var(--v-btn-ghost-dark-border);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn--ghost-dark:hover {
  background: var(--v-btn-ghost-dark-bg-hover);
  color: var(--v-btn-ghost-dark-color);
  transform: translateY(-1px);
}

/* Legacy aliases — используйте btn--primary / btn--outline */
.btn--pink {
  background: var(--v-btn-primary-bg);
  color: var(--v-btn-primary-color);
  border: none;
  box-shadow: var(--v-btn-primary-shadow);
}

.btn--pink:hover {
  color: var(--v-btn-primary-color);
  background: var(--v-btn-primary-bg-hover);
  box-shadow: var(--v-btn-primary-shadow-hover);
}

.btn--soft {
  background: var(--v-btn-outline-bg);
  color: var(--v-btn-outline-color);
  border: var(--v-btn-outline-border);
  box-shadow: none;
}

.btn--soft:hover {
  background: var(--v-btn-outline-bg-hover);
  border-color: var(--v-btn-outline-border-hover);
}

/* ─── Hero — иллюстрация от верха секции, контент поверх ─── */
.hero {
  --hero-scene-h: min(calc(100vw * var(--v-hero-scene-ratio)), 747px);
  --hero-bg-shift: clamp(-2.75rem, -4.5vw, -1.5rem);
  position: relative;
  min-height: var(--hero-scene-h);
  overflow: hidden;
  background-color: var(--v-cream-50);
  padding: calc(var(--header) + 0.5rem) 0 var(--v-space-3);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--hero-scene-h) - var(--hero-bg-shift));
  z-index: 0;
  background-image: var(--v-hero-bg);
  background-repeat: no-repeat;
  background-position: center var(--hero-bg-shift);
  background-size: 100% auto;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.5rem;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, var(--v-cream-50) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--v-space-4);
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 0.9rem;
  max-width: 28rem;
  padding: 1.45rem 1.55rem 1.5rem;
  background: var(--v-hero-panel-bg);
  border: var(--v-hero-panel-border);
  border-radius: 1.35rem;
  box-shadow: var(--v-hero-panel-shadow);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  width: 100%;
}

.hero__intro {
  display: grid;
  gap: 0.3rem;
}

.hero__details {
  display: grid;
  gap: 0.65rem;
}

.hero .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 0 0.15rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-family: var(--v-font-body);
  font-size: 0.625rem;
  font-weight: var(--v-weight-bold);
  color: var(--v-pink-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--v-font-display);
  font-size: clamp(1.42rem, 2.35vw, 1.8rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--v-ink-900);
  max-width: 13.5em;
  text-wrap: balance;
  text-shadow: none;
}

.hero__service {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  font-weight: var(--v-weight-semibold);
  color: var(--v-pink-600);
  line-height: 1.35;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--v-radius-full);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--v-blush-100) 100%);
  border: 1px solid var(--v-border-accent);
  font-family: var(--v-font-body);
  font-size: var(--v-text-xs);
  font-weight: var(--v-weight-extrabold);
  color: var(--v-text-accent);
  letter-spacing: var(--v-tracking-wide);
  text-transform: uppercase;
}

.hero .lead {
  color: var(--v-ink-500);
}

.hero__details .lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
  color: var(--v-ink-500);
}

.lead {
  font-size: var(--v-text-md);
  font-weight: var(--v-weight-medium);
  color: var(--v-text-secondary);
  max-width: 32rem;
  line-height: var(--v-leading-normal);
}

.hero__bullets {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: var(--v-weight-medium);
  color: var(--v-text-primary);
  line-height: 1.38;
}

.hero__bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 0.35rem;
  height: 0.35rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--v-pink-400, var(--pink));
  opacity: 0.85;
}

.hero__actions {
  display: grid;
  gap: 0.45rem;
  margin: 0.1rem 0 0;
}

.hero__actions .btn {
  font-size: 0.9rem;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
}

.hero__actions .btn--primary {
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
}

.hero__actions .btn--outline,
.hero__actions .btn--ghost {
  border-width: 1.5px;
}

.hero__actions .btn--ghost {
  font-size: 0.88rem;
}

.hero__trust {
  display: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 100%);
  color: var(--pink-dark);
  border: 1px solid rgba(232, 67, 122, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.hero__trust-icon svg {
  display: block;
}

.hero__photo {
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 44px rgba(42, 36, 48, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  outline: none;
  width: 100%;
  min-height: 0;
}

.hero__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 36%;
}

/* ─── Highlights strip (below hero) ─── */
.highlights {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: var(--v-highlights-padding-y) 0;
  background: var(--v-highlights-bg);
  border-top: none;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--v-highlights-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlights__item {
  display: flex;
  align-items: center;
  gap: var(--v-highlights-gap);
  padding: var(--v-space-3) var(--v-space-4);
  border-radius: var(--v-highlights-item-radius);
  background: var(--v-highlights-item-bg);
  border: 1px solid var(--v-highlights-item-border);
  box-shadow: var(--v-highlights-item-shadow);
}

.highlights__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--v-radius-md);
  color: var(--v-highlights-icon-color);
  background: var(--v-highlights-icon-bg);
  border: 1px solid var(--v-highlights-icon-border);
}

.highlights__text {
  font-size: var(--v-text-xs);
  font-weight: var(--v-weight-semibold);
  color: var(--v-text-secondary);
  line-height: var(--v-leading-snug);
}

.highlights__text strong {
  display: block;
  font-size: var(--v-text-sm);
  font-weight: var(--v-weight-extrabold);
  color: var(--v-text-primary);
}

/* ─── Sections ─── */
.section {
  padding: var(--v-section-padding-y) 0;
}

.section--soft {
  background:
    var(--v-section-soft-glow-pink),
    var(--v-section-soft-glow-sky),
    var(--v-section-soft-bg);
}

#video.section--soft {
  background:
    var(--v-section-video-glow-pink),
    var(--v-section-video-glow-sky),
    var(--v-section-video-bg);
}

#reviews.section--soft {
  background:
    var(--v-section-reviews-glow),
    var(--v-section-reviews-bg);
}

#programs {
  background:
    var(--v-section-programs-glow-pink),
    var(--v-section-programs-glow-sky),
    var(--v-section-programs-bg);
}

#play {
  background:
    var(--v-section-play-glow-mint),
    var(--v-section-play-glow-pink),
    var(--v-section-play-bg);
}

.section--order,
#order {
  background:
    var(--v-section-order-glow-bottom),
    var(--v-section-order-glow-side),
    var(--v-section-order-bg);
}

#faq {
  position: relative;
  overflow: hidden;
  background:
    var(--v-section-faq-glow),
    var(--v-section-faq-bg);
}

.section--festive {
  position: relative;
  overflow: hidden;
}

.section--festive > .wrap {
  position: relative;
  z-index: 1;
}

.section__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__head--left {
  text-align: left;
  margin-bottom: 1.25rem;
}

.section__head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--v-font-display);
  font-size: clamp(var(--v-text-2xl), 3.6vw, var(--v-text-3xl));
  font-weight: var(--v-weight-semibold);
  letter-spacing: var(--v-tracking-tight);
  color: var(--v-text-accent);
}

.section__head h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 0.22rem;
  margin: 0.55rem auto 0;
  border-radius: var(--v-radius-full);
  background: var(--v-gradient-heading-underline);
}

.section__head--left h2::after {
  margin-left: 0;
  margin-right: auto;
}

.section__head p {
  margin: 0;
  color: var(--v-text-secondary);
  font-weight: var(--v-weight-medium);
  font-size: var(--v-btn-font-size);
}

.section__subtitle {
  display: block;
  margin-top: 0.35rem;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  font-size: var(--v-text-sm);
  font-weight: var(--v-weight-medium);
  color: var(--v-text-secondary);
}

.section__more {
  text-align: center;
  margin: 1.25rem 0 0;
}

/* ─── FAQ ─── */
.faq { display: grid; gap: 0.5rem; max-width: 640px; margin: 0 auto; }

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 67, 122, 0.1);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.faq__item[open] {
  border-color: rgba(232, 67, 122, 0.28);
  box-shadow: 0 6px 20px rgba(232, 67, 122, 0.1);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 248, 245, 0.6) 100%);
}

.faq__item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq__item summary:hover {
  color: var(--pink-dark);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  float: none;
  transition: background 0.15s, transform 0.15s;
}

.faq__item[open] summary::after {
  content: "−";
  background: var(--pink);
  color: var(--white);
}

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Video ─── */
.video-frame {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  padding: 0.65rem;
  border-radius: calc(var(--radius) + 0.35rem);
  background: linear-gradient(135deg, rgba(255, 232, 240, 0.85) 0%, rgba(255, 244, 220, 0.65) 50%, rgba(255, 228, 236, 0.75) 100%);
  border: 1px solid rgba(232, 67, 122, 0.15);
  box-shadow: 0 10px 36px rgba(232, 67, 122, 0.14);
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.video-frame::before {
  top: 0.35rem;
  left: 0.35rem;
  background: var(--pink);
}

.video-frame::after {
  bottom: 0.35rem;
  right: 0.35rem;
  background: var(--gold);
}

.video {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}

.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--pink-dark);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(232, 67, 122, 0.28);
  transition: transform 0.12s, box-shadow 0.12s;
  z-index: 1;
}

.video__play:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(232, 67, 122, 0.38);
}

.video__play[hidden] { display: none; }

.video--playing .video__el { object-fit: contain; }

/* ─── Cards ─── */
.cards {
  display: grid;
  gap: var(--v-space-5);
  align-items: stretch;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--v-card-bg), var(--card-tint, var(--v-card-tint-pink));
  border-radius: var(--v-card-radius);
  overflow: hidden;
  border: var(--v-card-border);
  box-shadow: var(--v-card-shadow);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:nth-child(1) { --card-tint: var(--v-card-tint-pink); }
.card:nth-child(2) { --card-tint: var(--v-card-tint-sky); }
.card:nth-child(3) { --card-tint: var(--v-card-tint-mint); }

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--v-card-accent-bar);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1;
}

.card:hover {
  box-shadow: var(--v-card-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--v-card-border-hover);
}

.card:hover::before {
  opacity: 1;
}

.card--hit {
  border-color: var(--v-border-accent-strong);
  box-shadow: var(--v-shadow-card-hit);
}

.card--hit::before {
  opacity: 1;
}

.card--hit:hover {
  box-shadow: var(--v-shadow-accent-lg);
}

.card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border-radius: var(--v-radius-full);
  background: var(--v-card-badge-bg);
  color: var(--v-card-badge-color);
  border: 1px solid var(--v-border-card);
  font-size: var(--v-text-xs);
  font-weight: var(--v-weight-bold);
  box-shadow: var(--v-shadow-accent-sm);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--page);
}

.card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--v-space-4) var(--v-space-5) var(--v-space-5);
}

.card__body h3 {
  margin: 0 0 0.35rem;
  font-size: var(--v-text-md);
  font-weight: var(--v-weight-bold);
  line-height: 1.3;
  min-height: calc(var(--v-text-md) * 1.3 * 2);
}

.card__body p {
  margin: 0 0 0.5rem;
  font-size: var(--v-text-sm);
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(var(--v-text-sm) * 1.45 * 2);
}

.card__price {
  margin: 0 0 0.85rem !important;
  font-size: var(--v-text-xs) !important;
  font-weight: var(--v-weight-bold) !important;
  color: var(--v-text-accent) !important;
  min-height: auto !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  opacity: 0.85;
}

.card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ─── Play / candy ─── */
.play {
  text-align: center;
}

.play__card {
  max-width: 22rem;
  margin: 0 auto;
  padding: 1.15rem;
  background: linear-gradient(160deg, #fff 0%, rgba(255, 248, 245, 0.95) 100%);
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid rgba(232, 67, 122, 0.14);
  box-shadow: var(--shadow);
}

.play__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.play__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.play__actions .btn {
  width: 100%;
  padding: 0.72rem 0.75rem;
  font-size: 0.875rem;
}

.hero__candy {
  margin: 0 auto;
  width: 100%;
  max-width: min(300px, 100%);
}

.hero-candy__stage {
  position: relative;
  display: block;
  width: min(320px, 100%);
  margin: 0 auto;
  line-height: 0;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.hero-candy__stage.hero-candy__canvas--drag {
  cursor: grabbing;
  touch-action: none;
}

.hero-candy__ring {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(224, 122, 154, 0.2);
  border-radius: 0.85rem;
  pointer-events: none;
}

.hero-candy__canvas-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(224, 122, 154, 0.15);
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Spacer keeps height when canvas is position:absolute (Android WebView) */
.hero-candy__canvas-wrap::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 280 / 360;
}

@supports not (aspect-ratio: 1) {
  .hero-candy__canvas-wrap::before {
    aspect-ratio: auto;
    padding-top: 128.571%;
  }
}

.hero-candy__canvas-wrap.hero-candy__canvas--ready {
  animation: candy-wiggle 2.5s ease-in-out infinite;
}

.hero-candy__canvas-wrap.hero-candy__canvas--drag { animation: none; }

.hero-candy__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes candy-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1.5deg); }
  75% { transform: rotate(-1.5deg); }
}

.hero-candy__callout {
  margin-top: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 100%);
  border: 1px solid rgba(232, 67, 122, 0.2);
  text-align: center;
}

.hero-candy__callout-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.hero-candy__callout-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pink-dark);
  line-height: 1.35;
}

.hero-candy__callout-sub {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-candy__callout--won {
  background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
  border-color: rgba(232, 160, 64, 0.35);
}

/* ─── Order ─── */
.order {
  max-width: 420px;
  margin: 0 auto;
  padding: var(--v-space-7);
  background: var(--v-form-bg);
  border-radius: var(--v-form-radius);
  border: var(--v-form-border);
  box-shadow: var(--v-form-shadow);
}

.field {
  display: grid;
  gap: var(--v-space-2);
  margin-bottom: var(--v-space-3);
  font-weight: var(--v-weight-semibold);
  font-size: var(--v-text-sm);
}

.field em { color: var(--v-text-accent); font-style: normal; }

.field input {
  padding: var(--v-space-3) var(--v-space-4);
  min-height: var(--v-btn-min-height);
  border: var(--v-input-border);
  border-radius: var(--v-radius-md);
  font: inherit;
  background: var(--v-input-bg);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--v-input-border-focus);
  background: var(--v-input-bg-focus);
  box-shadow: var(--v-input-focus-ring);
}

.field select,
.field textarea {
  width: 100%;
  padding: var(--v-space-3) var(--v-space-4);
  border: var(--v-input-border);
  border-radius: var(--v-radius-md);
  font-family: inherit;
  font-size: var(--v-btn-font-size);
  color: var(--v-text-primary);
  background: var(--v-input-bg);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.field textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: var(--v-leading-normal);
}

.form-status { margin-top: var(--v-space-2); font-size: var(--v-text-sm); font-weight: var(--v-weight-semibold); }
.form-status--ok { color: #2e7d32; }
.form-status--err { color: #c62828; }

.order__legal {
  margin: var(--v-space-3) 0 0;
  font-size: var(--v-text-xs);
  color: var(--v-text-secondary);
  line-height: var(--v-leading-snug);
}

.order__tel {
  margin: var(--v-space-4) 0 0;
  text-align: center;
  font-weight: var(--v-weight-semibold);
  font-size: var(--v-text-sm);
}

/* ─── Reviews (Avito embed widget) ─── */
:root {
  --avito-green: #00aa46;
  --avito-blue: #0099f7;
  --avito-star: #ffb021;
  --avito-text: #333;
  --avito-muted: #757575;
  --avito-line: #e0e0e0;
  --avito-bg: #fff;
  --avito-deal-bg: #e8f7ed;
}

.rv-more-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--avito-blue);
  text-decoration: none;
}

.rv-more-link:hover {
  text-decoration: underline;
  color: #0077cc;
}

.rv-avito-logo-wrap,
.rv-avito-mark-wrap {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.rv-avito-logo {
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: auto;
  vertical-align: middle;
}

.rv-avito-mark {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.rv-avito-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem 0.2rem 0.45rem;
  background: #f5f5f5;
  color: #4a4a4a;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  vertical-align: middle;
}

.rv-avito-badge__icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.rv-link,
.rv-source--link {
  color: var(--avito-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
}

.rv-link:hover,
.rv-source--link:hover {
  text-decoration: underline;
}

/* Widget frame — мягкая интеграция с карточками сайта */
.rv-widget {
  max-width: 720px;
  margin: 0 auto;
  background: var(--v-surface-elevated);
  border: var(--v-card-border);
  border-radius: var(--v-card-radius);
  box-shadow: var(--v-shadow-sm);
  overflow: hidden;
}

.rv-widget__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--avito-line);
}

.rv-widget__bar-sep {
  color: #bdbdbd;
  font-size: 0.9rem;
  line-height: 1;
  user-select: none;
}

.rv-widget__title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #333;
}

.rv-widget__body {
  padding: 0 1rem;
  min-width: 0;
}

.rv-widget--embed .rv-widget__body {
  padding: 0 1rem;
}

.rv-widget__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border-top: 1px solid var(--avito-line);
}

.rv-widget--embed .rv-widget__foot {
  padding: 0.45rem 0.85rem;
}

.rv-widget__attrib {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--avito-muted);
  letter-spacing: 0.01em;
  text-decoration: none;
}

a.rv-widget__attrib:hover {
  color: #555;
  text-decoration: underline;
}

.rv-widget__attrib .rv-avito-mark {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.rv-widget__loaded {
  font-size: 0.68rem;
  color: var(--avito-muted);
  letter-spacing: 0.01em;
}

.rv-widget__link {
  margin-left: auto;
  font-size: 0.78rem;
}

/* Rating summary (main head) */
.rv-head {
  padding: 0.5rem 0 0.75rem;
}

.rv-head--compact {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--avito-line);
}

.rv-head__main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.rv-head--compact .rv-head__main {
  gap: 1rem;
}

.rv-head__score {
  flex-shrink: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--avito-text);
  letter-spacing: -0.03em;
}

.rv-head--compact .rv-head__score {
  font-size: 2.25rem;
}

.rv-head__bars {
  flex: 1;
  min-width: 0;
  max-width: 280px;
}

.rv-head__meta {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--avito-muted);
}

.rv-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--avito-line);
}

.rv-rating--compact {
  padding: 0.85rem 0;
}

.rv-rating__score {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--avito-text);
  letter-spacing: -0.03em;
}

.rv-rating--compact .rv-rating__score {
  font-size: 2.15rem;
}

.rv-rating__stars {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rv-rating__meta {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--avito-muted);
}

/* Review items */
.rv-widget__list {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rv-empty {
  margin: 0;
  padding: 1.25rem 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--avito-text);
  text-align: center;
}

.rv-empty-note {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--avito-muted);
  text-align: center;
  line-height: 1.45;
}

.rv-summary--empty,
.rv-widget__empty-list {
  padding: 0.25rem 0 0.5rem;
}

.rv-widget--empty .rv-widget__body {
  padding-bottom: 0.25rem;
}

.rv-item {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--avito-line);
}

.rv-widget--embed .rv-item--compact {
  padding: 0.75rem 0;
}

.rv-widget--embed .rv-item--compact:last-child {
  border-bottom: none;
}

.rv-item:last-child {
  border-bottom: none;
}

.rv-item__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  min-width: 0;
}

.rv-item__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  box-sizing: border-box;
}

.rv-item__avatar--anon {
  background: #e8e8e8;
  color: #8a8a8a;
}

.rv-item__avatar--initial,
.rv-item__avatar--color {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rv-item__avatar--emoji {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.rv-item__avatar--photo {
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: none;
  object-fit: cover;
  border-radius: 50%;
}

.rv-item--compact .rv-item__avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  font-size: 0.82rem;
}

.rv-item--compact .rv-item__avatar--photo {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.rv-item--compact .rv-item__avatar--emoji {
  font-size: 1rem;
}

.rv-item__body {
  flex: 1;
  min-width: 0;
}

.rv-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.rv-item__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--avito-text);
}

.rv-item__date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--avito-muted);
}

.rv-item__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.4rem;
}

.rv-item__role {
  font-size: 0.8125rem;
  color: var(--avito-muted);
}

.rv-item__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rv-item__deal {
  margin-bottom: 0.35rem;
}

.rv-deal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--avito-muted);
}

.rv-deal--ok {
  background: none;
  color: var(--avito-muted);
}

.rv-deal__icon {
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--avito-green);
}

.rv-deal__status {
  font-weight: 500;
  color: var(--avito-muted);
}

.rv-deal__sep {
  color: #bdbdbd;
}

.rv-deal__title {
  color: var(--avito-muted);
  font-weight: 400;
}

.rv-item__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--avito-text);
}

.rv-fresh {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.06rem 0.3rem;
  background: #f0f0f0;
  color: #525252;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 600;
  vertical-align: middle;
}

/* Photos */
.rv-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.rv-photos--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 80px));
  gap: 0.4rem;
}

.rv-photos--compact.rv-photos--grid {
  grid-template-columns: repeat(auto-fill, minmax(64px, 64px));
}

.rv-photo-thumb {
  padding: 0;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
  cursor: pointer;
  line-height: 0;
}

.rv-photo-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.rv-item--compact .rv-photo-thumb img {
  width: 64px;
  height: 64px;
}

/* Seller reply */
.rv-reply {
  margin-top: 0.75rem;
  padding: 0 0 0 0.65rem;
  border-left: 2px solid var(--avito-line);
}

.rv-reply__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.4rem;
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.rv-reply__meta > * + *::before {
  content: "·";
  margin-right: 0.4rem;
  color: var(--avito-muted);
  font-weight: 400;
}

.rv-reply__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--avito-text);
}

.rv-reply__author {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--avito-muted);
}

.rv-reply__date {
  font-size: 0.8125rem;
  color: var(--avito-muted);
  white-space: nowrap;
}

.rv-reply__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--avito-text);
}

/* Stars */
.rv-stars {
  display: inline-flex;
  gap: 1px;
  line-height: 1;
}

.rv-stars--sm .rv-star {
  font-size: 0.82rem;
}

.rv-star {
  color: #d9d9d9;
  font-size: 1rem;
}

.rv-star--on {
  color: var(--avito-star);
}

/* Lightbox */
.rv-lightbox[hidden] {
  display: none;
}

.rv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.rv-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.rv-lightbox__frame {
  position: relative;
  max-width: min(920px, 96vw);
  max-height: 90vh;
}

.rv-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
}

.rv-lightbox__close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.rv-lightbox__close:hover {
  opacity: 0.85;
}

/* ─── Reviews page layout ─── */
.reviews-page {
  padding-top: calc(var(--header) + 1rem);
  padding-bottom: 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 184, 208, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(240, 184, 74, 0.08) 0%, transparent 50%),
    var(--cream);
}

#review-form {
  scroll-margin-top: calc(var(--header) + 1rem);
}

#reviews .rv-widget,
#reviews .rv-widget * {
  --avito-text: #333;
}

.reviews-page__head {
  margin-bottom: 1.5rem;
}

.reviews-back {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.reviews-back:hover {
  color: var(--pink-dark);
}

.reviews-page__head h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.reviews-page__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.rv-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  vertical-align: middle;
  margin-left: 0.45rem;
  padding: 0.2rem 0.6rem 0.2rem 0.5rem;
  background: #f5f5f5;
  color: #4a4a4a;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.rv-page-badge .rv-avito-mark {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.rv-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.rv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
  min-width: 0;
}

.rv-sidebar__sticky {
  align-self: stretch;
}

.rv-panel {
  background: #fff;
  border: 1px solid var(--avito-line);
  border-radius: 4px;
  padding: 1rem;
}

.rv-panel--seller {
  padding: 1.125rem 1rem;
}

.rv-panel--form h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--avito-text);
}

.rv-form-lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--avito-muted);
  line-height: 1.5;
}

.rv-form-note {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--avito-muted);
  line-height: 1.45;
}

.reviews-page .field {
  margin-bottom: 0.6rem;
  font-size: 0.8125rem;
}

.reviews-page .field input,
.reviews-page .field select,
.reviews-page .field textarea {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--avito-line);
  border-radius: 4px;
  background: #fff;
  font-size: 0.875rem;
}

.reviews-page .field input:focus,
.reviews-page .field select:focus,
.reviews-page .field textarea:focus {
  outline: none;
  border-color: var(--avito-blue);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 153, 247, 0.12);
}

.reviews-page .field textarea {
  min-height: 4.25rem;
  resize: vertical;
}

.reviews-page .btn--primary {
  margin-top: 0.15rem;
  padding: 0.65rem 1rem;
  background: var(--avito-blue);
  border-radius: 4px;
  box-shadow: none;
  font-weight: 600;
}

.reviews-page .btn--primary:hover {
  background: #0088e0;
  transform: none;
  box-shadow: none;
}

.rv-summary__head {
  margin-bottom: 0.5rem;
}

.rv-summary__count {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.rv-summary__bars {
  margin-top: 0.75rem;
}

/* Seller sidebar card */
.rv-seller {
  text-align: left;
}

.rv-seller__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--avito-muted);
}

.rv-seller__brand-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  opacity: 0.85;
}

.rv-seller__brand-text {
  line-height: 1.2;
}

.rv-seller__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rv-seller__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  min-width: 64px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--avito-line);
  overflow: hidden;
}

.rv-seller__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.rv-seller__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--avito-text);
}

.rv-seller__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--avito-muted);
}

.rv-seller__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
  margin: 0.15rem 0 0;
}

.rv-seller__rating-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--avito-text);
}

.rv-seller__norating {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--avito-muted);
}

.rv-seller__type {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--avito-muted);
}

.rv-seller__since {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--avito-muted);
}

.rv-seller__cta {
  display: block;
  width: 100%;
  margin: 0.75rem 0 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--avito-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.rv-seller__cta:hover {
  background: #0088e0;
  color: #fff;
}

.rv-seller__profile {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--avito-muted);
}

.rv-seller__profile:hover {
  color: var(--avito-blue);
}

/* Main reviews head */
.rv-main-head {
  padding: 1.25rem 1.25rem 0.5rem;
}

.rv-main__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.rv-main__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--avito-text);
  letter-spacing: -0.02em;
}

.rv-main__write {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--avito-text);
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.rv-main__write:hover {
  background: #333;
  color: #fff;
}

.rv-main__hint {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: var(--avito-muted);
  line-height: 1.4;
}

/* Embed summary (main page widget) */
.rv-embed-summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.65rem 0 0.5rem;
  border-bottom: 1px solid var(--avito-line);
}

.rv-embed-summary__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--avito-line);
  overflow: hidden;
}

.rv-embed-summary__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.rv-embed-summary__name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--avito-text);
}

.rv-embed-summary__sub {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--avito-muted);
}

.rv-embed-summary__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.rv-embed-summary__score {
  font-size: 0.8125rem;
  color: var(--avito-muted);
}

/* Preview seller strip (legacy, unused) */
.rv-preview-seller {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0 0.25rem;
}

.rv-preview-seller__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--avito-line);
  overflow: hidden;
}

.rv-preview-seller__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.rv-preview-seller__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--avito-text);
}

.rv-preview-seller__meta {
  font-size: 0.72rem;
  color: var(--avito-muted);
}

.rv-bar {
  display: grid;
  grid-template-columns: 1.75rem 1fr 1.5rem;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  color: var(--avito-muted);
}

.rv-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-weight: 600;
  color: var(--avito-text);
}

.rv-bar__star {
  color: var(--avito-star);
  font-size: 0.7rem;
}

.rv-bar__track {
  height: 8px;
  background: #ebebeb;
  border-radius: 999px;
  overflow: hidden;
}

.rv-bar__fill {
  display: block;
  height: 100%;
  background: var(--avito-star);
  border-radius: 999px;
}

.rv-bar__count {
  text-align: right;
  font-size: 0.75rem;
  color: var(--avito-muted);
}

.rv-bar__pct {
  text-align: right;
  font-size: 0.75rem;
}

.rv-source {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.rv-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.75rem 0;
  background: transparent;
  border-bottom: 1px solid var(--avito-line);
  font-size: 0.8125rem;
  color: var(--avito-muted);
}

.rv-toolbar--page {
  border-top: none;
}

.rv-toolbar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.rv-toolbar__count {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--avito-text);
  white-space: nowrap;
  line-height: 1.2;
}

.rv-toolbar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  min-width: 0;
}

.rv-toolbar__sep {
  color: #bdbdbd;
  font-size: 0.875rem;
  line-height: 1;
  user-select: none;
}

.rv-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: default;
  line-height: 1.2;
}

.rv-toolbar__sort-value {
  font-weight: 600;
  color: var(--avito-text);
}

.rv-toolbar__chevron {
  font-size: 0.7rem;
  color: var(--avito-muted);
  line-height: 1;
}

.rv-toolbar__filter {
  padding: 0.35rem 0.85rem;
  background: #f2f2f2;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--avito-text);
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.rv-toolbar__filter:hover {
  background: #ebebeb;
}

.rv-toolbar__filter--on {
  background: #e8f4fc;
  border-color: var(--avito-blue);
  color: var(--avito-blue);
}

.rv-toolbar__write-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--avito-blue);
  text-decoration: none;
  white-space: nowrap;
}

.rv-toolbar__write-link:hover {
  text-decoration: underline;
}

.rv-widget--page {
  max-width: none;
  margin: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.rv-widget--page .rv-toolbar {
  padding-left: 1rem;
  padding-right: 1rem;
}

.rv-widget--page .rv-widget__list {
  padding: 0 1rem;
}

.rv-widget--page .rv-item {
  padding: 1.125rem 0;
}

.rv-widget--page .rv-widget__foot {
  padding-left: 0;
  padding-right: 0;
}

.rv-rate {
  display: flex;
  gap: 0.15rem;
}

.rv-rate__star {
  padding: 0;
  border: none;
  background: none;
  font-size: 1.65rem;
  line-height: 1;
  color: #d9d9d9;
  cursor: pointer;
  transition: transform 0.1s, color 0.1s;
}

.rv-rate__star--on {
  color: var(--avito-star);
}

.rv-rate__star:hover {
  transform: scale(1.08);
}

.rv-item__source {
  font-size: 0.72rem;
  color: var(--avito-muted);
}

@media (min-width: 900px) {
  .rv-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }

  .rv-sidebar__sticky {
    position: sticky;
    top: calc(var(--header) + 1rem);
    z-index: 2;
  }

  .rv-main {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--avito-line);
    border-radius: var(--v-radius-md);
    overflow: hidden;
  }

  .rv-toolbar--page {
    flex-wrap: nowrap;
    gap: 1rem;
    min-height: 2.75rem;
  }

  .rv-toolbar__left,
  .rv-toolbar__right {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  body.reviews-page-body.sticky-on .reviews-page {
    padding-bottom: var(--sticky);
  }
}

/* ─── Prize modal ─── */
.prize-modal[hidden] { display: none; }

.prize-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.prize-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 36, 40, 0.45);
  backdrop-filter: blur(4px);
}

.prize-modal__card {
  position: relative;
  width: min(340px, 100%);
  padding: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 67, 122, 0.18);
  text-align: center;
  box-shadow: 0 20px 56px rgba(232, 67, 122, 0.2);
}

.prize-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.prize-modal__swatch {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
}

.prize-modal__card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.prize-modal__card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.prize-modal__actions {
  display: grid;
  gap: 0.5rem;
}

body.prize-open { overflow: hidden; }

/* ─── Sticky ─── */
.sticky {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(232, 67, 122, 0.12);
  transition: transform 0.25s ease;
}

.sticky .btn {
  min-height: var(--v-btn-min-height);
  border-radius: var(--v-btn-radius);
}

.sticky--hidden,
.sticky-cta--hidden {
  transform: translateY(110%);
  pointer-events: none;
}

/* ─── Footer ─── */
.foot {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, #fff5f0 100%);
  border-top: 1px solid rgba(232, 67, 122, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.foot a { color: var(--text); font-weight: 600; }
.foot p { margin: 0; }
.foot__row { display: grid; gap: 0.5rem; justify-items: center; }
.foot img { height: 2.5rem; width: auto; opacity: 0.9; }

/* Soft reference-inspired decoration */
.section--festive {
  position: relative;
  overflow: hidden;
}

.hero__inner,
.section--festive > .wrap {
  position: relative;
  z-index: 2;
}

.hero__photo {
  position: relative;
  isolation: isolate;
}

.hero__photo picture {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.cloud-divider {
  position: relative;
  z-index: 2;
  height: var(--v-divider-height);
  margin: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 0, var(--v-divider-scallop) 0 28px, transparent 29px),
    radial-gradient(circle at 18% 0, var(--v-divider-scallop) 0 34px, transparent 35px),
    radial-gradient(circle at 31% 0, var(--v-divider-scallop) 0 26px, transparent 27px),
    radial-gradient(circle at 45% 0, var(--v-divider-scallop) 0 36px, transparent 37px),
    radial-gradient(circle at 60% 0, var(--v-divider-scallop) 0 28px, transparent 29px),
    radial-gradient(circle at 74% 0, var(--v-divider-scallop) 0 34px, transparent 35px),
    radial-gradient(circle at 90% 0, var(--v-divider-scallop) 0 30px, transparent 31px),
    linear-gradient(180deg, var(--v-divider-scallop) 0 50%, var(--v-divider-fade) 51% 100%);
  background-repeat: repeat-x;
}

.foot--festive {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  background:
    radial-gradient(ellipse 80% 55% at 20% 0%, rgba(255, 234, 242, 0.7) 0%, transparent 64%),
    radial-gradient(ellipse 70% 50% at 82% 10%, rgba(220, 238, 255, 0.72) 0%, transparent 60%),
    linear-gradient(135deg, #fff2f6 0%, #eaf5ff 52%, #fff8ea 100%);
  border-top: none;
}

.foot--festive::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 44px;
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 0, var(--cream) 0 26px, transparent 27px),
    radial-gradient(circle at 21% 0, var(--cream) 0 34px, transparent 35px),
    radial-gradient(circle at 36% 0, var(--cream) 0 28px, transparent 29px),
    radial-gradient(circle at 52% 0, var(--cream) 0 36px, transparent 37px),
    radial-gradient(circle at 68% 0, var(--cream) 0 27px, transparent 28px),
    radial-gradient(circle at 84% 0, var(--cream) 0 34px, transparent 35px);
}

.foot--festive .foot__row {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero {
    padding: calc(var(--header) + var(--v-space-2)) 0 var(--v-space-4);
  }

  .hero__inner {
    gap: var(--v-space-3);
  }

  .hero__copy {
    max-width: none;
  }

  .hero__photo {
    max-width: 20rem;
    width: 100%;
    margin-inline: auto;
  }

  .hero__details .lead {
    margin-bottom: 0.65rem;
    font-size: var(--v-text-sm);
    line-height: var(--v-leading-snug);
  }

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

  .hero__bullets {
    margin-bottom: 0.75rem;
    gap: 0.3rem;
  }

  .hero__bullets li {
    font-size: 0.82rem;
  }

  .highlights {
    padding: var(--v-space-4) 0;
  }
}

@media (min-width: 768px) {
  .hero .wrap {
    width: min(1040px, calc(100% - 2.5rem));
  }
}

@media (min-width: 768px) {
  .top__tel-btn { display: none; }
}

/* ─── Desktop ─── */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--v-highlights-gap-desktop);
  }

  .highlights {
    padding: var(--v-space-5) 0;
  }

  .highlights__item {
    padding: var(--v-space-3) var(--v-space-4);
  }

  .top__burger { display: none; }
  .top__backdrop { display: none !important; }

  .top__nav-close { display: none; }

  .top__nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    transform: none !important;
    margin-left: auto;
    visibility: visible;
    pointer-events: auto;
  }

  .top__panel {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .top__panel a {
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .top__panel a:hover { background: none; color: var(--pink); }

  .top__tel {
    display: block;
    flex-shrink: 0;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(0.85rem, 1.6vw, 1.25rem);
    width: min(960px, 100%);
    margin-inline: auto;
  }

  .hero__copy {
    max-width: none;
    align-self: center;
  }

  .hero__photo {
    align-self: stretch;
    display: flex;
    min-height: 0;
  }

  .hero__photo picture {
    flex: 1;
    min-height: 0;
  }

  .hero__photo img {
    width: 100%;
    height: 100%;
    min-height: 17.5rem;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center 36%;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 2vw, 1.8rem);
    line-height: 1.22;
    max-width: 12.5em;
  }

  .hero__bullets {
    gap: 0.3rem;
  }

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

  .hero__actions .btn--ghost {
    grid-column: 1 / -1;
  }

  #programs .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .sticky { display: none; }
}

@media (min-width: 900px) {
  #play .section__head {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
  }

  #play .section__head h2 {
    font-size: clamp(var(--v-text-3xl), 4vw, var(--v-text-4xl));
  }

  #play .section__head p {
    font-size: var(--v-text-md);
  }

  .play__card {
    max-width: 52rem;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 2.5rem;
    text-align: left;
  }

  .play__panel {
    margin-top: 0;
    gap: 1rem;
  }

  .hero__candy {
    max-width: 360px;
    width: 100%;
  }

  .hero-candy__stage {
    width: 100%;
    max-width: 360px;
  }

  .hero-candy__callout {
    padding: 1.15rem 1.25rem;
    text-align: left;
    border-radius: 1rem;
  }

  .hero-candy__callout-icon {
    font-size: 1.5rem;
    margin-bottom: 0.45rem;
  }

  .hero-candy__callout-title {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .hero-candy__callout-sub {
    font-size: 0.92rem;
  }

  .play__actions {
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    max-width: 22rem;
  }

  .play__actions .btn {
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1200px) {
  #play .section__head {
    max-width: 52rem;
    margin-bottom: 2rem;
  }

  #play .section__head h2 {
    font-size: 2.1rem;
  }

  .play__card {
    max-width: 56rem;
    grid-template-columns: minmax(300px, 380px) 1fr;
    gap: 2.75rem;
    padding: 2.25rem 2.75rem;
  }

  .hero__candy,
  .hero-candy__stage {
    max-width: 380px;
  }

  .hero-candy__callout-title {
    font-size: 1.22rem;
  }
}

/* ─── Mobile ─── */
@media (max-width: 767px) {
  .wrap {
    width: min(1080px, calc(100% - 1.25rem));
  }

  .hero {
    padding-top: calc(var(--header) + 0.65rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.35rem, 6.2vw, 1.55rem);
    line-height: 1.22;
  }

  .hero__service {
    font-size: 0.875rem;
  }

  .lead {
    font-size: var(--v-text-sm);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    gap: 0.4rem 0.65rem;
  }

  .section {
    padding: 1.75rem 0;
  }

  .section__head h2 {
    font-size: var(--v-text-2xl);
  }

  #play .section__head {
    max-width: 20rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;
    padding-inline: 0.25rem;
  }

  #play .section__head h2 {
    font-size: 1.48rem;
    line-height: 1.28;
    letter-spacing: -0.025em;
    text-wrap: balance;
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  #play .section__head p {
    font-size: 0.93rem;
    line-height: 1.48;
    letter-spacing: 0.005em;
    text-wrap: balance;
    max-width: 18.5rem;
    margin-inline: auto;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .play__card {
    max-width: none;
    padding: 1.15rem 1rem 1.25rem;
  }

  .play__panel {
    margin-top: 0.75rem;
    gap: 0.65rem;
  }

  .play__actions {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .play__actions .btn {
    padding: 0.78rem 1rem;
    font-size: 0.92rem;
  }

  .hero-candy__canvas-wrap.hero-candy__canvas--ready {
    animation: none;
  }

  .hero-candy__callout {
    padding: 0.85rem 1rem;
  }

  .hero-candy__callout-title {
    font-size: 1rem;
  }

  .hero-candy__callout-sub {
    font-size: 0.88rem;
  }

  #programs .cards {
    grid-template-columns: 1fr;
  }

  .card__body .btn {
    width: 100%;
    align-self: stretch;
  }

  .order {
    padding: var(--v-space-5);
  }

  .sticky .btn {
    padding: 0.55rem 0.65rem;
    font-size: 0.8rem;
  }

  body.sticky-on main {
    padding-bottom: var(--sticky);
  }

  .foot {
    padding: 1.5rem 0 0.65rem;
  }

  body.sticky-on .foot {
    padding-bottom: calc(0.65rem + var(--sticky));
  }
}

/* ─── Desktop site polish (hero не трогаем) ─── */
@media (min-width: 768px) {
  .wrap {
    width: min(1100px, calc(100% - 3rem));
  }

  .hero .wrap {
    width: min(1040px, calc(100% - 2.5rem));
  }

  .section {
    padding: 3.25rem 0;
  }

  .section__head {
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-inline: auto;
  }

  .section__head--left {
    max-width: none;
    margin-inline: 0;
  }

  .section__head h2 {
    font-family: var(--v-font-display);
    font-size: clamp(1.55rem, 2.1vw, 1.95rem);
    font-weight: 600;
    color: var(--v-ink-900);
    line-height: 1.2;
  }

  .section__head h2::after {
    width: 2.25rem;
    height: 0.18rem;
    margin-top: 0.65rem;
    opacity: 0.85;
  }

  .section__head p,
  .section__subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .highlights {
    padding: 1.15rem 0 1.65rem;
  }

  .highlights__item {
    padding: 0.85rem 1.1rem;
  }

  .highlights__text {
    font-size: 0.88rem;
  }

  .video-frame {
    max-width: 680px;
    padding: 0.75rem;
  }

  .faq {
    max-width: 42rem;
    gap: 0.55rem;
  }

  #reviews .section__more {
    margin-top: 1.75rem;
  }

  #reviews-preview {
    max-width: 52rem;
    margin-inline: auto;
  }

  #order .order {
    max-width: 28rem;
    margin-inline: auto;
    padding: 2rem 2.1rem;
  }

  #order .section__head--left {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 1.5rem;
  }

  #order .section__head--left h2::after {
    margin-inline: auto;
  }
}

@media (min-width: 900px) {
  #programs .cards {
    gap: 1.65rem;
  }

  .card__media {
    aspect-ratio: 16 / 10;
  }

  .card__body {
    padding: 1.2rem 1.35rem 1.45rem;
  }

  .card__body h3 {
    min-height: auto;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .card__body p {
    min-height: auto;
    -webkit-line-clamp: 3;
  }

  .card__price {
    margin-bottom: 1rem !important;
  }

  .play__card {
    border-radius: 1.35rem;
    box-shadow: 0 14px 40px rgba(42, 36, 48, 0.08);
  }

  .play__actions {
    max-width: none;
  }
}
