/* Existing rules */
#ae3dfd9 { display: block; }
#d86ddb4 { display: none; }
@media screen and (max-width: 768px) {
  #ae3dfd9 { display: none; }
  #d86ddb4 { display: block; }
}

/* ================================================================
   Okko-style Single Video Page — Pixel-perfect
   Values extracted from okko.tv/movie/*
   ================================================================ */

:root {
  --vtc-bg: #0a0a0a;
  --vtc-bg-card: #1a1a1e;
  --vtc-text: #e1e3e6;
  --vtc-text-secondary: #8c8f9a;
  --vtc-accent-gradient: linear-gradient(to right, #FF0056, #6117E7);
  --vtc-accent-solid: #5d0ef5;
  --vtc-btn-secondary-bg: rgba(139, 136, 146, 0.32);
  --vtc-radius: 8px;
  --vtc-radius-btn: 12px;
  --vtc-radius-lg: 12px;
  --vtc-gap: 16px;
  --vtc-side-px: 48px;
}

/* --- Parent theme overrides (critical) --- */
.single-video .topspace-90 {
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.single-video .bg-gray {
  background: var(--vtc-bg) !important;
  padding: 0 !important;
}
.single-video .video-section {
  padding: 0 !important;
}
.single-video #video-sidebar {
  display: none !important;
}
.single-video .container-fluid {
  padding: 0 !important;
}
/* Шапка в .container-fluid: боковые отступы на всех страницах (иначе лого у края экрана) */
.site-header .container-fluid {
  padding-left: var(--vtc-side-px) !important;
  padding-right: var(--vtc-side-px) !important;
}
body.single-video {
  background: var(--vtc-bg);
}
.single-video .main-container {
  background: var(--vtc-bg) !important;
  padding: 0 !important;
  overflow: visible !important;
}
.single-video .d-flex.topspace-90 {
  display: block !important;
}

/* --- Container --- */
.vtc-container {
  width: 100%;
  padding: 0 var(--vtc-side-px);
  box-sizing: border-box;
}

/* --- Section --- */
.vtc-section {
  padding: 40px 0;
  background: var(--vtc-bg);
}
.vtc-section__title {
  color: rgba(255, 255, 255, 0.96);
  font-size: 23px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* ===================== HERO ===================== */
.vtc-hero {
  position: relative;
  margin-top: 88px;
  min-height: 606px;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Trailer video layer in hero */
.vtc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.vtc-hero__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.vtc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.1) 0%,
      rgba(10,10,10,0.35) 35%,
      rgba(10,10,10,0.82) 60%,
      rgba(10,10,10,0.95) 80%,
      rgba(10,10,10,1) 100%
    ),
    radial-gradient(ellipse at 70% 20%, transparent 0%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
}

.vtc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--vtc-side-px) 48px;
}

.vtc-hero__info {
  max-width: 680px;
}

