
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #1c1c1c;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}

/* ─── 2. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --y: #E8FF48;
  /* district yellow-green  */
  --rd: #e23744;
  /* zomato red             */
  --k: #1c1c1c;
  /* near-black ink         */
  --mid: #6b6b6b;
  /* mid grey               */
  --soft: #9d9d9d;
  /* soft grey              */
  --bd: #ebebeb;
  /* border                 */
  --bg: #f5f5f5;
  /* page background        */
  --wh: #ffffff;
  /* white surface          */
  --gn: #16a34a;
  /* green – free/success   */
  --or: #e65100;
  /* orange – date text     */

  /* layout */
  --nav: 64px;
  --max: 1440px;
  --px: 40px;
  --r: 10px;

  /* animation */
  --ease: cubic-bezier(.25, .8, .25, 1);

  /* shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, .07);
  --shadow-hover: 0 10px 36px rgba(0, 0, 0, .13);
}

/* ─── 3. SHARED NAVBAR ─────────────────────────────────────── */
/* home.html uses .nav  |  event-detail.html uses .navbar        */
.nav,
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav);
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow .2s;
}

.nav.scrolled,
.navbar.scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

/* home nav inner */
.nav-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* event-detail nav inner */
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Logo — home (.logo / .logo-img / .logo-main / .logo-sub) */
.logo {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--k);
}

.logo-sub {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft);
}

/* ── Logo — event-detail (.nav-logo / .nav-logo-main / .nav-logo-sub) */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}

.nav-logo-main {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--k);
}

.nav-logo-sub {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft);
}

/* ── Nav divider */
.ndv,
.nav-div {
  width: 1px;
  height: 30px;
  background: var(--bd);
  flex-shrink: 0;
}

/* ── City selector — home (.city) */
.city {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
  padding: 3px 0;
}

.city-row {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--k);
  line-height: 1.2;
}

.city-row i.pin {
  color: var(--rd);
  font-size: .68rem;
}

.city-row i.chev {
  color: var(--soft);
  font-size: .58rem;
}

.city-state {
  font-size: .6rem;
  color: var(--soft);
  padding-left: 14px;
  margin-top: 1px;
}

/* ── City selector — event-detail (.nav-loc) */
.nav-loc {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-loc-city {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--k);
}

.nav-loc-city i {
  color: var(--rd);
  font-size: .72rem;
}

.nav-loc-city .chev {
  color: var(--soft);
  font-size: .58rem;
}

.nav-loc-state {
  font-size: .6rem;
  color: var(--soft);
  padding-left: 15px;
  margin-top: 1px;
}

/* ── Tabs — home (.tabs / .tab) */
.tabs {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1px;
}

.tab {
  padding: 5px 13px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
  transition: all .18s;
  cursor: pointer;
}

.tab:hover {
  background: #f0f0f0;
  color: var(--k);
}

.tab.on {
  background: var(--y);
  color: var(--k);
  font-weight: 700;
}

.tab.play {
  background: var(--rd);
  color: #fff;
  font-weight: 700;
}

.tab.play:hover {
  background: #c62030;
  color: #fff;
}

/* ── Tabs — event-detail (.nav-tabs / .nav-tab) */
.nav-tabs {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-tab {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
  transition: all .18s;
  cursor: pointer;
}

.nav-tab:hover {
  background: #f0f0f0;
  color: var(--k);
}

.nav-tab.active {
  background: var(--y);
  color: var(--k);
  font-weight: 700;
}

.nav-tab.play {
  background: var(--rd);
  color: #fff;
  font-weight: 700;
}

.nav-tab.play:hover {
  background: #c62030;
}

/* ── Nav right (shared) */
.nav-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--k);
  cursor: pointer;
  transition: background .18s;
}

.nav-ic:hover {
  background: #f2f2f2;
}

.nav-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ececec;
  border: 1.5px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .76rem;
  font-weight: 800;
  color: var(--mid);
  cursor: pointer;
}

/* ─── 4. SEARCH OVERLAY (home page) ────────────────────────── */
.so {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}

.so.open {
  opacity: 1;
  pointer-events: all;
}

