/* ============================================
   RV — Design System
   «Эмоция внутри интерфейса»
   App-like · Gradient · Emotional
   ============================================ */

/* --- Font: Manrope (headings, 600-700) --- */
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-cyrillic.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Font: Inter (body, 400-500) --- */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-cyrillic.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Design Tokens --- */
:root {
  /* Brand gradient */
  --rv-gradient: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F97316 100%);
  --rv-gradient-soft: linear-gradient(135deg, rgba(168,85,247,0.1) 0%, rgba(236,72,153,0.08) 50%, rgba(249,115,22,0.06) 100%);

  /* Primary */
  --rv-purple: #A855F7;
  --rv-pink: #EC4899;
  --rv-orange: #F97316;

  /* Secondary */
  --rv-light-pink: #FBCFE8;
  --rv-soft-purple: #E9D5FF;

  /* Backgrounds */
  --rv-bg: #FFF7FB;
  --rv-surface: #FFFFFF;
  --rv-blur-bg: rgba(255,255,255,0.6);

  /* Text */
  --rv-text: #1F1F2E;
  --rv-body: #4B4B63;
  --rv-muted: #9CA3AF;

  /* Borders */
  --rv-border: #F3E8F4;
  --rv-border-hover: #E9D5FF;

  /* Radii */
  --rv-radius-sm: 10px;
  --rv-radius-md: 14px;
  --rv-radius-lg: 20px;
  --rv-radius-xl: 28px;
  --rv-radius-pill: 999px;

  /* Shadows */
  --rv-shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --rv-shadow-card: 0 10px 30px rgba(0,0,0,0.05);
  --rv-shadow-card-hover: 0 20px 50px rgba(236,72,153,0.15);
  --rv-shadow-glow: 0 10px 30px rgba(236,72,153,0.4);
  --rv-shadow-purple: 0 20px 60px rgba(168,85,247,0.4);

  /* Fonts */
  --rv-font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --rv-font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Easing */
  --rv-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }

body {
  font-family: var(--rv-font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--rv-body);
  background: var(--rv-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --- Container --- */
.rv-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .rv-container { padding: 0 28px; } }
@media (min-width: 1200px) { .rv-container { padding: 0 40px; } }

.lucide { display: inline-block; vertical-align: middle; }

/* ==============================================
   HEADER — Glassmorphism, sticky
   ============================================== */
.rv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--rv-blur-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 232, 244, 0.6);
}

.rv-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Burger — left */
.rv-header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--rv-radius-sm);
  transition: background 0.2s var(--rv-ease);
  color: var(--rv-text);
}

.rv-header__burger:hover { background: var(--rv-soft-purple); }
.rv-header__burger svg, .rv-header__burger .lucide { width: 22px; height: 22px; }

/* Logo — left */
.rv-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.rv-header__logo:hover { opacity: 0.8; }

.rv-header__logo-icon { flex-shrink: 0; }

.rv-header__logo-text {
  font-family: var(--rv-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--rv-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Right section */
.rv-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* City — right */
.rv-header__city {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--rv-soft-purple);
  border-radius: var(--rv-radius-pill);
  color: var(--rv-purple);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--rv-ease);
  white-space: nowrap;
}

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

.rv-header__city-icon { display: inline-flex; flex-shrink: 0; }
.rv-header__city-icon svg { width: 13px; height: 13px; }

/* --- Navigation links (center of header) --- */
.rv-nav {
  display: none;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  justify-content: center;
}
.rv-nav::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .rv-nav { display: flex; }
  .rv-header__burger { display: none; }
}

.rv-nav__link {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rv-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.rv-nav__link:hover {
  color: var(--rv-text);
  border-image: var(--rv-gradient) 1;
}

@media (min-width: 768px) {
  .rv-header__top { height: 60px; }
}

/* ==============================================
   SCREEN — Unified hero + filters block
   ============================================== */
.rv-screen {
  background: var(--rv-gradient);
  border-radius: 0 0 var(--rv-radius-xl) var(--rv-radius-xl);
  padding: 24px 20px 20px;
  margin: -20px -16px 24px;
  color: #fff;
}

/* Top row: logo + badges */
.rv-screen__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.rv-screen__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-screen__logo-img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  animation: rvPulse 4s infinite ease-in-out;
}

.rv-screen__logo-info {
  display: flex;
  flex-direction: column;
}