/* Title — Okko: very large, bold, uppercase */
.vtc-hero__title {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* Meta row — items separated by middle dot (Okko-style) */
.vtc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}
.vtc-meta-item {
  color: var(--vtc-text-secondary);
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}
.vtc-meta-item + .vtc-meta-item::before {
  content: "\00b7";
  margin: 0 10px;
  color: var(--vtc-text-secondary);
  font-weight: 700;
  font-size: 18px;
  vertical-align: middle;
}
.vtc-meta-item a {
  color: var(--vtc-text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.vtc-meta-item a:hover {
  color: #fff;
}

/* Short description in hero — Okko: 17px / 22px */
.vtc-hero__desc {
  color: var(--vtc-text);
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Crew lines: Director / Actors */
.vtc-hero__crew {
  color: var(--vtc-text-secondary);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.vtc-crew-label {
  color: var(--vtc-text-secondary);
  margin-right: 8px;
}
.vtc-hero__crew a {
  color: var(--vtc-text);
  text-decoration: none;
  transition: color 0.15s;
}
.vtc-hero__crew a:hover {
  color: #fff;
}

/* Price label */
.vtc-hero__price {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 36px;
}

/* Action buttons */
.vtc-hero__actions {
  margin-top: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

/* --- Buttons (Okko: 52px height, 12px radius, gradient) --- */
.vtc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.96);
}
.vtc-btn:active {
  transform: scale(0.97);
}
.vtc-btn--primary {
  background: var(--vtc-accent-gradient);
  color: #fff;
}
.vtc-btn--primary:hover {
  opacity: 0.88;
  color: #fff;
  text-decoration: none;
}
.vtc-btn--secondary {
  background: var(--vtc-btn-secondary-bg);
  color: rgba(255, 255, 255, 0.96);
}
.vtc-btn--secondary:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}
.vtc-btn--outline {
  background: var(--vtc-btn-secondary-bg);
  color: rgba(255, 255, 255, 0.96);
}
.vtc-btn--outline:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}
.vtc-btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 18px;
}
.vtc-btn--icon:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.vtc-favorite-toggle[data-vtc-favorite="1"] {
  color: #ff0056 !important;
  border-color: rgba(225, 5, 115, 0.45);
}
.vtc-favorite-toggle[data-vtc-favorite="1"]:hover {
  color: #e10573;
  background: rgba(225, 5, 115, 0.15);
  border-color: rgba(225, 5, 115, 0.65);
}
.vtc-share-tip {
  position: absolute;
  bottom: -32px;
  right: 0;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  animation: vtcFadeIn 0.2s;
}
@keyframes vtcFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== PLAYER SECTION ===================== */
.vtc-player-section {
  background: var(--vtc-bg);
  padding: 0 0 32px;
}
.vtc-player-section .vtc-container {
  width: 100%;
}
.vtc-player-section .movie-subscription-wrapper {
  border-radius: var(--vtc-radius-lg);
  overflow: hidden;
}
.vtc-player-section .movie-subscription-poster-container {
  border-radius: var(--vtc-radius-lg);
}
.vtc-player-section .movie-subscription-overlay {
  border-radius: var(--vtc-radius-lg);
}
.vtc-player-section .movie-subscription-overlay-content {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.vtc-player-section .movie-subscription-buy-btn {
  background: var(--vtc-accent-gradient) !important;
  border-radius: var(--vtc-radius-btn) !important;
}
.vtc-player-section .movie-subscription-buy-btn:hover {
  opacity: 0.88 !important;
}
.vtc-player-section .movie-subscription-login-btn {
  border-radius: var(--vtc-radius-btn) !important;
  background: var(--vtc-btn-secondary-bg) !important;
  border: none !important;
}
.vtc-player-section iframe,
.vtc-player-section video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: var(--vtc-radius-lg);
  border: none;
}

/* ===================== DESCRIPTION ===================== */
.vtc-description {
  padding-top: 32px;
  padding-bottom: 16px;
}
.vtc-description__text {
  color: var(--vtc-text);
  font-size: 17px;
  line-height: 1.35;
  max-height: 92px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}
.vtc-description__text--expanded {
  max-height: 4000px;
}
.vtc-description__text p {
  margin: 0 0 12px;
}
.vtc-read-more-btn {
  background: none;
  border: none;
  color: var(--vtc-accent-solid);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 8px;
}
.vtc-read-more-btn:hover {
  text-decoration: underline;
}