.sb {
  background: var(--wh);
  border-radius: 16px;
  padding: 20px 24px;
  width: 520px;
  max-width: 92vw;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
  transform: translateY(-12px);
  transition: transform .28s var(--ease);
}

.so.open .sb {
  transform: translateY(0);
}

.sr {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--y);
  padding-bottom: 11px;
  margin-bottom: 13px;
}

.si {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--k);
  border: none;
  outline: none;
  background: none;
}

.si::placeholder {
  color: #ccc;
}

.stags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stag {
  padding: 4px 11px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all .15s;
}

.stag:hover {
  background: var(--y);
  color: var(--k);
}

/* ─── 5. HOME PAGE LAYOUT ───────────────────────────────────── */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--px) 60px;
}

/* Section header */
.sh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sh-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--k);
  letter-spacing: -.1px;
}

.sh-all {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: color .15s;
}

.sh-all:hover {
  color: var(--k);
}

.sh-all i {
  font-size: .62rem;
  transition: transform .15s;
}

.sh-all:hover i {
  transform: translateX(3px);
}

/* Section wrapper */
.sec {
  margin-bottom: 32px;
}

/* ─── 6. SWIPER OVERRIDES ───────────────────────────────────── */
.sw-wrap {
  padding: 3px 2px 14px !important;
  margin: 0 -2px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
  background: var(--wh) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12) !important;
  border: 1px solid var(--bd) !important;
  top: 38% !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 9px !important;
  font-weight: 900 !important;
  color: var(--k) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--k) !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #fff !important;
}

.swiper-button-disabled {
  opacity: .25 !important;
  pointer-events: none !important;
}

/* ─── 7. CARD TYPES (home page) ─────────────────────────────── */

/* Movie card (portrait) */
.sw-movies .swiper-slide {
  width: 148px;
}

.mc {
  background: var(--wh);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--bd);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.mc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.mc-img {
  height: 200px;
  overflow: hidden;
  background: #e8e8e8;
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.mc:hover .mc-img img {
  transform: scale(1.04);
}

.mc-body {
  padding: 8px 10px 10px;
}

.mc-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--k);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-meta {
  font-size: .65rem;
  color: var(--soft);
}

/* Event card (landscape) */
.sw-events .swiper-slide {
  width: 290px;
}

.ec {
  background: var(--wh);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--bd);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.ec:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.ec-img {
  height: 172px;
  overflow: hidden;
  background: #e8e8e8;
  position: relative;
}

.ec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.ec:hover .ec-img img {
  transform: scale(1.05);
}

.ec-offer {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 600;
  color: #fff;
}

.ec-offer i {
  color: var(--y);
  font-size: .62rem;
}

.ec-body {
  padding: 10px 11px 12px;
}

.ec-date {
  font-size: .64rem;
  font-weight: 500;
  color: var(--or);
  margin-bottom: 4px;
}

.ec-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--k);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ec-venue {
  font-size: .66rem;
  color: var(--soft);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ec-price {
  font-size: .68rem;
  font-weight: 600;
  color: var(--mid);
}

.ec-price.free {
  color: var(--gn);
}

/* Square card (activities / nightlife / comedy / music / food) */
.sw-sq .swiper-slide {
  width: 290px;
}

.sqc {
  background: var(--wh);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--bd);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.sqc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.sqc-img {
  height: 190px;
  overflow: hidden;
  background: #e8e8e8;
  position: relative;
}

.sqc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.sqc:hover .sqc-img img {
  transform: scale(1.05);
}

.sqc-offer {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 600;
  color: #fff;
}

.sqc-offer i {
  color: var(--y);
  font-size: .62rem;
}

.sqc-body {
  padding: 10px 11px 12px;
}

.sqc-date {
  font-size: .64rem;
  font-weight: 500;
  color: var(--or);
  margin-bottom: 4px;
}

.sqc-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--k);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sqc-venue {
  font-size: .66rem;
  color: var(--soft);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sqc-price {
  font-size: .68rem;
  font-weight: 600;
  color: var(--mid);
}

.sqc-price.free {
  color: var(--gn);
}

/* Artist card */
.sw-art .swiper-slide {
  width: 110px;
}

.ac {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.ac-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bd);
  background: #ececec;
  transition: all .22s var(--ease);
  flex-shrink: 0;
}

.ac-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s var(--ease);
}

