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

:root {
  --pink: #e8789a;
  --pink-dark: #c95d8f;
  --pink-light: #fde8f0;
  --pink-soft: #f5c6d6;
  --sweet-pink: #f8d4e3;
  --sweet-sky: #c5e4f8;
  --sweet-sky-light: #e8f4fc;
  --gold: #e8a040;
  --gold-dark: #d48820;
  --gold-light: #fff0d0;
  --cream: #fffcf9;
  --blush: #faf0f4;
  --rose: #d4a574;
  --purple: #8a7a9e;
  --text: #2a2430;
  --muted: #6e5f68;
  --white: #fff;
  --bg: #faf7f5;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --shadow: 0 8px 28px rgba(200, 93, 143, 0.12);
  --shadow-lg: 0 16px 48px rgba(42, 36, 48, 0.1);
  --header: 3.75rem;
  --sticky: 3.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 1rem);
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: var(--sticky);
}

img { max-width: 100%; display: block; }
a { color: var(--pink-dark); }

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

.container--narrow { max-width: 680px; }

/* Buttons — синхронизировано с design-tokens.css */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--v-btn-min-height, 2.75rem);
  padding: var(--v-btn-padding-y, 0.8rem) var(--v-btn-padding-x, 1.35rem);
  border-radius: var(--v-btn-radius, 999px);
  background: var(--v-btn-primary-bg, var(--pink));
  color: var(--v-btn-primary-color, var(--white));
  font-family: inherit;
  font-weight: var(--v-btn-weight, 700);
  font-size: var(--v-btn-font-size, 1rem);
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--v-btn-primary-shadow, 0 4px 16px rgba(168, 72, 116, 0.22));
  transition: var(--v-btn-transition, transform 0.15s, box-shadow 0.15s, background 0.15s);
  white-space: nowrap;
}

.btn:hover {
  color: var(--v-btn-primary-color, var(--white));
  background: var(--v-btn-primary-bg-hover, var(--pink-dark));
  transform: translateY(-1px);
  box-shadow: var(--v-btn-primary-shadow-hover, 0 8px 24px rgba(168, 72, 116, 0.28));
}

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

.btn--sm,
.btn--small {
  min-height: calc(var(--v-btn-min-height, 2.75rem) - 0.35rem);
  padding: var(--v-btn-padding-sm-y, 0.55rem) var(--v-btn-padding-sm-x, 1rem);
  font-size: var(--v-btn-font-size-sm, 0.9rem);
}

.btn--lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--wide { width: 100%; }

.btn--primary {
  background: var(--v-btn-primary-bg, var(--pink));
  color: var(--v-btn-primary-color, var(--white));
  box-shadow: var(--v-btn-primary-shadow, 0 4px 16px rgba(168, 72, 116, 0.22));
}

.btn--primary:hover {
  background: var(--v-btn-primary-bg-hover, var(--pink-dark));
  box-shadow: var(--v-btn-primary-shadow-hover, 0 8px 24px rgba(168, 72, 116, 0.28));
}

.btn--outline {
  background: var(--v-btn-outline-bg, var(--white));
  color: var(--v-btn-outline-color, var(--pink-dark));
  border: var(--v-btn-outline-border, 2px solid rgba(212, 86, 138, 0.35));
  box-shadow: var(--v-btn-outline-shadow, none);
}

.btn--outline:hover {
  color: var(--v-btn-outline-color, var(--pink-dark));
  background: var(--v-btn-outline-bg-hover, var(--pink-light));
  border-color: var(--v-btn-outline-border-hover, rgba(212, 86, 138, 0.5));
  box-shadow: var(--v-btn-outline-shadow-hover, none);
}

.btn--ghost {
  background: var(--v-btn-ghost-dark-bg, rgba(255, 255, 255, 0.15));
  color: var(--v-btn-ghost-dark-color, var(--white));
  border: var(--v-btn-ghost-dark-border, 2px solid rgba(255, 255, 255, 0.7));
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--v-btn-ghost-dark-bg-hover, rgba(255, 255, 255, 0.25));
  color: var(--v-btn-ghost-dark-color, var(--white));
}

