/* =========================================================================
   cinesa_es — reconstructed Cinesa shell (self-contained)
   Fonts: Nunito Sans (body/UI) + Oswald (hero display), served locally.
   ========================================================================= */

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

: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: 'Nunito Sans', NunitoSans, Helvetica, Arial, sans-serif;
  --cn-display: 'Oswald', 'Nunito Sans', 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; align-items: center; }
.header .logo img { display: block; height: 26px; width: auto; }
.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; }
.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; }
.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 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 700 15px/1 var(--cn-font); letter-spacing: .02em; cursor: pointer;
  padding: 14px 26px; border: 1px solid transparent; color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.btn--blue--medium, .v-button--color-primary {
  background: var(--cn-blue); border-color: var(--cn-blue); color: #fff;
}
.btn--blue--medium:hover, .v-button--color-primary:hover { background: #0a78dd; }
.btn--white--bordered--medium {
  background: transparent; border: 1px solid #fff; color: #fff;
}
.btn--white--bordered--medium:hover { background: rgba(255,255,255,.10); }
.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: 700 14px/1 var(--cn-font); 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: 30px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #fff; padding-bottom: 12px; position: relative;
}
.component-title-container__content::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 72px; height: 3px; background: rgba(255,255,255,.35); border-radius: 2px;
}

/* ---------------------------------------------------------------- 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: 480px; 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: 10px; height: 10px; 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: 46px; height: 46px; background: transparent; cursor: pointer;
  border: 1px solid rgba(255,255,255,.6); transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
}
.cn-hero-arrow:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.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;
}
.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: 6px; overflow: hidden; }
.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: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.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, rgba(4,12,26,.82) 0%, rgba(4,12,26,.35) 60%, rgba(4,12,26,.15) 100%); }
.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-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: none; }
  .header-sign { margin-left: auto; }
  .header-sign a span { font-size: 12.5px; }

  .cn-hero-slide img.cn-hero-img { height: 300px; }
  .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--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; }
}