.ac:hover .ac-ring {
  border-color: var(--y);
  box-shadow: 0 0 0 3px rgba(232, 255, 72, .5);
  transform: translateY(-3px);
}

.ac:hover .ac-ring img {
  transform: scale(1.06);
}

.ac-name {
  font-size: .68rem;
  font-weight: 600;
  color: var(--k);
  text-align: center;
  line-height: 1.3;
  max-width: 100px;
}

/* ─── 8. DISTRICT PASS BANNER ───────────────────────────────── */
.pass-banner {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(115deg, #1a1a3e 0%, #0f1b4d 40%, #1e2a6b 70%, #2a1155 100%);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  position: relative;
}

.pass-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none;
}

.pass-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.pass-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pass-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pass-logo span {
  background: var(--y);
  color: #111;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -1px;
  padding: 2px 10px;
  border-radius: 5px;
}

.pass-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.pass-perk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
}

.pass-perk i {
  font-size: .82rem;
  flex-shrink: 0;
}

.pass-perk i.ticket-ic {
  color: #a78bfa;
}

.pass-perk i.food-ic {
  color: #6ee7b7;
}

.pass-perk i.percent-ic {
  color: var(--y);
}

.pass-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pass-qr {
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pass-qr svg {
  width: 72px;
  height: 72px;
}

.pass-qr-label {
  font-size: .55rem;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ─── 9. PROMO CARDS ────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.promo-card {
  border-radius: 12px;
  overflow: hidden;
  height: 110px;
  position: relative;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
}

.promo-card-tag {
  font-size: .56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--y);
  margin-bottom: 4px;
}

.promo-card-title {
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.promo-card-sub {
  font-size: .64rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 3px;
}

/* ─── 10. EVENT DETAIL — BREADCRUMB ─────────────────────────── */
.breadcrumb {
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  padding: 10px 0;
}

.breadcrumb-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: var(--soft);
}

.breadcrumb-in i {
  font-size: .62rem;
}

.breadcrumb-in a {
  color: var(--soft);
  transition: color .15s;
}

.breadcrumb-in a:hover {
  color: var(--k);
}

.breadcrumb-in span {
  color: var(--k);
  font-weight: 600;
}

/* ─── 11. EVENT DETAIL — HERO BANNER ────────────────────────── */
.event-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #1a1a1a;
}

.event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%);
}

.event-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--y);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--k);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.event-hero-content {
  position: absolute;
  bottom: 28px;
  left: var(--px);
  right: var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.event-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(232, 255, 72, .15);
  border: 1px solid rgba(232, 255, 72, .35);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .64rem;
  font-weight: 700;
  color: var(--y);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.event-hero-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}

.event-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.event-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .85);
}

.event-hero-meta-item i {
  font-size: .8rem;
  color: var(--y);
}

/* ─── 12. EVENT DETAIL — PAGE LAYOUT ────────────────────────── */
.page-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--px) 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

/* ─── 13. EVENT DETAIL — LEFT COLUMN ────────────────────────── */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card shell */
.card {
  background: var(--wh);
  border-radius: 14px;
  border: 1px solid var(--bd);
  overflow: hidden;
}

.card-head {
  padding: 18px 20px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.card-head-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  color: var(--k);
  flex-shrink: 0;
}

.card-head-title {
  font-size: .96rem;
  font-weight: 800;
  color: var(--k);
}

.card-body {
  padding: 16px 20px 20px;
}

/* Ticket categories */
.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--bd);
  gap: 12px;
}

.ticket-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--k);
  margin-bottom: 3px;
}

.ticket-desc {
  font-size: .74rem;
  color: var(--mid);
  line-height: 1.4;
}

.ticket-price {
  font-size: .96rem;
  font-weight: 800;
  color: var(--k);
  white-space: nowrap;
  margin-right: 12px;
  flex-shrink: 0;
}

.ticket-price span {
  font-size: .66rem;
  font-weight: 400;
  color: var(--soft);
  display: block;
  text-align: right;
}

.ticket-qty {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1.5px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  font-weight: 700;
  color: var(--k);
  transition: all .18s;
  cursor: pointer;
}

.qty-btn:hover {
  background: var(--k);
  color: #fff;
  border-color: var(--k);
}