.rv-screen__logo-name {
  font-family: var(--rv-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.rv-screen__logo-city {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.rv-screen__logo-city svg { width: 11px; height: 11px; }

/* Badges */
.rv-screen__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.rv-screen__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--rv-radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.rv-screen__badge svg { width: 12px; height: 12px; }

.rv-screen__badge--pink { background: rgba(255,255,255,0.22); }
.rv-screen__badge--purple { background: rgba(255,255,255,0.15); }
.rv-screen__badge--warm { background: rgba(255,255,255,0.12); }

/* Title */
.rv-screen__title {
  font-family: var(--rv-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

/* Filters inside the gradient block */
.rv-screen__filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.rv-screen__filters::-webkit-scrollbar { display: none; }

@media (max-width: 579px) {
  .rv-screen__top { flex-direction: column; align-items: flex-start; }
  .rv-screen__badges { justify-content: flex-start; }
}

@media (min-width: 768px) {
  .rv-screen { padding: 32px 32px 24px; margin: -28px -28px 32px; }
  .rv-screen__logo-img { width: 56px; height: 56px; border-radius: 16px; }
  .rv-screen__logo-name { font-size: 1.3rem; }
  .rv-screen__title { font-size: 1.75rem; }
  .rv-screen__badge { padding: 5px 14px; font-size: 0.75rem; }
}

@media (min-width: 1200px) {
  .rv-screen { margin: -28px -40px 36px; padding: 36px 44px 28px; }
  .rv-screen__title { font-size: 2rem; }
}

.rv-filters__item { position: relative; flex-shrink: 0; }

.rv-filters__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: var(--rv-radius-pill);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s var(--rv-ease);
}

.rv-filters__pill svg { width: 13px; height: 13px; opacity: 0.7; transition: transform 0.2s, opacity 0.2s; }
.rv-filters__pill svg:last-child { width: 11px; height: 11px; opacity: 0.5; }

.rv-filters__pill:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.4);
}

.rv-filters__pill:hover svg { opacity: 1; }

.rv-filters__pill[aria-expanded="true"] {
  background: #fff;
  color: var(--rv-purple);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.rv-filters__pill[aria-expanded="true"] svg { opacity: 1; }
.rv-filters__pill[aria-expanded="true"] svg:last-child { transform: rotate(180deg); }

/* --- Dropdown panels --- */
.rv-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 46, 0.25);
  z-index: 99;
  animation: rvFadeIn 0.2s var(--rv-ease);
}
.rv-backdrop.is-visible { display: block; }

.rv-nav__dropdown {
  position: fixed;
  z-index: 100;
  min-width: 320px;
  max-width: 460px;
  background: var(--rv-surface);
  border-radius: var(--rv-radius-lg);
  box-shadow: 0 20px 60px rgba(168,85,247,0.15);
  border: 1px solid var(--rv-border);
  padding: 18px;
  display: none;
  flex-direction: column;
}
.rv-nav__dropdown.is-open { display: flex; }

.rv-nav__dropdown-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rv-border);
}
.rv-nav__dropdown-title {
  font-family: var(--rv-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--rv-text);
}
.rv-nav__dropdown-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--rv-bg);
  border-radius: 50%;
  cursor: pointer;
  color: var(--rv-muted);
  transition: background 0.2s;
}
.rv-nav__dropdown-close:hover { background: var(--rv-soft-purple); color: var(--rv-purple); }
.rv-nav__dropdown-close svg { width: 18px; height: 18px; }

.rv-nav__dropdown-search {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: var(--rv-radius-md);
  font-size: 15px;
  outline: none;
  font-family: var(--rv-font-body);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rv-nav__dropdown-search:focus {
  border-color: var(--rv-pink);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.2);
}

.rv-nav__dropdown-body {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  overflow-y: auto;
  max-height: 45vh;
  min-height: 120px;
}

.rv-nav__dropdown-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--rv-radius-pill);
  font-size: 13px;
  color: var(--rv-body);
  text-decoration: none;
  transition: all 0.15s;
}
.rv-nav__dropdown-link:hover { background: var(--rv-soft-purple); color: var(--rv-purple); }
.rv-nav__dropdown-link[hidden] { display: none; }

