/* =========================================================================
   cinesa_es — reconstructed Cinesa shell (self-contained)
   Fonts: the REAL site fonts served locally — MachineStd (display/hero) +
   NunitoSans Regular (body, weights synthesized like the real site does).
   Values verified against their production stylesheet (cinesa_main.css).
   ========================================================================= */

@font-face {
  font-family: 'Machine';
  font-style: normal; font-display: block;
  src: local('MachineStd'), url('fonts/MachineStd.otf') format('opentype');
}
@font-face {
  font-family: 'NunitoSans';
  font-style: normal; font-display: swap;
  src: local('NunitoSans-Regular'), url('fonts/NunitoSans-Regular.ttf') format('truetype');
}

:root {
  --cn-bg-1: rgb(10, 28, 58);
  --cn-bg-2: rgb(5, 17, 34);
  --cn-panel: #0d1b33;
  --cn-panel-2: #10213e;
  --cn-line: rgba(255, 255, 255, .14);
  --cn-text: #ffffff;
  --cn-muted: #9db0d0;
  --cn-muted-2: #7f93b8;
  --cn-blue: #0068c8;
  --cn-blue-hi: #19aaff;
  --cn-blue-dark: #004d7e;
  --cn-danger: #ff8080;
  --cn-radius: 8px;
  --cn-font: 'NunitoSans', Helvetica, Arial, sans-serif;
  --cn-display: 'Machine', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(circle at center top, var(--cn-bg-1) 0px, var(--cn-bg-2) 900px, var(--cn-bg-2));
  background-attachment: fixed;
  color: var(--cn-text);
  font-family: var(--cn-font);
  font-size: 16px;
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: var(--cn-blue-hi); text-decoration: none; }
a:hover { text-decoration: none; }
button { font-family: var(--cn-font); }
h1, h2, h3 { margin: 0; font-weight: 800; }