.qty-val {
  width: 32px;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--k);
}

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid var(--bd);
  text-align: center;
  cursor: default;
  transition: all .18s var(--ease);
}

.amenity-item:hover {
  background: var(--y);
  border-color: var(--y);
  transform: translateY(-2px);
}

.amenity-item i {
  font-size: 1.1rem;
  color: var(--k);
}

.amenity-item span {
  font-size: .68rem;
  font-weight: 600;
  color: var(--k);
  line-height: 1.3;
}

/* Info rows */
.info-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  color: var(--rd);
  flex-shrink: 0;
}

.info-label {
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--soft);
  margin-bottom: 3px;
}

.info-val {
  font-size: .84rem;
  font-weight: 600;
  color: var(--k);
  line-height: 1.5;
}

.info-val a {
  color: var(--rd);
  text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer i {
  color: #f59e0b;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-text {
  font-size: .8rem;
  color: #7c5c00;
  line-height: 1.65;
}

.disclaimer-text strong {
  font-weight: 700;
  color: #5c3d00;
}

/* Countdown */
.countdown-bar {
  background: linear-gradient(115deg, #1a1a3e, #2a1155);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.countdown-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.countdown-units {
  display: flex;
  gap: 10px;
}

.c-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.c-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-radius: 7px;
  width: 52px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: -1px;
}

.c-sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  margin-top: -8px;
}

.c-label {
  font-size: .58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.countdown-title {
  flex: 1;
  text-align: right;
}

.countdown-title p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
}

.countdown-title strong {
  font-size: .9rem;
  color: var(--y);
  display: block;
  margin-top: 2px;
}

/* Map box */
.map-box {
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  background: linear-gradient(135deg, #e8f4fd, #dce8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd);
  cursor: pointer;
  position: relative;
  transition: all .2s var(--ease);
}

.map-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.map-pin-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.map-pin-icon i {
  font-size: 2rem;
  color: var(--rd);
}

.map-pin-icon p {
  font-size: .78rem;
  font-weight: 600;
  color: #555;
  text-align: center;
  max-width: 220px;
  line-height: 1.5;
}

.map-open-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--wh);
  border: 1px solid var(--bd);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .66rem;
  font-weight: 700;
  color: var(--k);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .18s;
}

.map-open-btn:hover {
  background: var(--k);
  color: #fff;
}

/* ─── 14. EVENT DETAIL — RIGHT COLUMN (BOOKING FORM) ─────────── */
.right-col {
  position: sticky;
  top: calc(var(--nav) + 16px);
}

.booking-card {
  background: var(--wh);
  border-radius: 14px;
  border: 1px solid var(--bd);
  overflow: hidden;
}

.booking-head {
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-head-title {
  font-size: .96rem;
  font-weight: 800;
  color: var(--k);
}

.booking-head-sub {
  font-size: .68rem;
  color: var(--soft);
  margin-top: 2px;
}

.booking-badge {
  padding: 4px 10px;
  background: #f0fff0;
  border: 1px solid #b6edbc;
  border-radius: 20px;
  font-size: .66rem;
  font-weight: 700;
  color: var(--gn);
}

.booking-body {
  padding: 18px 20px;
}

/* Form elements */
.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

.form-label span {
  color: var(--rd);
}

.form-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--bd);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--k);
  background: var(--wh);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.form-input:focus {
  border-color: #aaa;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .04);
}

.form-input::placeholder {
  color: #ccc;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239d9d9d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-hint {
  font-size: .66rem;
  color: var(--soft);
  margin-top: 4px;
  line-height: 1.4;
}

.wa-choice {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.wa-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--k);
  cursor: pointer;
}

.wa-opt input[type="radio"] {
  accent-color: var(--k);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* Ticket summary */
.ticket-summary {
  background: #fafafa;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid var(--bd);
}

.ticket-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  margin-bottom: 5px;
}

.ticket-summary-row:last-child {
  margin-bottom: 0;
  padding-top: 6px;
  border-top: 1px dashed var(--bd);
}

.ticket-summary-row span {
  color: var(--mid);
}

.ticket-summary-row strong {
  color: var(--k);
  font-weight: 700;
}

.ticket-summary-row.total strong {
  font-size: .9rem;
}