@media (max-width: 580px) {
  .rv-nav__dropdown {
    top: auto !important;
    bottom: 0;
    left: 0 !important;
    right: 0;
    min-width: auto;
    max-width: none;
    border-radius: var(--rv-radius-xl) var(--rv-radius-xl) 0 0;
    padding: 20px;
    animation: rvSlideUp 0.25s var(--rv-ease);
  }
  .rv-nav__dropdown-header { display: flex; }
  .rv-nav__dropdown-body { max-height: 55vh; min-height: 200px; }
  .rv-nav__dropdown-search { font-size: 16px; }
  .rv-nav__dropdown-link { padding: 10px 16px; font-size: 14px; }
}

/* --- Animations --- */
@keyframes rvFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rvSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes rvSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes rvHeartPop {
  0% { transform: scale(1); }
  25% { transform: scale(1.35); }
  50% { transform: scale(0.9); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes rvHeartFloat {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-70px) scale(0.4); }
}
@keyframes rvPulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(168,85,247,0.3); }
  50% { box-shadow: 0 20px 60px rgba(236,72,153,0.4); }
}
@keyframes rvBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ==============================================
   BOTTOM SHEET (mobile menu)
   ============================================== */
.rv-bottom-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
}

.rv-bottom-sheet.is-open { display: block; }

.rv-bottom-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 46, 0.35);
  animation: rvFadeIn 0.2s var(--rv-ease);
}

.rv-bottom-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: var(--rv-surface);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: rvSlideUp 0.25s var(--rv-ease);
  border-radius: var(--rv-radius-xl) var(--rv-radius-xl) 0 0;
  box-shadow: 0 -12px 40px rgba(168,85,247,0.1);
}

.rv-bottom-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--rv-border);
  border-radius: 2px;
  margin: 14px auto 0;
}

.rv-bottom-sheet__title {
  padding: 14px 20px 6px;
  font-family: var(--rv-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rv-text);
}

.rv-bottom-sheet__category { border-bottom: 2px solid var(--rv-border); }
.rv-bottom-sheet__category:last-child { border-bottom: none; }

.rv-bottom-sheet__category-title {
  padding: 14px 20px 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rv-muted);
}

.rv-bottom-sheet__group { border-bottom: 1px solid var(--rv-border); }

.rv-bottom-sheet__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rv-text);
  text-align: left;
}

.rv-bottom-sheet__group-toggle svg,
.rv-bottom-sheet__group-toggle .lucide {
  width: 18px; height: 18px;
  color: var(--rv-muted);
  transition: transform 0.25s var(--rv-ease);
}

.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__group-toggle svg,
.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__group-toggle .lucide { transform: rotate(180deg); }
.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__group-toggle { color: var(--rv-purple); }

.rv-bottom-sheet__items {
  display: none;
  padding: 0 20px 14px;
  flex-wrap: wrap;
  gap: 6px;
}

.rv-bottom-sheet__group.is-expanded .rv-bottom-sheet__items { display: flex; }

.rv-bottom-sheet__link {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.8125rem;
  color: var(--rv-body);
  background: var(--rv-bg);
  border-radius: var(--rv-radius-pill);
  transition: all 0.2s;
}

.rv-bottom-sheet__link:hover { background: var(--rv-soft-purple); color: var(--rv-purple); }

.rv-bottom-sheet__static {
  padding: 16px 20px;
  border-top: 2px solid var(--rv-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-bottom-sheet__static a {
  font-size: 0.8125rem;
  color: var(--rv-body);
  padding: 8px 16px;
  background: var(--rv-bg);
  border-radius: var(--rv-radius-pill);
  transition: all 0.2s;
}

.rv-bottom-sheet__static a:hover { background: var(--rv-soft-purple); color: var(--rv-purple); }

/* ==============================================
   MAIN CONTENT
   ============================================== */
.rv-main {
  flex: 1;
  padding: 20px 0 48px;
  margin-top: 96px;
}

@media (min-width: 768px) { .rv-main { padding: 28px 0 64px; margin-top: 104px; } }

/* --- Page Title --- */
.rv-page-header { margin-bottom: 24px; }

.rv-page-title {
  font-family: var(--rv-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rv-text);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .rv-page-title { font-size: 1.875rem; }
  .rv-page-header { margin-bottom: 28px; }
}

/* --- Location info badge --- */
.rv-location-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--rv-soft-purple);
  border-radius: var(--rv-radius-pill);
  margin-bottom: 14px;
  font-size: 0.8125rem;
  color: var(--rv-purple);
  font-weight: 500;
}