.btn--gold {
  background: linear-gradient(180deg, #f0c060 0%, #e89840 100%);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(232, 152, 64, 0.35);
  font-weight: 800;
}

.btn--gold:hover {
  background: linear-gradient(180deg, #e8b050 0%, #d48820 100%);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(212, 136, 32, 0.4);
}

.btn--soft {
  background: var(--gold-light);
  color: var(--text);
  border: 2px solid rgba(232, 160, 64, 0.35);
  box-shadow: none;
  font-weight: 700;
}

.btn--soft:hover {
  background: #ffe8b8;
  color: var(--text);
  border-color: var(--gold);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--v-surface-header, rgba(255, 248, 245, 0.94));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--v-border-accent, rgba(168, 72, 116, 0.08));
}

.header__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: var(--header);
}

.logo { flex-shrink: 0; }
.logo img { height: 2.2rem; width: auto; display: block; }

.header__phone {
  display: none;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.header__phone:hover { color: var(--pink); }

.header__cta { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

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

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(26, 18, 32, 0.45);
  backdrop-filter: blur(2px);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: min(20rem, 88vw);
  height: 100dvh;
  padding: calc(var(--header) + 0.5rem) 1rem 1.5rem;
  background: var(--white);
  border-left: 1px solid rgba(233, 30, 122, 0.1);
  box-shadow: -12px 0 40px rgba(26, 18, 32, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.nav.is-open { transform: translateX(0); }

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

.nav a {
  padding: 0.85rem 0.75rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: var(--radius);
}

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

.nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(233, 30, 122, 0.1);
}

.nav__tel { font-size: 0.95rem !important; }

body.nav-open { overflow: hidden; }

/* Hero — sweet mockup style */
.hero-wrap--sweet {
  background: var(--sweet-sky-light);
}

.hero--sweet {
  padding-top: var(--header);
  position: relative;
}

.hero__sky {
  position: relative;
  background: linear-gradient(180deg, #9ecdea 0%, #c8e4f6 42%, #dceefb 100%);
  padding: 1.1rem 0 0;
  overflow: visible;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero__star::before { content: "✦"; }

.hero__cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.hero__cloud--1 {
  width: 4.5rem;
  height: 1.4rem;
  top: 18%;
  left: 5%;
  box-shadow: 2.5rem 0.4rem 0 rgba(255,255,255,0.45), 5rem -0.2rem 0 rgba(255,255,255,0.35);
}

.hero__cloud--2 {
  width: 3.5rem;
  height: 1.1rem;
  top: 8%;
  right: 8%;
  box-shadow: 2rem 0.3rem 0 rgba(255,255,255,0.4);
}

.hero__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 1rem;
}

.hero__scene {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero__frame {
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0 0.85rem;
}

.hero__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem 1.35rem 0 0;
  border: 3px solid #e8a040;
  border-bottom: none;
  background: #dceefb;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.85),
    0 16px 48px rgba(232, 160, 64, 0.22),
    0 8px 24px rgba(42, 36, 48, 0.1);
}

.hero__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 28%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(200, 228, 246, 0.55) 0%, transparent 100%);
}

.hero__photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(248, 212, 227, 0.75) 0%, transparent 100%);
}