/* Book button */
.book-btn {
  width: 100%;
  padding: 13px;
  background: var(--k);
  color: #fff;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s var(--ease);
  cursor: pointer;
  margin-top: 4px;
}

.book-btn:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

.book-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .66rem;
  color: var(--soft);
  margin-top: 10px;
}

.secure-note i {
  color: var(--gn);
  font-size: .68rem;
}

/* Add entries */
.add-entries-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--k);
  padding: 8px 14px;
  border: 1.5px dashed var(--bd);
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  transition: all .18s;
  margin-bottom: 14px;
  cursor: pointer;
}

.add-entries-btn:hover {
  border-color: var(--k);
  background: #fafafa;
}

/* ─── 15. SHARED FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--wh);
  border-top: 1px solid var(--bd);
  padding: 40px 0 22px;
}

.footer-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 2px;
}

.footer-brand-sub {
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: .74rem;
  color: var(--soft);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 7px;
}

.footer-soc {
  width: 32px;
  height: 32px;
  background: #f4f4f4;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: .76rem;
  transition: all .2s;
}

.footer-soc:hover {
  background: var(--k);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--soft);
  margin-bottom: 13px;
}

.footer-col a {
  display: block;
  font-size: .76rem;
  color: #555;
  margin-bottom: 9px;
  transition: color .15s;
}

.footer-col a:hover {
  color: var(--k);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--px) 0;
  border-top: 1px solid var(--bd);
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: .66rem;
  color: var(--soft);
}

/* ─── 16. SHARED UTILITIES ──────────────────────────────────── */

/* Toast */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: var(--k);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 600;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: all .25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Reveal on scroll */
.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.rv.vis {
  opacity: 1;
  transform: none;
}

/* ─── 17. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --px: 28px;
  }

  .footer-in {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .page-body {
    grid-template-columns: 1fr;
  }

  .right-col {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --px: 18px;
    --nav: 58px;
  }

  .tabs,
  .nav-tabs,
  .logo-sub,
  .nav-logo-sub {
    display: none;
  }

  .sw-movies .swiper-slide {
    width: 130px;
  }

  .sw-events .swiper-slide,
  .sw-sq .swiper-slide {
    width: 240px;
  }

  .sw-art .swiper-slide {
    width: 96px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .pass-right {
    display: none;
  }

  .event-hero {
    height: 280px;
  }

  .event-hero-title {
    font-size: 1.3rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  }

  .footer-in {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .countdown-title {
    display: none;
  }
}

@media (max-width: 480px) {
  .pass-banner {
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-in {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ─── MOBILE HAMBURGER BUTTON ───────────────────────────────── */
/* ─── MOBILE HAMBURGER BUTTON ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: background .18s;
  flex-shrink: 0;
}

.hamburger:hover { background: #f2f2f2; }

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--k);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s, width .3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE OVERLAY ─────────────────────────────────────────── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── MOBILE DRAWER ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: 300px;
  max-width: 85vw;
  background: var(--wh);
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  display: flex;                        /* ALWAYS flex — never none */
  flex-direction: column;
  transform: translateX(100%);          /* hidden off-screen by default */
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);            /* slide in */
}

/* Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 58px;
  border-bottom: 1px solid var(--bd);
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--mid);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover { background: #f2f2f2; color: var(--k); }

/* Location row */
.mobile-menu-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bd);
  background: #fafafa;
}

/* Nav tabs */
.mobile-nav-tabs {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: background .18s, color .18s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.mobile-nav-tab i { width: 18px; text-align: center; font-size: .9rem; flex-shrink: 0; }
.mobile-nav-tab:hover { background: #f5f5f5; color: var(--k); }
.mobile-nav-tab.active { color: var(--k); background: rgba(232,255,72,.18); border-left-color: var(--y); font-weight: 700; }
.mobile-nav-tab.play { color: var(--rd); }
.mobile-nav-tab.play:hover { background: rgba(226,55,68,.06); }

/* Footer */
.mobile-menu-footer {
  padding: 16px 18px 28px;
  border-top: 1px solid var(--bd);
  flex-shrink: 0;
}

.mobile-signin-btn {
  width: 100%;
  padding: 11px;
  background: var(--k);
  color: #fff;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.mobile-signin-btn:hover { background: #333; transform: translateY(-1px); }

/* ─── SHOW HAMBURGER ON MOBILE ONLY ─────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  body.menu-open { overflow: hidden; }
}
/* ─── MOBILE OVERLAY ─────────────────────────────────────────── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
}

/* ─── MOBILE DRAWER ──────────────────────────────────────────── */
.mobile-menu {
 
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: 300px;
  max-width: 85vw;
  background: var(--wh);
  box-shadow: -8px 0 32px rgba(0, 0, 0, .12);
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Header inside drawer */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 58px;
  border-bottom: 1px solid var(--bd);
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--mid);
  cursor: pointer;
  transition: background .18s, color .18s;
}

.mobile-menu-close:hover {
  background: #f2f2f2;
  color: var(--k);
}

/* Location row inside drawer */
.mobile-menu-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bd);
  background: #fafafa;
}