/* ===================== HORIZONTAL SCROLL ===================== */
.vtc-hscroll {
  display: flex;
  gap: var(--vtc-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.vtc-hscroll::-webkit-scrollbar {
  display: none;
}
.vtc-hscroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ===================== POSTER CARDS (Смотрите также, От режиссёра) ===================== */
.vtc-similar .vtc-hscroll,
.vtc-by-director .vtc-hscroll {
  gap: 8px;
}
.vtc-card--poster {
  position: relative;
  display: block;
  width: 160px;
  text-decoration: none;
  border-radius: var(--vtc-radius);
  overflow: hidden;
}
.vtc-card--poster img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s;
}
.vtc-card--poster:hover img {
  transform: scale(1.05);
}
.vtc-card--poster .vtc-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 10px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================== MATERIAL CARDS ===================== */
.vtc-card--material {
  display: flex;
  flex-direction: column;
  width: 280px;
  text-decoration: none;
  border-radius: var(--vtc-radius);
  overflow: hidden;
  background: var(--vtc-bg-card);
  transition: transform 0.25s;
}
.vtc-card--material:hover {
  transform: translateY(-4px);
}
.vtc-card--material .vtc-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.vtc-card--material .vtc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.vtc-card--material:hover .vtc-card__img img {
  transform: scale(1.05);
}
.vtc-card--material .vtc-card__body {
  padding: 14px 16px 18px;
}
.vtc-card__tag {
  display: inline-block;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.vtc-card--material .vtc-card__title {
  color: var(--vtc-text);
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vtc-card--material:hover .vtc-card__title {
  color: #fff;
}

/* ===================== PERSON CARDS ===================== */
.vtc-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 159px;
}
.vtc-person__avatar {
  width: 127px;
  height: 127px;
  border-radius: 50%;
  overflow: hidden;
  background: #2a2a30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 2px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.vtc-person:hover .vtc-person__avatar {
  border-color: rgba(255,255,255,0.2);
}
.vtc-person__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vtc-person__initials {
  color: rgba(255,255,255,0.45);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.vtc-person__name {
  color: var(--vtc-text);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.3;
}
.vtc-person__role {
  color: var(--vtc-text-secondary);
  font-size: 13px;
  line-height: 1.3;
}
.vtc-person:hover .vtc-person__name {
  color: #fff;
}

/* ===================== COLLECTION CARDS ===================== */
.vtc-card--collection {
  display: flex;
  flex-direction: column;
  width: 220px;
  text-decoration: none;
}
.vtc-card--collection img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--vtc-radius);
  transition: transform 0.25s;
}
.vtc-card--collection:hover img {
  transform: scale(1.04);
}
.vtc-card__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--vtc-radius);
  background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  text-align: center;
}
.vtc-card--collection .vtc-card__title {
  color: var(--vtc-text);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.35;
}
.vtc-card--collection:hover .vtc-card__title {
  color: #fff;
}

/* ===================== SUBSCRIPTION POPUP ===================== */
.vtc-subscription-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.vtc-subscription-popup.vtc-popup--visible {
  display: flex;
}
.vtc-subscription-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vtc-subscription-popup__content {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: calc(100% - 32px);
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  animation: vtcPopupIn 0.3s ease;
}
@keyframes vtcPopupIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.vtc-subscription-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}
.vtc-subscription-popup__close:hover {
  color: #fff;
}
.vtc-subscription-popup__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.vtc-subscription-popup__date {
  color: var(--vtc-text-secondary);
  font-size: 14px;
  margin: 0 0 28px;
}
.vtc-subscription-popup__buttons {
  display: grid;
  gap: 12px;
  width: 100%;
}
.vtc-subscription-popup__buttons--dual {
  grid-template-columns: 1fr 1fr;
}
.vtc-subscription-popup__buttons--single {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.vtc-subscription-popup__buttons--single .movie-subscription-buy-btn {
  max-width: 100%;
}
.vtc-subscription-popup__buttons .movie-subscription-buy-btn {
  width: 100%;
  padding: 16px 24px;
  color: #fff;
  border: none;
  border-radius: var(--vtc-radius-btn) !important;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--vtc-accent-gradient) !important;
  transition: opacity 0.2s;
}
.vtc-subscription-popup__buttons .movie-subscription-buy-btn:hover {
  opacity: 0.88;
}
.vtc-subscription-popup__buttons .movie-subscription-login-btn {
  width: 100%;
  padding: 16px 24px;
  color: #fff;
  border: none !important;
  border-radius: var(--vtc-radius-btn) !important;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--vtc-btn-secondary-bg) !important;
  transition: opacity 0.2s;
}
.vtc-subscription-popup__buttons .movie-subscription-login-btn:hover {
  opacity: 0.8;
}
@media (max-width: 480px) {
  .vtc-subscription-popup__content {
    padding: 32px 24px;
  }
  .vtc-subscription-popup__buttons--dual {
    grid-template-columns: 1fr;
  }
  .vtc-subscription-popup__title {
    font-size: 19px;
  }
}