.rv-location-info__icon { display: inline-flex; flex-shrink: 0; }
.rv-location-info__icon svg { width: 16px; height: 16px; }
.rv-location-info__name { font-weight: 700; }

/* --- SEO Blocks --- */
.rv-seo-blocks {
  margin-top: 56px;
  background: var(--rv-surface);
  border-radius: var(--rv-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--rv-shadow-soft);
}

.rv-seo-block { margin-bottom: 14px; }
.rv-seo-block:last-child { margin-bottom: 0; }

.rv-seo-block--h1 { font-family: var(--rv-font-heading); font-size: 1.25rem; font-weight: 700; color: var(--rv-text); }
.rv-seo-block--h2 { font-family: var(--rv-font-heading); font-size: 1.05rem; font-weight: 600; color: var(--rv-text); margin-top: 20px; }
.rv-seo-block--text { font-size: 0.875rem; color: var(--rv-muted); line-height: 1.8; }

@media (min-width: 768px) {
  .rv-seo-blocks { padding: 40px; margin-top: 64px; }
  .rv-seo-block--h1 { font-size: 1.5rem; }
  .rv-seo-block--h2 { font-size: 1.2rem; }
  .rv-seo-block--text { font-size: 0.9375rem; }
}

/* ==============================================
   FOOTER — Light, gradient accent, minimal
   ============================================== */
.rv-footer {
  background: linear-gradient(180deg, var(--rv-bg) 0%, #F5EEFF 100%);
  padding: 40px 0 28px;
  margin-top: auto;
  border-top: 1px solid var(--rv-border);
}

.rv-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.rv-footer__brand {
  font-family: var(--rv-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--rv-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv-footer__links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.rv-footer__link {
  font-size: 0.8125rem;
  color: var(--rv-muted);
  transition: color 0.2s;
}

.rv-footer__link:hover { color: var(--rv-purple); }

.rv-footer__bottom {
  padding-top: 16px;
}

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

@media (min-width: 768px) {
  .rv-footer { padding: 48px 0 32px; }
}

/* ==============================================
   BUTTONS — Gradient, rounded, breathing
   ============================================== */
.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--rv-radius-pill);
  transition: all 0.25s var(--rv-ease);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.rv-btn:hover { transform: scale(1.05); filter: brightness(1.1); }
.rv-btn:active { transform: scale(0.97); }

.rv-btn--primary {
  background: var(--rv-gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(236,72,153,0.4);
}

.rv-btn--accent {
  background: var(--rv-gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(236,72,153,0.4);
}

.rv-btn--outline {
  background: var(--rv-surface);
  color: var(--rv-pink);
  border: 2px solid var(--rv-light-pink);
}

.rv-btn--outline:hover {
  background: rgba(251,207,232,0.2);
  border-color: var(--rv-pink);
}

.rv-btn--ghost {
  background: transparent;
  color: var(--rv-purple);
}

.rv-btn--block { display: flex; width: 100%; }
.rv-btn--sm { padding: 10px 20px; font-size: 0.8125rem; }
.rv-btn--lg { padding: 16px 36px; font-size: 1.0625rem; gap: 10px; }

.rv-btn__icon { display: inline-flex; flex-shrink: 0; }
.rv-btn__icon svg { width: 20px; height: 20px; }

/* --- Card Stats & Voting --- */
.rv-card__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0 2px;
  font-size: 0.8rem;
  color: var(--rv-muted);
}
.rv-card__stat { display: flex; align-items: center; gap: 3px; }
.rv-card__stat svg { width: 14px; height: 14px; }

.rv-card__actions-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0 0;
  border-top: 1px solid var(--rv-border);
}

.rv-vote.is-active svg { fill: currentColor; }
.rv-vote--like.is-active { color: #22c55e; }
.rv-vote--dislike.is-active { color: #ef4444; }
.rv-vote--fav.is-active { color: var(--rv-pink); animation: rvHeartPop 0.5s var(--rv-ease); }
.rv-vote__count { font-weight: 500; }

.rv-heart-particle {
  position: absolute;
  pointer-events: none;
  font-size: 18px;
  animation: rvHeartFloat 0.8s var(--rv-ease) forwards;
  z-index: 10;
}

/* --- Utility --- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