/* Nav tabs inside drawer */
.mobile-nav-tabs {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: background .18s, color .18s;
  border-left: 3px solid transparent;
}

.mobile-nav-tab i {
  width: 18px;
  text-align: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.mobile-nav-tab:hover {
  background: #f5f5f5;
  color: var(--k);
}

.mobile-nav-tab.active {
  color: var(--k);
  background: rgba(232, 255, 72, .18);
  border-left-color: var(--y);
  font-weight: 700;
}

.mobile-nav-tab.play {
  color: var(--rd);
}

.mobile-nav-tab.play:hover {
  background: rgba(226, 55, 68, .06);
  color: var(--rd);
}

/* Footer inside drawer */
.mobile-menu-footer {
  padding: 16px 18px 24px;
  border-top: 1px solid var(--bd);
  flex-shrink: 0;
}

.mobile-signin-btn {
  width: 100%;
  padding: 11px;
  background: var(--k);
  color: #fff;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background .18s, transform .18s;
}

.mobile-signin-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ─── SHOW HAMBURGER + DRAWER ON MOBILE ONLY ─────────────────── */
@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Activate overlay + drawer containers */
  .mobile-menu-overlay,
  .mobile-menu {
    display: flex;
  }

  /* Prevent body scroll when drawer is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ─── FIX HORIZONTAL SCROLL (X-AXIS OVERFLOW) ───────────────── */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.page {
  overflow-x: hidden;
}

/* Fix nav overflow on small screens */
.nav-in {
  overflow: hidden;
  flex-wrap: nowrap;
}

/* Prevent city text from stretching nav */
.city {
  min-width: 0;
  flex-shrink: 1;
}

/* ─── SWIPER SLIDE WIDTHS FOR SMALL SCREENS (≤ 360px) ────────── */
@media (max-width: 360px) {

  :root {
    --px: 12px;
  }

  /* Event cards & square cards */
  .sw-events .swiper-slide,
  .sw-sq .swiper-slide {
    width: calc(100vw - 48px) !important;
  }

  /* Movie cards */
  .sw-movies .swiper-slide {
    width: 118px !important;
  }

  /* Artist cards */
  .sw-art .swiper-slide {
    width: 88px !important;
  }

  /* Promo cards */
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    height: 100px;
  }

  /* Pass banner */
  .pass-banner {
    padding: 18px 14px;
  }
}

/* ─── SWIPER SLIDE WIDTHS FOR MEDIUM SMALL (361px - 480px) ────── */
@media (min-width: 361px) and (max-width: 480px) {

  :root {
    --px: 16px;
  }

  .sw-events .swiper-slide,
  .sw-sq .swiper-slide {
    width: calc(100vw - 60px) !important;
  }

  .sw-movies .swiper-slide {
    width: 128px !important;
  }
}

/* ─── GENERAL MOBILE SAFE ZONES ─────────────────────────────── */
@media (max-width: 768px) {

  /* Ensure swiper never overflows container */
  .swiper,
  .sw-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  /* Section width clamp */
  .sec,
  .pass-banner,
  .promo-grid {
    max-width: 100%;
  }

  /* Footer fix */
  .footer-in,
  .footer-bottom {
    max-width: 100%;
    overflow: hidden;
  }

  /* Prevent any card from breaking layout */
  .ec, .sqc, .mc, .ac {
    max-width: 100%;
    box-sizing: border-box;
  }
}