/* ===================== BACK ===================== */
.vtc-back {
  padding: 24px 0 64px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  :root {
    --vtc-side-px: 28px;
  }
  .vtc-hero {
    min-height: 480px;
  }
  .vtc-hero__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --vtc-side-px: 16px;
    --vtc-gap: 12px;
  }
  .vtc-hero {
    margin-top: 22px;
    min-height: 380px;
  }
  .vtc-hero--has-trailer {
    display: block;
    min-height: 0;
    background-image: none !important;
  }
  .vtc-hero--has-trailer .vtc-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
  }
  .vtc-hero--has-trailer .vtc-hero__media iframe {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .vtc-hero--has-trailer .vtc-hero__overlay {
    display: none;
  }
  .vtc-hero__inner {
    padding-bottom: 28px;
  }
  .vtc-hero--has-trailer .vtc-hero__inner {
    margin-top: -36px;
    padding-top: 54px;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.92) 36px, rgba(10,10,10,1) 54px);
  }
  .vtc-hero__title {
    font-size: 24px;
  }
  .vtc-hero__desc {
    -webkit-line-clamp: 2;
    font-size: 15px;
  }
  .vtc-hero__crew {
    font-size: 13px;
  }
  .vtc-meta-item {
    font-size: 13px;
  }
  .vtc-meta-item + .vtc-meta-item::before {
    margin: 0 6px;
  }
  .vtc-section {
    padding: 28px 0;
  }
  .vtc-section__title {
    font-size: 19px;
    margin-bottom: 16px;
  }
  .vtc-card--poster {
    width: 130px;
  }
  .vtc-card--material {
    width: 230px;
  }
  .vtc-person {
    width: 110px;
  }
  .vtc-person__avatar {
    width: 88px;
    height: 88px;
  }
  .vtc-person__initials {
    font-size: 26px;
  }
  .vtc-person__name {
    font-size: 13px;
  }
  .vtc-person__role {
    font-size: 11px;
  }
  .vtc-card--collection {
    width: 170px;
  }
  .vtc-btn {
    height: 44px;
    padding: 12px 16px;
    font-size: 15px;
  }
  .vtc-hero__price {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 12px;
  }
  .vtc-hero__actions {
    margin-top: 0;
    gap: 8px;
  }
  .vtc-btn--icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ===================== TRAILER PAGE ===================== */
/* single-video обнуляет margin у .topspace-90 — нужен отступ под fixed header */
.single-video .vtc-trailer-page {
  padding-top: 88px;
  box-sizing: border-box;
}
body.admin-bar .single-video .vtc-trailer-page {
  padding-top: 120px; /* fixed header сдвинут вниз на высоту admin bar (32px) + ~88px шапка */
}
.vtc-trailer-page {
  background: #000;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.vtc-trailer-page__header {
  padding: 16px var(--vtc-side-px);
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.vtc-trailer-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.vtc-trailer-page__back:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
}
.vtc-trailer-page__back i {
  font-size: 14px;
}
.vtc-trailer-page__title {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vtc-trailer-page__player {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.vtc-trailer-page__player iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}
@media (max-width: 767px) {
  .single-video .vtc-trailer-page,
  body.admin-bar .single-video .vtc-trailer-page {
    padding-top: 0;
    min-height: auto;
  }
  .vtc-trailer-page__player {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .vtc-trailer-page__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* ===================== FAVORITES (header + page) ===================== */
.vtc-header-favorites-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 0;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 10px;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.vtc-header-favorites-link__icon {
  display: block;
  flex-shrink: 0;
}
.vtc-header-favorites-link:hover {
  color: #e10573;
  border-color: #e10573;
  background: rgba(225, 5, 115, 0.08);
  text-decoration: none;
}
.vtc-header-favorites-link:active {
  transform: scale(0.94);
}
.vtc-header-favorites-link--mobile {
  flex: 0 0 36px;
  min-width: 36px;
  width: 36px;
  height: 36px;
  aspect-ratio: 1;
  margin-right: 8px;
  color: #e10573;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.vtc-header-favorites-link--mobile .vtc-header-favorites-link__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 5px;
}
.vtc-header-favorites-link--mobile:hover,
.vtc-header-favorites-link--mobile:focus {
  color: #ff0056 !important;
  border-color: transparent;
  background: transparent;
}

.vtc-favorites-page {
  padding-top: 24px;
  padding-bottom: 48px;
}
.vtc-favorites-page__empty {
  color: var(--vtc-text-secondary);
  font-size: 17px;
  margin: 0;
}
.vtc-favorites-page__list {
  gap: 16px;
  align-items: flex-start;
}
.vtc-favorites-page__item {
  flex-shrink: 0;
  width: 160px;
}
.vtc-favorites-page__item .vtc-card--poster {
  width: 100%;
}
.vtc-favorites-page__item .vtc-card--poster img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
.vtc-favorites-page__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.vtc-favorites-page__actions .vtc-btn {
  height: auto;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 12px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .vtc-favorites-page__item {
    width: 130px;
  }
  .vtc-favorites-page__item .vtc-card--poster img {
    height: 195px;
  }
}