.hero__frame-glow {
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 70%;
  height: 1.25rem;
  background: radial-gradient(ellipse, rgba(232, 160, 64, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero__photo-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  transform: scale(1.02);
  transform-origin: center top;
}

.hero__cutout {
  display: none;
}

.hero__wave {
  line-height: 0;
  margin-top: -1.75rem;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 -2px 0 rgba(232, 160, 64, 0.35));
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 3.25rem;
}

.hero__body {
  display: none;
}

.hero__audience {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(1.55rem, 5.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  max-width: 22rem;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
}

.hero__photo--gold,
.hero__photo {
  display: none;
}

/* Pink benefits block */
.benefits-sweet {
  background: var(--sweet-pink);
  padding: 0.5rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.benefits-sweet__title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.benefits-sweet__title span {
  color: var(--gold);
  margin: 0 0.35rem;
}

.benefits-sweet__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.benefits-sweet__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.benefits-sweet__list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #7bc67e;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.event-types__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.35rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(42, 36, 48, 0.06);
  text-decoration: none;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.event-types__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.1);
  color: var(--pink-dark);
}

.event-types__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hero__cta--sweet {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* Play / interactive */
.play--sweet {
  padding: 1.5rem 0 2rem;
  background: linear-gradient(180deg, var(--sweet-pink) 0%, var(--blush) 100%);
}

.play__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.play__intro {
  max-width: 22rem;
}

.play__intro .section__eyebrow {
  color: var(--rose);
}

.play__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.play__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.play__card {
  width: 100%;
  max-width: 320px;
  padding: 1.25rem 1rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 72, 116, 0.1);
  box-shadow: var(--shadow-lg);
}

.hero__candy {
  align-self: center;
  margin: 0 auto;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.hero-candy__stage {
  position: relative;
  display: inline-block;
  line-height: 0;
  touch-action: none;
  cursor: grab;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

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

.hero-candy__ring {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(168, 72, 116, 0.2);
  border-radius: 1rem;
  pointer-events: none;
}

@keyframes candy-ring-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-candy__canvas {
  display: block;
  width: min(260px, 80vw);
  height: auto;
  aspect-ratio: 280 / 360;
  filter: drop-shadow(0 6px 16px rgba(168, 72, 116, 0.18));
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  z-index: 1;
}

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

.hero-candy__canvas--drag {
  cursor: grabbing;
  animation: none;
}

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

.hero-candy__callout {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: var(--pink-light);
  border: 1px solid var(--pink-soft);
  box-shadow: none;
  color: var(--text);
}

.hero-candy__callout--won {
  background: linear-gradient(135deg, #fff9f0, var(--pink-light));
  border-color: rgba(212, 165, 116, 0.45);
  box-shadow: none;
}

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

.hero-candy__callout-title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--pink-dark);
}

.hero-candy__callout-sub {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

/* 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(26, 18, 32, 0.55);
  backdrop-filter: blur(4px);
}

.prize-modal__card {
  position: relative;
  width: min(380px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: prize-pop 0.35s ease;
}

@keyframes prize-pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

.prize-modal__swatch {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(233, 30, 122, 0.25);
}

.prize-modal__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.prize-modal__card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.prize-modal__note {
  margin: 0.75rem 0 0 !important;
  font-size: 0.75rem !important;
}

body.prize-open { overflow: hidden; }

@media (min-width: 768px) {
  .hero--sweet {
    padding-top: var(--header);
  }

  .hero__sky {
    padding: 2rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    grid-template-rows: auto 1fr;
    gap: 0 2rem;
    align-items: end;
  }

  .hero__decor {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    align-self: center;
    padding: 1rem 0 2rem 0;
    max-width: 480px;
    margin-left: auto;
    width: min(480px, calc(100% - 1.5rem));
  }

  .hero__sub {
    margin: 0;
    max-width: 28rem;
  }

  .hero__scene {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    padding: 0 1.25rem 0 0;
  }

  .hero__frame {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
  }

  .hero__photo-wrap {
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .hero__wave {
    margin-top: -2rem;
  }

  .hero__wave svg {
    height: 4rem;
  }

  .benefits-sweet {
    padding: 2rem 0 2.5rem;
  }

  .benefits-sweet__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
  }

  .event-types {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta--sweet {
    flex-direction: row;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
  }

  .play--sweet {
    padding: 2.5rem 0;
  }

  .play__inner {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: 2rem;
    align-items: center;
    text-align: left;
  }

  .play__intro {
    max-width: none;
  }

  .play__card {
    margin: 0 auto;
  }
}

/* Benefits */
.benefits {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(233, 30, 122, 0.06);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit {
  text-align: center;
  padding: 0.5rem;
}

.benefit__icon {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink);
  font-weight: 800;
}

.benefit strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.benefit p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section--soft { background: var(--pink-light); }

.section__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.section__eyebrow--dark { color: var(--pink-dark); }

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

.section__head h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 1.25rem;
}

.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 72, 116, 0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.price-card:hover {
  border-color: rgba(168, 72, 116, 0.18);
  box-shadow: 0 20px 48px rgba(58, 46, 52, 0.1);
}

.price-card--hit {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}

.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.price-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.price-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.price-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.price-card__time {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card li {
  padding: 0.2rem 0 0.2rem 1.1rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.price-card__foot {
  margin-top: 0.25rem;
}

.price-card__foot .btn--full {
  width: 100%;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(26, 18, 32, 0.1);
}

/* Video */
.video {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  color: var(--white);
}

.video__play svg {
  padding: 1.1rem;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(26, 18, 32, 0.05);
}

.steps li span {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  color: var(--pink);
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.9rem;
}

.steps strong {
  display: block;
  margin-bottom: 0.15rem;
}

.steps p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* FAQ */
.faq { display: grid; gap: 0.5rem; }

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(233, 30, 122, 0.1);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--pink);
  font-size: 1.2rem;
}

.faq__item[open] summary::after { content: "−"; }

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

/* Order form */
.order {
  position: relative;
  padding: 4rem 0;
}

.order__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.order__shade {
  position: absolute;
  inset: 0;
  background: rgba(255, 240, 246, 0.93);
}

.order .container { position: relative; z-index: 1; }

.order__card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.order__card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  text-align: center;
}

.order__lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.order__steps {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.order__steps li {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.order__steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.35rem;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Collapsible gallery */
.more-block {
  padding: 1.5rem 0;
}

.more-block__details {
  border: 1px solid rgba(212, 86, 138, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.more-block__summary {
  padding: 1rem 1.15rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.more-block__summary::-webkit-details-marker { display: none; }

.more-block__details[open] .more-block__summary {
  border-bottom: 1px solid rgba(212, 86, 138, 0.1);
}

.more-block .gallery {
  padding: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.field em { color: var(--pink); font-style: normal; }

.field input {
  padding: 0.9rem 1rem;
  border: 2px solid rgba(233, 30, 122, 0.12);
  border-radius: 0.75rem;
  font: inherit;
  transition: border-color 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.field select,
.field textarea {
  padding: 0.9rem 1rem;
  border: 2px solid rgba(233, 30, 122, 0.12);
  border-radius: 0.75rem;
  font: inherit;
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.form-status {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.form-status--ok { background: #e8f8ef; color: #1a7a42; }
.form-status--err { background: #fde8ec; color: #b42318; }

.order__agree {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.order__call {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(233, 30, 122, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.order__call a {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.order__call a:hover { color: var(--pink); }

/* Footer */
.footer {
  background: #4a3d44;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 1.5rem;
}

.footer__row {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
}

.footer__logo {
  display: inline-flex;
  text-decoration: none;
  line-height: 0;
}

.footer__logo img {
  height: 3rem;
  width: auto;
}

.footer__info p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

.footer__phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer__copy {
  text-align: center;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* CTA band */
.cta-band {
  padding: 1.75rem 0;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  border-block: 1px solid rgba(233, 30, 122, 0.1);
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  text-align: center;
}

.cta-band__text strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.cta-band__text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 249, 246, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 86, 138, 0.12);
  box-shadow: 0 -8px 24px rgba(61, 47, 54, 0.06);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
}

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

.sticky-cta__btn {
  padding: 0.8rem 0.75rem !important;
  font-size: 0.9rem !important;
  box-shadow: none;
}

.sticky-cta__btn:hover { transform: none; }

/* Desktop */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }

  .burger { display: none; }
  .nav-backdrop { display: none !important; }

  .header__row {
    gap: 1.25rem;
  }

  .nav {
    margin-left: auto;
    margin-right: 0.35rem;
  }

  .header__phone {
    display: block;
    margin-left: 0;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none !important;
    overflow: visible;
  }

  .nav__panel {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
  }

  .nav a {
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .nav a:hover { background: none; }

  .nav__actions { display: none; }

  .header__cta { display: inline-flex; flex-shrink: 0; }

  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .btn--full-mobile { width: auto; }

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

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

  .steps { grid-template-columns: repeat(5, 1fr); }
  .steps li { flex-direction: column; text-align: center; padding: 1.25rem 0.75rem; }
  .steps li span { margin: 0 auto 0.5rem; }

  .footer__row {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    gap: 2rem;
  }

  .footer__logo { justify-self: start; }
  .footer__info { text-align: center; justify-self: center; }
  .footer__legal { text-align: right; justify-self: end; margin: 0; }
}

@media (min-width: 900px) {
  .header__row { gap: 1.5rem; }
  .header__phone { font-size: 1rem; }
}

@media (max-width: 767px) {
  .header__phone { display: none; }

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

  .btn--full-mobile { width: 100%; }

  .hero h1 { max-width: none; }

  .section { padding: 2rem 0; }

  .gallery { grid-template-columns: 1fr; }
  .gallery img { aspect-ratio: 4 / 3; }

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

  .play {
    padding: 1.5rem 0 2rem;
  }

  .order__steps {
    flex-direction: column;
    gap: 0.35rem;
  }

  .order__steps li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-align: left;
    font-size: 0.82rem;
  }

  .order__steps li span {
    margin: 0;
    flex-shrink: 0;
  }
}

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

.reviews-page {
  padding-top: calc(var(--header) + 1.5rem);
  padding-bottom: 3rem;
}

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

.reviews-page__head h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--avito-text);
}

.reviews-page__head p {
  margin: 0;
  color: var(--avito-muted);
}

.rv-page-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #e8f7ed;
  color: var(--avito-green);
  border-radius: 4px;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}

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

.rv-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

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

.rv-panel--form h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

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

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

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

.rv-summary__count {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--avito-muted);
  text-align: center;
}

.rv-summary__bars {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--avito-line);
}

.rv-brand {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--avito-green);
}

.rv-avito-badge {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  background: #e8f7ed;
  color: var(--avito-green);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rv-source {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--avito-muted);
  text-align: center;
}

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

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

.rv-bar {
  display: grid;
  grid-template-columns: 1rem 1fr 2.25rem;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

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

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

/* Rating summary */
.rv-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}

.rv-panel .rv-rating {
  flex-direction: column;
  text-align: center;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid var(--avito-line);
}

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

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

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

/* Widget frame */
.rv-widget {
  background: #fff;
  border: 1px solid var(--avito-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.rv-widget--page {
  max-width: none;
}

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

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

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

.rv-widget--page .rv-widget__list {
  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.55rem 1rem;
  background: var(--avito-bg);
  border-top: 1px solid var(--avito-line);
}

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

.rv-widget__link {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--avito-blue);
  text-decoration: none;
  font-weight: 500;
}

.rv-widget__link:hover {
  text-decoration: underline;
}

/* Toolbar */
.rv-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--avito-line);
  background: #fff;
}

.rv-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.rv-toolbar__sort-label {
  color: var(--avito-muted);
}

.rv-toolbar__sort-value {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid var(--avito-line);
  border-radius: 6px;
  font-weight: 500;
  color: var(--avito-text);
}

.rv-toolbar__sort-value::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--avito-muted);
  margin-left: 0.15rem;
}

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

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

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

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

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

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

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

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

.rv-item__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--avito-text);
}

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

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

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

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

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

/* Seller reply */
.rv-reply {
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: #f5f5f5;
  border-radius: 4px;
  border-left: 3px solid #c8c8c8;
}

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

.rv-reply__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #525252;
}

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

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

/* Star picker (site form) */
.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);
}

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

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