.container-lg-padding { padding-left: 24px; padding-right: 24px; }
.page-wrapper { max-width: 1240px; margin: 0 auto; }
.margin-bottom-80 { margin-bottom: 80px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------------------------------------------------------------- header */
.header-wrapper {
  position: sticky; top: 0; z-index: 900;
  background: rgba(5, 17, 34, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.header {
  max-width: 1366px; margin: 0 auto;
  display: flex; align-items: center; gap: 26px;
  height: 64px;
}
.header .logo { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.header .logo img { display: block; height: 26px; width: auto; }
.header .logo-sub { display: block; margin-top: 2px; font: 600 9.5px/1 var(--cn-font); letter-spacing: .8px; color: rgba(255,255,255,.55); }
.header-nav { display: flex; align-items: center; gap: 26px; flex: 1 1 auto; min-width: 0; }
.header-nav-link-container a {
  color: #fff; font-size: 15px; font-weight: 600; letter-spacing: .01em;
  padding: 6px 0; display: inline-block; white-space: nowrap;
}
.header-nav-link-container a:hover { color: var(--cn-blue-hi); }
.header-nav-link-container--active a { border-bottom: 2px solid var(--cn-blue-hi); padding-bottom: 4px; }
.cn-nav-sign { display: none; }
.header-sign { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.header-sign a { color: #fff; font-size: 14.5px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.header-sign a:hover { color: var(--cn-blue-hi); }
.site-picker__button, .header-search__toggle { display: flex; align-items: center; cursor: pointer; background: none; border: 0; padding: 4px; }
.site-picker { position: relative; }
.cn-sitehint {
  position: absolute; top: calc(100% + 12px); right: -8px; z-index: 950;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  background: #1c2634; color: #fff; font: 600 13px var(--cn-font);
  padding: 10px 14px; border-radius: 6px; box-shadow: 0 10px 26px rgba(0,0,0,.5);
}
.cn-sitehint::before {
  content: ''; position: absolute; top: -6px; right: 16px; width: 10px; height: 10px;
  background: #1c2634; transform: rotate(45deg);
}
.cn-sitehint-close { background: none; border: 0; padding: 2px; cursor: pointer; display: flex; opacity: .8; }
.cn-sitehint-close:hover { opacity: 1; }
@media (max-width: 640px) {
  .cn-sitehint { position: fixed; top: 60px; right: 10px; left: auto; max-width: calc(100vw - 20px); }
}
.header-search { display: flex; }
.header-burger { display: none; }
.burger-wrapper { background: none; border: 0; padding: 10px; cursor: pointer; display: block; }
.burger-menu, .burger-menu::before, .burger-menu::after {
  display: block; width: 22px; height: 2px; background: #fff; position: relative;
  content: ''; transition: transform .2s;
}
.burger-menu::before { position: absolute; top: -7px; }
.burger-menu::after { position: absolute; top: 7px; }
.header-burger.is-open .burger-menu { background: transparent; }
.header-burger.is-open .burger-menu::before { transform: translateY(7px) rotate(45deg); }
.header-burger.is-open .burger-menu::after { transform: translateY(-7px) rotate(-45deg); }

/* search panel */
.cn-searchpanel {
  position: sticky; top: 64px; z-index: 890;
  background: #071527; border-bottom: 1px solid var(--cn-line);
}
.cn-searchpanel-inner {
  max-width: 1240px; margin: 0 auto; padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cn-search-input {
  flex: 1 1 260px; background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.35);
  color: #fff; font: 600 18px/1.3 var(--cn-font); padding: 8px 2px; outline: none;
}
.cn-search-input:focus { border-bottom-color: var(--cn-blue-hi); }
.cn-search-input::placeholder { color: var(--cn-muted-2); }
.cn-search-cancel { background: none; border: 0; color: var(--cn-blue-hi); font: 600 14px var(--cn-font); cursor: pointer; }
.cn-search-results { list-style: none; margin: 4px 0 0; padding: 0; flex: 1 1 100%; max-height: 320px; overflow-y: auto; }
.cn-search-results li a {
  display: flex; justify-content: space-between; gap: 12px; padding: 10px 4px;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 15px;
}
.cn-search-results li a:hover { background: rgba(255,255,255,.04); }
.cn-search-results .cn-search-hint { color: var(--cn-muted); font-size: 13px; }
.cn-search-results .cn-search-empty { color: var(--cn-muted); padding: 10px 4px; font-size: 14px; }

/* auth explainer modal */
.cn-authmodal {
  position: fixed; inset: 0; z-index: 990; background: rgba(2, 8, 18, .72);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.cn-authmodal-card {
  background: var(--cn-panel); border: 1px solid var(--cn-line); border-radius: 14px;
  max-width: 430px; width: 100%; padding: 28px 26px; position: relative; text-align: center;
}
.cn-authmodal-card h2 { font-size: 21px; margin-bottom: 10px; }
.cn-authmodal-card p { color: var(--cn-muted); font-size: 14.5px; margin: 0 0 18px; }
.cn-authmodal-close {
  position: absolute; top: 10px; right: 12px; background: none; border: 0;
  color: var(--cn-muted); font-size: 16px; cursor: pointer;
}

/* ---------------------------------------------------------------- buttons */
/* exact cinesa.es recipe: 5-layer background (crisp edges + 12px diagonal
   cut) + matching clip-path. Verified from their production stylesheet. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 400 16px/22px var(--cn-font); letter-spacing: .5px; cursor: pointer;
  padding: 11px 20px; border: 0; color: #fff; position: relative;
  clip-path: polygon(-1px -1px, -1px -10px, calc(100% + 1px) -10px, calc(100% + 1px) 0,
    calc(100% + 1px) calc(100% - 15px), calc(100% - 15px) calc(100% + 1px), 0 100%, 0 calc(100% - 4px));
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px calc(100% - 15px), 1px 100%, calc(100% - 15px) 1px, 100%;
  background-position: top right, top right, bottom left, bottom left, top left;
  transition: background-color .2s;
}
.btn--blue--medium, .v-button--color-primary {
  background-color: #0068c8; color: #fff;
  background-image: linear-gradient(180deg,#0068c8,#0068c8),linear-gradient(225deg,#0068c8,#0068c8),linear-gradient(0deg,#0068c8,#0068c8),linear-gradient(90deg,#0068c8,#0068c8),linear-gradient(135deg,transparent 0%,transparent calc(100% - 12px),#0068c8 calc(100% - 12px),#0068c8 calc(100% - 1px),transparent calc(100% - 1px));
}
.btn--blue--medium:hover, .v-button--color-primary:hover {
  background-color: #19aaff;
  background-image: linear-gradient(180deg,#19aaff,#19aaff),linear-gradient(225deg,#19aaff,#19aaff),linear-gradient(0deg,#19aaff,#19aaff),linear-gradient(90deg,#19aaff,#19aaff),linear-gradient(135deg,transparent 0%,transparent calc(100% - 12px),#19aaff calc(100% - 12px),#19aaff calc(100% - 1px),transparent calc(100% - 1px));
}
.btn--white--bordered--medium {
  background-color: transparent; color: #fff;
  background-image: linear-gradient(180deg,#fff,#fff),linear-gradient(225deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),linear-gradient(90deg,#fff,#fff),linear-gradient(135deg,transparent 0%,transparent calc(100% - 12px),#ffffff calc(100% - 12px),#ffffff calc(100% - 1px),transparent calc(100% - 1px));
}
.btn--white--bordered--medium:hover { background-color: rgba(255,255,255,.12); }
.v-button--color-secondary {
  background: transparent; border: 1px solid rgba(255,255,255,.55); color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  font: 400 14px/1 var(--cn-font); letter-spacing: .5px; padding: 12px 20px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.v-button--color-secondary:hover { background: rgba(255,255,255,.08); }
.btn[disabled] { opacity: .55; cursor: default; }

/* section titles */
.component-title-container { text-align: center; margin: 56px 0 30px; }
.component-title-container__content {
  display: inline-block; font-size: 22px; font-weight: 700; letter-spacing: 1.3px;
  line-height: 28px; text-transform: uppercase; color: #fff;
  padding-top: 1rem; padding-bottom: 1rem; position: relative;
}
.component-title-container__content::before {
  content: ''; position: absolute; bottom: 0; width: 80px; height: 3px;
  border-bottom: solid 1px #0068c8; border-top: solid 1px #0068c8;
  left: calc((100% - 80px) / 2);
}
@media screen and (min-width: 768px) {
  .component-title-container__content { font-size: 25px; letter-spacing: 1.5px; line-height: 30px; }
}

/* ---------------------------------------------------------------- hero */
.header-carousel { position: relative; margin-top: 18px; }
.cn-hero { position: relative; max-width: 970px; margin: 0 auto; }
.cn-hero-viewport { overflow: hidden; border-radius: 10px; }
.cn-hero-track { display: flex; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.cn-hero-slide { flex: 0 0 100%; position: relative; min-width: 0; }
.cn-hero-slide img.cn-hero-img { display: block; width: 100%; height: 500px; object-fit: cover; border-radius: 10px; }
.cn-hero-slide::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(180deg, rgba(3,10,22,.05) 40%, rgba(3,10,22,.72) 100%);
}
.cn-hero-content {
  position: absolute; left: 42px; bottom: 42px; right: 120px; z-index: 2;
}
.cn-hero-title {
  font-family: var(--cn-display); font-weight: 700; text-transform: uppercase;
  font-size: 64px; line-height: 1.02; letter-spacing: .01em; color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,.55); margin: 0 0 22px;
}
.cn-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cn-hero-cinema {
  position: relative; display: inline-flex; align-items: center;
  border: 1px solid #fff; background: transparent; min-width: 190px;
  padding: 0; cursor: pointer; color: #fff;
}
.cn-hero-cinema select {
  appearance: none; -webkit-appearance: none; background: transparent; border: 0; color: #fff;
  font: 400 17px/1 var(--cn-font); letter-spacing: .5px; padding: 13px 44px 13px 20px;
  width: 100%; cursor: pointer; outline: none;
}
.cn-hero-cinema select option { color: #06101f; }
.cn-hero-cinema svg { position: absolute; right: 14px; pointer-events: none; }
.cn-hero-slide .btn { font-size: 15px; padding: 14px 24px; }

.cn-hero-bullets { display: flex; justify-content: center; gap: 13px; margin: 22px 0 0; }
.cn-hero-bullet {
  width: 12px; height: 12px; padding: 0; border: 1px solid rgba(255,255,255,.75);
  transform: rotate(45deg); background: transparent; cursor: pointer;
}
.cn-hero-bullet--active { background: #fff; }
.cn-hero-arrows { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 34px; }
@media (min-width: 1400px) {
  .cn-hero-arrows { right: -72px; }
}
.cn-hero-arrow {
  width: 44px; height: 90px; background: rgba(0,0,0,.55); cursor: pointer;
  border: 0; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.cn-hero-arrow:hover { background: rgba(0,0,0,.75); }
.cn-hero-arrow svg { transform: rotate(-45deg); }

/* ---------------------------------------------------------------- film grid */
.filmList-container { max-width: 1240px; margin: 0 auto; }
.v-film-list { position: relative; }
.cn-filmrow {
  display: grid; grid-auto-flow: column; grid-auto-columns: 218px;
  gap: 22px; overflow-x: auto; padding: 6px 4px 22px;
  scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.25) transparent;
}
/* peliculas.php — full responsive grid reusing the same card design */
.cn-filmgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 26px 22px; padding: 6px 4px 22px;
}
@media (max-width: 640px) {
  .cn-filmgrid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 18px 14px; }
}
/* cines.php — per-cinema funnel CTA ("Ver cartelera") */
.cinema-list-element__cta {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 8px;
  color: var(--cn-blue-hi); font: 700 14px/1.2 var(--cn-font); cursor: pointer;
}
.cinema-list-element__cta:hover { color: #fff; }
.cn-filmrow::-webkit-scrollbar { height: 6px; }
.cn-filmrow::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 3px; }
.v-film-list-film { scroll-snap-align: start; }
.v-film-list-film__link { display: block; color: #fff; }
.v-film-thumbnail { position: relative; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.v-film-thumbnail img { display: block; width: 100%; aspect-ratio: 27/38; object-fit: cover; }
.v-film-list-film__link:hover .v-film-thumbnail img { transform: scale(1.03); }
.v-film-thumbnail img { transition: transform .35s ease; }
.v-film-title { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.v-film-title__text { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.4; }
.v-film-trailer-button {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; color: #fff; font: 600 13.5px var(--cn-font); cursor: pointer; padding: 0;
}
.v-film-trailer-button:hover { color: var(--cn-blue-hi); }
.v-film-trailer-button svg { flex: 0 0 auto; }

/* rating badge */
.cn-rating {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 4px; border-radius: 4px;
  font: 800 11px/1 var(--cn-font); color: #fff; flex: 0 0 auto;
}
.cn-rating--tp, .cn-rating--tpi { background: #2e9e4f; }
.cn-rating--7i, .cn-rating--7 { background: #8bc34a; color: #0b1a08; }
.cn-rating--12 { background: #e08a1e; }
.cn-rating--16 { background: #c0392b; }
.cn-rating--18, .cn-rating--x { background: #7b1fa2; }
.cn-rating--pc { background: #5a6b8a; }

/* ---------------------------------------------------------------- promo banner */
.promo-banner {
  display: flex; align-items: stretch; max-width: 1240px; margin: 0 auto 26px;
  border-radius: 10px; overflow: hidden; position: relative; min-height: 220px;
  background-size: cover; background-position: center;
}
.promo-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,#051122b3,#000000b3 27%,#0000 65%); }
.promo-banner--content { position: relative; z-index: 1; padding: 40px 44px; max-width: 620px; }
.promo-banner--content-title { font-size: 27px; font-weight: 800; margin-bottom: 12px; }
.promo-banner--content-text { color: #d7e1f2; font-size: 15px; margin-bottom: 16px; }
.promo-banner--content-text p { margin: 0 0 8px; }
.promo-banner--content-link { color: #fff; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.promo-banner--content-link:hover { color: var(--cn-blue-hi); }

/* ---------------------------------------------------------------- offers */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1240px; margin: 0 auto; }
.offers-comps-promo { background: var(--cn-panel); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
.offers-comps-promo--image img { display: block; width: 100%; aspect-ratio: 370/184; object-fit: cover; }
.offers-comps-promo--content { padding: 20px 22px 24px; }
.offers-comps-promo .title { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.offers-comps-promo .bodyText { color: var(--cn-muted); font-size: 14px; }
.offers-comps-promo .bodyText p { margin: 0 0 6px; }
.offers-comps-promo .expiry-details { color: var(--cn-muted-2); font-size: 12.5px; margin-top: 10px; }
.offers-comps-promo .cta-link { margin-top: 14px; }
.offers-comps-promo .cta-link a { color: var(--cn-blue-hi); font-weight: 700; font-size: 14.5px; display: inline-flex; gap: 6px; align-items: center; }
.cta-button { text-align: center; margin: 34px 0 10px; }

/* ---------------------------------------------------------------- quick nav */
.quick-navigator-container {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  background: #fff; color: #0a1c3a; box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.v-quick-navigator {
  max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 14px;
  padding: 12px 24px;
}
.v-quick-navigator__heading { font-size: 17px; font-weight: 800; color: #0a1c3a; white-space: nowrap; }
.cn-qn-field { position: relative; flex: 1 1 0; min-width: 0; }
.cn-qn-field select {
  appearance: none; -webkit-appearance: none; width: 100%;
  border: 1px solid #c9d3e2; background: #f4f7fb; color: #0a1c3a;
  font: 600 14px/1 var(--cn-font); padding: 13px 34px 13px 14px; cursor: pointer; outline: none;
}
.cn-qn-field select:disabled { opacity: .5; cursor: default; }
.cn-qn-field::after {
  content: ''; position: absolute; right: 14px; top: 50%; margin-top: -3px;
  border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--cn-blue);
  pointer-events: none;
}
.cn-qn-submit {
  flex: 0 0 auto; background: var(--cn-blue); color: #fff; border: 0; cursor: pointer;
  font: 700 15px/1 var(--cn-font); padding: 14px 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.cn-qn-submit:hover { background: #0a78dd; }
.cn-qn-submit:disabled { background: #9db3cc; cursor: default; }
.quick-navigator-cta-mobile { display: none; }
body[data-cn-page="home"] { padding-bottom: 74px; }

/* ---------------------------------------------------------------- film page */
.v-hero-banner { position: relative; overflow: hidden; }
.v-hero-banner__image img { display: block; width: 100%; height: 430px; object-fit: cover; }
.v-hero-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,12,26,.30) 0%, rgba(4,12,26,.55) 55%, rgba(5,17,34,.96) 100%);
}
.v-hero-banner__wrapper {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end;
  max-width: 1240px; margin: 0 auto; padding: 0 24px 34px;
}
.v-film-details-banner__content { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; width: 100%; }
.v-film-status {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #cfe0f7; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25);
  padding: 6px 12px; border-radius: 999px;
}
.v-film-details-banner .v-film-title { margin: 0; flex: 1 1 100%; display: flex; align-items: center; gap: 14px; }
.v-film-details-banner .v-film-title__text {
  font-size: 44px; font-weight: 800; letter-spacing: .01em; color: #fff; margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.v-film-details-banner__action-button { margin-left: auto; }

.v-film-summary { max-width: 1240px; margin: 34px auto 0; }
.v-film-summary__wrapper { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.v-film-summary__thumbnail .v-film-thumbnail { border-radius: 6px; overflow: hidden; margin-top: -110px; position: relative; z-index: 3; box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.v-film-summary__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.v-film-summary__description-list { display: grid; grid-template-columns: 1fr 250px; gap: 8px 40px; margin: 0; }
.v-film-summary__primary > div, .v-film-summary__secondary > div { margin-bottom: 18px; }
.v-description-list-item__title {
  font-size: 13px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--cn-muted-2); margin-bottom: 5px;
}
.v-description-list-item__description { margin: 0; font-size: 15px; color: #e8eefc; }
.v-film-genres__list dd { display: inline-block; }
.cn-genre-chip {
  display: inline-block; border: 1px solid rgba(255,255,255,.4); border-radius: 5px;
  padding: 4px 12px; font-size: 13px; color: #fff; margin: 0 6px 6px 0;
}
.v-film-classification-description dd { color: var(--cn-muted); font-size: 14px; }

/* showtime picker */
.omniFilter-container { max-width: 1240px; margin: 44px auto 0; }
.omniFilter-content {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--cn-panel); border: 1px solid rgba(255,255,255,.08);
  padding: 16px 22px; border-radius: 8px;
}
.omniFilter-content .container-first { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 15px; color: #e8eefc; }
.cn-cine-select { position: relative; display: inline-flex; align-items: center; min-width: 240px; }
.cn-cine-select select {
  appearance: none; -webkit-appearance: none; width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22); color: var(--cn-blue-hi);
  font: 700 15px/1.2 var(--cn-font); padding: 11px 38px 11px 14px; cursor: pointer; outline: none; border-radius: 6px;
}
.cn-cine-select select option { color: #06101f; font-weight: 600; }
.cn-cine-select select optgroup { color: #06101f; }
.cn-cine-select::after {
  content: ''; position: absolute; right: 14px; top: 50%; margin-top: -3px;
  border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--cn-blue-hi);
  pointer-events: none;
}
.omniFilter-content .icon-button {
  background: none; border: 0; color: #e8eefc; font: 600 14px var(--cn-font);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.cn-filter { position: relative; }
.cn-filter-drop {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 40;
  background: var(--cn-panel-2); border: 1px solid var(--cn-line); border-radius: 8px;
  padding: 12px 16px; min-width: 180px; box-shadow: 0 14px 34px rgba(0,0,0,.45);
}
.cn-filter-drop label { display: flex; align-items: center; gap: 9px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.cn-filter-drop input { accent-color: var(--cn-blue); }

.v-date-showtime-picker { max-width: 1240px; margin: 26px auto 0; }
.v-showtime-picker-message { text-align: center; padding: 46px 20px 60px; }
.v-message__title { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.v-message__description { color: var(--cn-muted); font-size: 15px; margin-bottom: 22px; }

.cn-datepills { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px; scrollbar-width: thin; }
.cn-datepill {
  flex: 0 0 auto; min-width: 86px; text-align: center; padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.30); border-radius: 8px; color: #fff;
  display: block;
}
.cn-datepill:hover { border-color: #fff; }
.cn-datepill--active { background: var(--cn-blue); border-color: var(--cn-blue); }
.cn-datepill-top { display: block; font-size: 13.5px; font-weight: 700; text-transform: capitalize; }
.cn-datepill-bottom { display: block; font-size: 12.5px; color: rgba(255,255,255,.75); margin-top: 2px; text-transform: capitalize; }

.cn-times { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.cn-time {
  min-width: 108px; text-align: center; padding: 12px 14px 9px; color: #fff;
  border: 1px solid rgba(255,255,255,.35); border-radius: 8px; display: block;
}
.cn-time:hover { border-color: var(--cn-blue-hi); color: var(--cn-blue-hi); }
.cn-time-h { display: block; font-size: 17px; font-weight: 800; }
.cn-time-attrs { display: block; margin-top: 4px; min-height: 15px; }
.cn-attr {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .06em;
  color: var(--cn-blue-hi); border: 1px solid rgba(25,170,255,.5); border-radius: 3px;
  padding: 1px 5px; margin: 0 2px; text-transform: uppercase;
}
.cn-promo-hl { outline: 2px solid var(--cn-blue-hi); outline-offset: 8px; border-radius: 4px; }
.cn-picker-note { color: var(--cn-muted); font-size: 13.5px; margin-top: 18px; }

/* film-page promo item */
.film-page-promo-list { max-width: 1240px; margin: 60px auto 0; }
.offers-competition-landing__offer-item-section {
  display: grid; grid-template-columns: 370px 1fr auto; gap: 30px; align-items: center;
  border-top: 1px solid rgba(255,255,255,.10); border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 30px 0;
}
.offer-item-img-block img { display: block; width: 100%; aspect-ratio: 370/184; object-fit: cover; border-radius: 6px; }
.offer-title { font-size: 23px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 12px; }
.offer-item-text-block p { color: var(--cn-muted); font-size: 14.5px; margin: 0 0 8px; }
.offer-expiry { color: var(--cn-muted-2); font-size: 13px; }
.offer-item-cta-block .btn { white-space: nowrap; }

/* ---------------------------------------------------------------- cines page */
.hero-image img { display: block; width: 100%; height: 380px; object-fit: cover; }
.cinemas-filters { max-width: 1240px; margin: 0 auto 30px; }
.cinemas-filters-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cinemas-filters .first-container { display: flex; align-items: center; gap: 22px; flex: 1 1 480px; min-width: 0; flex-wrap: wrap; }
.cinemas-filters .v-input-wrapper { flex: 1 1 220px; min-width: 180px; }
.cinemas-filters .v-input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.4);
  color: #fff; font: 400 15px var(--cn-font); padding: 10px 2px; outline: none;
}
.cinemas-filters .v-input:focus { border-bottom-color: var(--cn-blue-hi); }
.cinemas-filters .v-input::placeholder { color: var(--cn-muted-2); }
.cinemas-filters .first-container a { color: var(--cn-blue-hi); font-size: 14.5px; font-weight: 600; white-space: nowrap; }
.cinemas-filters .second-container { display: flex; align-items: center; gap: 12px; }
.cinema-list {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.cinema-list-element { display: block; color: #fff; }
.cinema-list-element__img { display: block; width: 100%; aspect-ratio: 1200/630; object-fit: cover; border-radius: 6px; }
.cinema-list-element:hover .cinema-list-element__img { filter: brightness(1.12); }
.cinema-list-element__name { font-size: 18px; font-weight: 800; margin-top: 12px; }
.cinema-list-element__desc { color: var(--cn-muted); font-size: 13.5px; margin-top: 4px; }

/* ---------------------------------------------------------------- entradas (checkout) */
.cn-steps-wrap { max-width: 860px; margin: 40px auto 0; }
.cn-steps { list-style: none; margin: 0 0 30px; padding: 0; display: flex; gap: 8px; counter-reset: step; }
.cn-steps li {
  flex: 1; text-align: center; font-size: 13.5px; color: var(--cn-muted-2);
  padding-bottom: 12px; border-bottom: 2px solid rgba(255,255,255,.15); font-weight: 600;
}
.cn-steps li.on { color: #fff; border-bottom-color: var(--cn-blue-hi); font-weight: 800; }
.cn-steps li.done { color: var(--cn-blue-hi); border-bottom-color: var(--cn-blue-hi); }

.cn-checkout { max-width: 860px; margin: 0 auto 80px; }
.cn-card {
  background: var(--cn-panel); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; padding: 26px 28px;
}
.cn-recap { display: grid; grid-template-columns: 120px 1fr; gap: 22px; }
.cn-recap img { display: block; width: 120px; border-radius: 6px; }
.cn-recap-film { font-size: 21px; font-weight: 800; margin: 2px 0 6px; }
.cn-recap-line { color: var(--cn-muted); font-size: 14px; margin-top: 4px; }
.cn-recap-line strong { color: #e8eefc; font-weight: 700; }
.cn-recap-attrs { margin-top: 8px; }

.cn-qty { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.cn-qty-label { font-size: 15px; font-weight: 700; }
.cn-qty-stepper { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; overflow: hidden; }
.cn-qty-stepper button {
  width: 42px; height: 42px; background: rgba(255,255,255,.05); border: 0; color: #fff;
  font-size: 20px; cursor: pointer;
}
.cn-qty-stepper button:hover { background: rgba(255,255,255,.12); }
.cn-qty-stepper output { width: 52px; text-align: center; font-size: 17px; font-weight: 800; }

.cn-price-rows { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.10); padding-top: 16px; }
.cn-price-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; color: var(--cn-muted); padding: 5px 0; }
.cn-price-row strong { color: #e8eefc; }
.cn-price-row--total { font-size: 18px; font-weight: 800; color: #fff; border-top: 1px solid rgba(255,255,255,.10); margin-top: 10px; padding-top: 14px; }
.cn-price-row--total strong { color: #fff; }
.cn-actions { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.cn-actions .btn { width: 100%; padding: 17px 26px; font-size: 16px; }
.cn-backlink { background: none; border: 0; color: var(--cn-muted); font: 600 14px var(--cn-font); cursor: pointer; text-align: center; }
.cn-backlink:hover { color: #fff; }

/* account step */
.cn-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.cn-tab {
  flex: 1; background: none; border: 0; color: var(--cn-muted); cursor: pointer;
  font: 700 15px var(--cn-font); padding: 14px 8px; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.cn-tab.on { color: #fff; border-bottom-color: var(--cn-blue-hi); }
.cn-account-bullets { list-style: none; margin: 0 0 24px; padding: 0; }
.cn-account-bullets li { padding: 7px 0; font-size: 14.5px; color: #dbe5f6; }
.cn-field { margin-bottom: 16px; }
.cn-field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cn-muted-2); margin-bottom: 7px; }
.cn-field input {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; color: #fff; font: 600 15px var(--cn-font); padding: 13px 14px; outline: none;
}
.cn-field input:focus { border-color: var(--cn-blue-hi); }
.cn-field .err { display: none; color: var(--cn-danger); font-size: 12.5px; margin-top: 6px; }
.cn-field.bad input { border-color: var(--cn-danger); }
.cn-field.bad .err { display: block; }
.cn-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* pay step */
.cn-verify-note {
  background: rgba(0, 104, 200, .10); border: 1px solid rgba(25, 170, 255, .35);
  border-radius: 10px; padding: 16px 18px; font-size: 14.5px; color: #dbe5f6; margin-bottom: 22px;
}
.cn-verify-note strong { color: #fff; }
.cn-cardlogos { display: flex; gap: 10px; margin: 4px 0 18px; }
.cn-cardlogos svg { width: 44px; height: 28px; }
.cn-secure { color: var(--cn-muted-2); font-size: 12.5px; text-align: center; margin-top: 14px; }

/* empty / error state */
.cn-empty { max-width: 620px; margin: 70px auto 90px; text-align: center; }
.cn-empty h1 { font-size: 24px; margin-bottom: 12px; }
.cn-empty p { color: var(--cn-muted); font-size: 15px; margin-bottom: 24px; }

/* ---------------------------------------------------------------- legal pages */
.cn-legal { max-width: 860px; margin: 0 auto; }
.cn-legal h1 { font-size: 30px; margin: 40px 0 24px; }
.cn-legal h2 { font-size: 19px; margin: 28px 0 10px; }
.cn-legal p, .cn-legal li { color: #cfdaee; font-size: 14.5px; line-height: 1.65; }
.cn-legal ul { padding-left: 22px; }
.cn-legal a { color: var(--cn-blue-hi); }

/* ---------------------------------------------------------------- footer */
footer { margin-top: 90px; background: #030d1c; border-top: 1px solid rgba(255,255,255,.06); }
.footer--link_container {
  max-width: 1240px; margin: 0 auto; padding-top: 44px; padding-bottom: 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.footer_box ul { list-style: none; margin: 0; padding: 0; }
.footer_box li { margin-bottom: 11px; }
.footer_box a { color: #b8c6de; font-size: 13.5px; }
.footer_box a:hover { color: #fff; }
.footer-logo-box { text-align: center; padding: 6px 0 26px; }
.footer-logo-box img { height: 33px; width: auto; }
.footer--copyrights__wrapper { border-top: 1px solid rgba(255,255,255,.07); }
.footer--copyrights__container {
  max-width: 1240px; margin: 0 auto; padding-top: 20px; padding-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.copyrights--social_box { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; }
.copyrights--social_box a { display: flex; opacity: .85; }
.copyrights--social_box a:hover { opacity: 1; }
.copyrights--box.text-box { color: #8fa0bb; font-size: 12.5px; }
.footer-legal-line { text-align: center; color: #8fa0bb; font-size: 12px; padding: 0 20px 26px; }
.footer-legal-line small { display: block; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1120px) {
  .cn-hero-arrows { right: 12px; }
  .header { gap: 18px; }
  .header-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .header-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #071527; flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line, rgba(255,255,255,.1)); padding: 8px 0;
  }
  .header-nav.is-open { display: flex; }
  .header-nav-link-container a { display: block; padding: 14px 24px; font-size: 16px; }
  .header-sign { gap: 14px; }
  .header-sign a { font-size: 13px; }
  .header-burger { display: block; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .cinema-list { grid-template-columns: 1fr 1fr; }
  .v-film-summary__wrapper { grid-template-columns: 160px 1fr; gap: 24px; }
  .v-film-summary__description-list { grid-template-columns: 1fr; }
  .offers-competition-landing__offer-item-section { grid-template-columns: 1fr; gap: 18px; }
  .offer-item-cta-block { text-align: left; }
}
@media (max-width: 640px) {
  .container-lg-padding { padding-left: 16px; padding-right: 16px; }
  .header { height: 56px; gap: 10px; }
  .header .logo img { height: 22px; }
  .cn-searchpanel { top: 56px; }
  .site-picker { display: block; }
  .header-sign { display: none; }
  .cn-nav-sign { display: block; }
  .header { gap: 8px; }
  .header .logo img { height: 21px; }
  .header-sign { margin-left: auto; }
  .header-sign a span { font-size: 12.5px; }

  .cn-hero-slide img.cn-hero-img { height: 250px; }
  .cn-hero-content { left: 18px; right: 18px; bottom: 22px; }
  .cn-hero-title { font-size: 34px; margin-bottom: 16px; }
  .cn-hero-actions { gap: 10px; }
  .cn-hero-cinema { min-width: 0; flex: 1 1 150px; }
  .cn-hero-cinema select { font-size: 14px; padding: 12px 34px 12px 12px; }
  .cn-hero-slide .btn { font-size: 13px; padding: 13px 16px; flex: 1 1 150px; }
  .cn-hero-arrows { display: none; }
  .cn-hero-bullets { gap: 10px; margin-top: 16px; }
  .cn-hero-bullet { width: 8px; height: 8px; }

  .component-title-container { margin: 40px 0 22px; }
  .component-title-container__content { font-size: 22px; }
  .cn-filmrow { grid-auto-columns: 148px; gap: 14px; }
  .v-film-title__text { font-size: 13px; }

  .promo-banner { min-height: 0; }
  .promo-banner--content { padding: 26px 22px; }
  .promo-banner--content-title { font-size: 20px; }
  .offers-grid { grid-template-columns: 1fr; }

  .v-quick-navigator { display: none; }
  .quick-navigator-cta-mobile { display: block; padding: 10px 14px; }
  .quick-navigator-cta-mobile .v-button--color-primary {
    display: block; width: 100%; text-align: center; padding: 15px; font: 700 16px var(--cn-font);
    border: 0; clip-path: none; border-radius: 6px;
  }
  body[data-cn-page="home"] { padding-bottom: 66px; }

  .v-hero-banner__image img { height: 300px; }
  .v-film-details-banner .v-film-title__text { font-size: 30px; }
  .v-hero-banner__wrapper { padding-bottom: 78px; }
  /* the hero CTA would collide with the overlapping poster on small screens;
     the poster block below carries the same action */
  .v-film-details-banner__action-button { display: none; }
  .v-film-summary__wrapper { grid-template-columns: 1fr; gap: 18px; }
  .v-film-summary__thumbnail { max-width: 170px; }
  .v-film-summary__thumbnail .v-film-thumbnail { margin-top: -56px; }
  .cn-cine-select { width: 100%; }
  .omniFilter-content { flex-direction: column; align-items: stretch; }
  .omniFilter-content .icon-button { display: none; }

  .cinema-list { grid-template-columns: 1fr; }
  .cinemas-filters-bar { flex-direction: column; align-items: stretch; }
  .cinemas-filters .second-container { justify-content: flex-start; }

  .cn-recap { grid-template-columns: 84px 1fr; gap: 16px; }
  .cn-recap img { width: 84px; }
  .cn-recap-film { font-size: 18px; }
  .cn-card { padding: 20px 18px; }
  .cn-steps li { font-size: 11.5px; }
  .footer--link_container { grid-template-columns: 1fr 1fr; }
}


/* =========================================================================
   2026-09-08 operator review round: favorites panel, pixel-same auth modals,
   white offer cards, film-row arrows, footer rework, mobile quick-nav modal
   ========================================================================= */

/* ---------------------------------------------------------- footer rework */
footer { background: #050f20; border-top: 1px solid rgba(255,255,255,.05); }
.footer--link_container { padding-top: 40px; padding-bottom: 34px; }
.footer_box a { color: #fff; font-size: 14px; font-weight: 600; line-height: 1.6; }
.footer_box li { margin-bottom: 12px; }
.footer_box a:hover { color: var(--cn-blue-hi); }
.footer--copyrights__container { padding-top: 22px; padding-bottom: 22px; }
.copyrights--box.text-box { color: #fff; font-size: 13px; font-weight: 600; }
.copyrights--social_box { gap: 22px; }
.footer-legal-line { padding-top: 4px; }
.cn-gototop {
  position: fixed; right: 18px; bottom: 86px; z-index: 850;
  width: 46px; height: 46px; border: 0; cursor: pointer;
  background: var(--cn-blue); display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.cn-gototop:hover { background: #0a78dd; }
body[data-cn-page="home"] .cn-gototop { bottom: 86px; }

/* ------------------------------------------------- film row + arrows + overlays */
.v-film-list { position: relative; }
.cn-filmrow-btn {
  position: absolute; top: 38%; z-index: 20;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(7, 20, 40, .88); border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
}
.cn-filmrow-btn:hover { border-color: #fff; background: rgba(10, 30, 60, .95); }
.cn-filmrow-btn--prev { left: -8px; }
.cn-filmrow-btn--next { right: -8px; }
.cn-filmrow-btn[hidden] { display: none; }
.v-film-thumbnail { position: relative; }
.v-film-play {
  position: absolute; top: 10px; left: 10px; z-index: 5;
  width: 40px; height: 40px; border: 0; cursor: pointer;
  background: var(--cn-blue); display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.v-film-play:hover { background: #0a78dd; }
.v-film-bookmark {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
}

/* ---------------------------------------------------------- white offer cards */
.offers-comps-promo { background: #fff; border: 0; border-radius: 0; }
.offers-comps-promo .title { color: #12203a; }
.offers-comps-promo .bodyText { color: #5a6a85; }
.offers-comps-promo .expiry-details { color: #8595ad; }
.offers-comps-promo .cta-link a { color: var(--cn-blue); }
.offers-comps-promo .cta-link a:hover { color: #004d8e; }

/* ---------------------------------------------------------- favorites panel */
.cn-fav-badge {
  position: absolute; top: -4px; right: -6px; min-width: 16px; height: 16px;
  background: var(--cn-blue-hi); color: #04101f; border-radius: 999px;
  font: 800 10.5px/16px var(--cn-font); text-align: center; padding: 0 4px;
}
.site-picker__button { position: relative; }
.cn-fav {
  position: fixed; inset: 0; z-index: 960; background: rgba(2, 8, 18, .66);
}
.cn-fav-card {
  position: absolute; top: 70px; right: max(24px, calc((100vw - 1240px) / 2));
  width: 420px; max-width: calc(100vw - 32px); max-height: min(76vh, 640px);
  background: #0d1b33; border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55); display: flex; flex-direction: column; overflow: hidden;
}
.cn-fav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 12px;
}
.cn-fav-head h2 { font-size: 18px; font-weight: 800; }
.cn-fav-close { background: none; border: 0; cursor: pointer; padding: 4px; display: flex; }
.cn-fav-search { padding: 0 20px 12px; }
.cn-fav-search input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.35);
  color: #fff; font: 400 14.5px var(--cn-font); padding: 9px 2px; outline: none;
}
.cn-fav-search input:focus { border-bottom-color: var(--cn-blue-hi); }
.cn-fav-search input::placeholder { color: var(--cn-muted-2); }
.cn-fav-list { flex: 1 1 auto; overflow-y: auto; padding: 4px 12px 12px; }
.cn-fav-city {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cn-muted-2); padding: 14px 8px 6px;
}
.cn-fav-item {
  display: flex; align-items: center; gap: 12px; padding: 9px 8px; cursor: pointer;
  border-radius: 6px; font-size: 14.5px;
}
.cn-fav-item:hover { background: rgba(255,255,255,.05); }
.cn-fav-item input { position: absolute; opacity: 0; pointer-events: none; }
.cn-fav-item-name { flex: 1 1 auto; min-width: 0; }
.cn-fav-item-city { color: var(--cn-muted-2); font-size: 12.5px; flex: 0 0 auto; }
.cn-fav-item .cn-diamond-box { flex: 0 0 auto; }
.cn-fav-item input:checked + .cn-diamond-box { background: var(--cn-blue-hi); border-color: var(--cn-blue-hi); }
.cn-fav-item input:checked + .cn-diamond-box::after {
  content: ''; position: absolute; inset: 3px; background: #04101f;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.cn-fav-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.10);
}
.cn-fav-count { color: var(--cn-muted); font-size: 13px; }
.cn-fav-foot .cn-auth-submit { width: auto; padding: 13px 34px; }

/* diamond checkbox (shared with auth modals) */
.cn-diamond { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.cn-diamond input { position: absolute; opacity: 0; pointer-events: none; }
.cn-diamond-box {
  position: relative; width: 15px; height: 15px; transform: rotate(45deg);
  border: 1.6px solid rgba(255,255,255,.75); flex: 0 0 auto;
}
.cn-diamond input:checked + .cn-diamond-box { background: var(--cn-blue-hi); border-color: var(--cn-blue-hi); }
.cn-diamond input:checked + .cn-diamond-box::after {
  content: ''; position: absolute; inset: 2.5px; background: #04101f;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.cn-diamond-label { font-size: 15px; font-weight: 700; color: #fff; }

/* ---------------------------------------------------------- auth modals */
.cn-auth {
  position: fixed; inset: 0; z-index: 970; background: rgba(2, 8, 18, .72);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto;
}
.cn-auth-card {
  position: relative; width: 690px; max-width: 100%;
  background: #0b1a33; border-radius: 4px;
  padding: 56px 90px 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.cn-auth-close {
  position: absolute; top: 18px; right: 20px; background: none; border: 0;
  cursor: pointer; padding: 6px; display: flex;
}
.cn-auth-card .component-title-container { margin: 0 0 34px; }
.cn-auth-card .component-title-container__content { font-size: 22px; letter-spacing: .05em; }
.cn-auth-card .component-title-container__content::after { background: var(--cn-blue-hi); width: 56px; height: 2px; }

.cn-ufield { margin-bottom: 26px; }
.cn-ufield label {
  display: block; font-size: 13.5px; font-weight: 400; color: #fff; margin-bottom: 2px;
}
.cn-ufield input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.45);
  color: #fff; font: 400 15.5px var(--cn-font); padding: 9px 2px; outline: none; border-radius: 0;
}
.cn-ufield input:focus { border-bottom-color: var(--cn-blue-hi); }
.cn-ufield .err { display: none; color: var(--cn-danger); font-size: 12.5px; margin-top: 7px; }
.cn-ufield.bad input { border-bottom-color: var(--cn-danger); }
.cn-ufield.bad .err { display: block; }
.cn-upass { position: relative; }
.cn-upass input { padding-right: 34px; }
.cn-eye {
  position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; cursor: pointer; padding: 4px; display: flex;
}
.cn-auth-actions { margin-top: 34px; }
.cn-auth-submit {
  display: block; width: 100%; border: 0; cursor: pointer; text-align: center;
  background: linear-gradient(180deg, #0d7ee0 0%, #0068c8 100%);
  color: #fff; font: 700 16.5px/1 var(--cn-font); letter-spacing: .02em; padding: 19px 26px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.cn-auth-submit:hover { background: linear-gradient(180deg, #1a8bf0 0%, #0a73d4 100%); }
.cn-auth-forgot { text-align: center; margin-top: 22px; }
.cn-auth-forgot a { color: var(--cn-blue-hi); font-size: 14.5px; font-weight: 600; }
.cn-auth-note {
  margin: 30px 0 0; font-size: 15px; line-height: 1.55; color: #fff; font-weight: 400;
}
.cn-auth-note .cn-y { color: #f1c40f; font-weight: 800; }

/* step-2 (booking account wall) — same navy-modal polish, in-page layout */
#cn-step-2 .cn-card, .cn-card--authish {
  background: #0b1a33; border-color: rgba(255,255,255,.10);
}
#cn-step-2 .cn-field input {
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.45);
  border-radius: 0; padding-left: 2px; padding-right: 2px;
}
#cn-step-2 .cn-field input:focus { border-bottom-color: var(--cn-blue-hi); }
#cn-step-2 .cn-field.bad input { border-bottom-color: var(--cn-danger); }

/* ---------------------------------------------------------- mobile quick-nav modal */
.cn-qnmodal {
  position: fixed; inset: 0; z-index: 940; background: var(--cn-bg-2);
  display: flex; flex-direction: column; overflow-y: auto;
}
.cn-qnmodal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 8px;
}
.cn-qnmodal-title { font-size: 21px; font-weight: 800; }
.cn-qnmodal-back {
  background: none; border: 0; color: var(--cn-blue-hi); font: 700 15px var(--cn-font);
  cursor: pointer; padding: 8px 0;
}
.cn-qnmodal-body { padding: 14px 20px 30px; display: flex; flex-direction: column; gap: 16px; }
.cn-qnmodal .v-quick-navigator {
  display: flex !important; flex-direction: column; align-items: stretch; gap: 14px;
  padding: 0; max-width: none;
}
.cn-qnmodal .v-quick-navigator__heading { display: none; }
.cn-qnmodal .cn-qn-field select {
  background: #fff; border-radius: 4px; font-size: 16px; padding: 16px 38px 16px 16px;
}
.cn-qnmodal .cn-qn-submit { padding: 17px; font-size: 16px; }

/* ---------------------------------------------------------- responsive */
@media (max-width: 760px) {
  .cn-auth-card { padding: 44px 26px 32px; }
  .cn-auth { padding: 0; align-items: stretch; }
  .cn-auth-card { width: 100%; border-radius: 0; min-height: 100%; }
  .cn-fav-card {
    top: 0; right: 0; left: 0; width: 100%; max-width: 100%; max-height: 100%;
    height: 100%; border-radius: 0; border: 0;
  }
  .cn-filmrow-btn { width: 38px; height: 38px; }
  .cn-filmrow-btn--prev { left: 2px; }
  .cn-filmrow-btn--next { right: 2px; }
  .footer--copyrights__container { flex-direction: column-reverse; gap: 14px; justify-content: center; text-align: center; }
  .copyrights--social_box { justify-content: center; }
  .cn-gototop { bottom: 76px; width: 40px; height: 40px; }
}