.rv-star {
  color: #d9d9d9;
  font-size: 1.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;
}

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

  .rv-sidebar {
    position: sticky;
    top: calc(var(--header) + 1rem);
  }

  .rv-main {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .reviews-page {
    padding-bottom: calc(var(--sticky) + 1rem);
  }
}

/* Legal pages — синхронизировано с design-tokens.css */
.legal-body {
  padding-bottom: 0;
  font-family: var(--v-font-body, "Nunito", system-ui, sans-serif);
  background: var(--v-surface-page, var(--bg));
}

.header__row--legal {
  justify-content: space-between;
}

.legal-page {
  padding: calc(var(--header) + var(--v-space-6, 1.5rem)) 0 var(--v-space-12, 3rem);
}

.legal-back {
  display: inline-block;
  margin-bottom: var(--v-space-4, 1rem);
  font-weight: var(--v-weight-bold, 700);
  text-decoration: none;
  color: var(--v-text-secondary, var(--muted));
  font-size: var(--v-text-sm, 0.9rem);
}

.legal-back:hover { color: var(--v-text-accent, var(--pink)); }

.legal-page h1 {
  margin: 0 0 var(--v-space-4, 1rem);
  font-family: var(--v-font-display, "Fredoka", "Nunito", system-ui, sans-serif);
  font-size: clamp(var(--v-text-2xl, 1.4rem), 4vw, var(--v-text-3xl, 1.75rem));
  font-weight: var(--v-weight-semibold, 600);
  color: var(--v-text-accent, var(--pink-dark));
}

.legal-intro {
  margin-bottom: var(--v-space-6, 1.5rem);
  padding: var(--v-space-4, 1rem) var(--v-space-5, 1.15rem);
  border-radius: var(--v-radius-lg, var(--radius));
  background: var(--v-blush-100, var(--pink-light));
  border: 1px solid var(--v-border-accent, rgba(233, 30, 122, 0.15));
}

.legal-intro p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-content {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-content p { margin: 0; }
