@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #6d3ff2;
  --primary-dark: #5225cc;
  --primary-soft: #f0ebff;
  --accent: #ff5a78;
  --dark: #171326;
  --muted: #6e697e;
  --light: #f7f6fa;
  --line: #e8e5ee;
  --white: #fff;
  --green: #11a66a;
  --shadow: 0 18px 50px rgba(31, 20, 59, .11);
  --shadow-soft: 0 10px 32px rgba(31, 20, 59, .07);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--dark);
  background: #fcfbfe;
  line-height: 1.5;
  touch-action: pan-x pan-y;
  overscroll-behavior-y: none;
}

body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 229, 238, .8);
}

.nav { height: 76px; display: flex; align-items: center; gap: 34px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.8px;
  flex-shrink: 0;
}

.logo-mark {
  width: 37px;
  height: 37px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #855cff, #5730d3);
  box-shadow: 0 8px 20px rgba(109, 63, 242, .28);
  transform: rotate(-5deg);
}

.logo-mark svg { width: 21px; transform: rotate(5deg); }
.logo span:last-child { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 27px; margin-right: auto; }
.nav-links a { color: #4e495b; font-size: 14px; font-weight: 600; transition: .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-mobile-only { display: none; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.icon-only-btn {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  position: relative;
  transition: .2s ease;
}
.icon-only-btn svg { width: 26px; height: 26px; }
.icon-only-btn:hover { transform: translateY(-2px); opacity: .82; }
.cart-icon-link svg { filter: drop-shadow(0 2px 5px rgba(23, 19, 38, .18)); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px rgba(255, 90, 120, .4);
}

.cart-fab {
  display: none;
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #7c4cf5, #5928d8);
  box-shadow: 0 12px 26px rgba(109, 63, 242, .38);
}
.cart-fab svg { width: 24px; height: 24px; }
.cart-fab .cart-badge { top: -3px; right: -3px; }

.outline-btn, .primary-btn {
  min-height: 44px;
  padding: 0 19px;
  border-radius: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.outline-btn { color: var(--dark); background: white; border: 1px solid var(--line); }
.outline-btn:hover { border-color: #cfc5e9; background: var(--primary-soft); }

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #7b4bf5, #5c2dde);
  box-shadow: 0 8px 20px rgba(109, 63, 242, .25);
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 11px 24px rgba(109, 63, 242, .34); }

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 14px 5px 6px;
  border-radius: 50px;
  background: var(--primary-soft);
  cursor: pointer;
}
.user-chip .avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #855cff, #5730d3);
  color: white; font-weight: 800; font-size: 12px;
}
.user-chip span { font-size: 13px; font-weight: 700; color: var(--primary-dark); }

.menu-btn { width: 44px; height: 44px; display: none; place-items: center; border-radius: 12px; background: var(--light); cursor: pointer; }
.menu-btn svg { width: 22px; }

/* ---------- HERO (homepage) ---------- */
.hero-wrap { padding: 32px 0 20px; }

.hero {
  min-height: 450px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: white;
  background:
    linear-gradient(90deg, rgba(18, 9, 44, .94) 4%, rgba(41, 16, 92, .82) 44%, rgba(47, 14, 86, .3) 76%, rgba(27, 8, 48, .36)),
    url("assets/bg.jpg") center 44% / cover;
  box-shadow: var(--shadow);
}

.hero::after {
  content: ""; position: absolute; z-index: -1; width: 280px; height: 280px;
  left: 420px; bottom: -220px; border-radius: 50%;
  background: rgba(255, 66, 132, .25); filter: blur(20px);
}

.hero-content { max-width: 670px; padding: 65px 62px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; font-size: 12px; font-weight: 700;
  backdrop-filter: blur(8px); margin-bottom: 18px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff6684; box-shadow: 0 0 0 5px rgba(255, 102, 132, .16); }

.hero h1 { font-size: clamp(37px, 5vw, 60px); letter-spacing: -2.7px; line-height: 1.03; margin-bottom: 18px; }
.hero h1 span { color: #b99cff; }
.hero p { max-width: 530px; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-buttons .primary-btn { background: white; color: var(--primary-dark); box-shadow: none; min-height: 50px; padding-inline: 23px; }
.hero-buttons .ghost-btn {
  min-height: 50px; padding: 0 21px; color: white;
  border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.09);
  border-radius: 13px; font-weight: 700; cursor: pointer; backdrop-filter: blur(8px);
}

.search-panel {
  position: relative; z-index: 4;
  width: min(1030px, calc(100% - 70px));
  margin: -38px auto 0; padding: 13px;
  display: grid; grid-template-columns: 1.35fr .7fr .7fr auto; gap: 7px;
  background: white; border: 1px solid rgba(231, 227, 239, .8);
  border-radius: 20px; box-shadow: var(--shadow);
}

.search-field { height: 54px; display: flex; align-items: center; gap: 11px; padding: 0 15px; border-right: 1px solid var(--line); }
.search-field svg { flex: 0 0 auto; width: 20px; color: var(--primary); }
.search-field input, .search-field select { width: 100%; border: 0; outline: 0; color: var(--dark); background: transparent; font-size: 14px; font-weight: 600; }
.search-field input::placeholder { color: #9b97a7; }

.date-range-field { gap: 8px; }
.date-range-field input[type="date"] {
  width: auto;
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  color: var(--dark);
}
.date-range-sep { flex: 0 0 auto; color: #a29cb0; font-weight: 700; }

.search-btn { padding: 0 24px; border-radius: 13px; color: white; background: var(--primary); font-weight: 800; cursor: pointer; transition: .2s; }
.search-btn:hover { background: var(--primary-dark); }

/* ---------- SMALL PAGE HERO (subpages) ---------- */
.page-hero-wrap {
  padding: 24px 0 0;
}

.page-hero {
  padding: 54px 46px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  color: white;
  isolation: isolate;
  background: linear-gradient(120deg, #1d1436 0%, #3a1e78 55%, #6d3ff2 130%);
}
.page-hero::before {
  content: ""; position: absolute; z-index: -1; width: 360px; height: 360px;
  right: -120px; top: -180px; border-radius: 50%; background: rgba(255,90,120,.22); filter: blur(10px);
}
.page-hero::after {
  content: ""; position: absolute; z-index: -1; width: 300px; height: 300px;
  left: -80px; bottom: -180px; border-radius: 50%; background: rgba(140,90,255,.28); filter: blur(15px);
}
.page-hero { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: white; }
.breadcrumb.on-light { color: #a8a2b6; }
.breadcrumb.on-light a { color: var(--muted); }
.breadcrumb.on-light a:hover { color: var(--primary); }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -1.6px; margin-bottom: 12px; }
.page-hero p { max-width: 560px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; }
.page-hero-stats { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.page-hero-stats div strong { display: block; font-size: 24px; letter-spacing: -1px; }
.page-hero-stats div span { font-size: 11px; color: rgba(255,255,255,.6); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* ---------- MAIN / EVENTS ---------- */
.main { padding: 70px 0 80px; }
.main.tight { padding-top: 46px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.section-head h2 { font-size: clamp(25px, 3vw, 34px); letter-spacing: -1.2px; line-height: 1.15; }
.section-head p { color: var(--muted); font-size: 14px; margin-top: 7px; }

.text-link { color: var(--primary); font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 7px; cursor: pointer; background: transparent; }

.categories { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; margin-bottom: 29px; padding: 8px 2px 12px; }
.categories::-webkit-scrollbar { display: none; }

.category-btn {
  flex-shrink: 0; height: 43px; border: 1px solid var(--line); border-radius: 50px; padding: 0 18px;
  color: #625d6f; background: white; font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.category-btn:hover, .category-btn.active { color: white; border-color: var(--primary); background: var(--primary); box-shadow: 0 6px 18px rgba(109,63,242,.2); }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.event-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: white; box-shadow: var(--shadow-soft); transition: .3s ease; cursor: pointer;
  display: block;
}
.event-card:hover { transform: translateY(-7px); border-color: #dcd4ef; box-shadow: var(--shadow); }

.event-image { height: 220px; position: relative; overflow: hidden; background: #ddd; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.event-card:hover .event-image img { transform: scale(1.055); }
.event-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(12,8,25,.35)); pointer-events: none; }

.date-badge {
  position: absolute; z-index: 2; left: 15px; top: 15px; width: 55px; height: 62px; border-radius: 14px;
  display: grid; place-content: center; text-align: center;
  background: rgba(255,255,255,.94); box-shadow: 0 4px 10px rgba(17,9,35,.16); backdrop-filter: blur(8px);
}
.date-badge strong { display: block; color: var(--primary); font-size: 20px; line-height: 1; }
.date-badge span { color: var(--muted); font-weight: 800; font-size: 10px; margin-top: 4px; text-transform: uppercase; }

.favorite {
  position: absolute; z-index: 3; right: 15px; top: 15px; width: 40px; height: 40px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92);
  color: #5e586a; cursor: pointer; transition: .2s;
}
.favorite svg { width: 19px; fill: transparent; transition: .2s; }
.favorite:hover, .favorite.active { color: #eb4164; }
.favorite.active svg { fill: currentColor; }

.event-tag {
  position: absolute; z-index: 2; left: 15px; bottom: 14px; padding: 6px 10px; border-radius: 8px;
  color: white; background: rgba(23, 19, 38, .68); backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
}

.event-image.is-dim img { filter: grayscale(100%) brightness(.85); }
.event-card.is-past-card { filter: grayscale(85%) opacity(.9); }
.card-ribbon {
  position: absolute; z-index: 4; top: 16px; right: -38px; width: 160px;
  text-align: center; padding: 6px 0; transform: rotate(38deg);
  font-size: 10.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: white;
}
.card-ribbon.sold-out { background: linear-gradient(135deg,#ff5a78,#e02f52); box-shadow: 0 6px 14px rgba(224,47,82,.35); }

.event-body { padding: 19px 19px 20px; }
.event-body h3 { font-size: 18px; line-height: 1.35; letter-spacing: -.4px; margin-bottom: 12px; }

.meta-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 4px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px 5px 6px;
  border-radius: 9px; font-size: 11px; font-weight: 700; background: var(--light); color: #514b60;
  max-width: 100%;
}
.meta-chip.venue {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 70%;
}
.meta-chip.time {
  flex: 0 0 auto;
}
.meta-chip.venue span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.meta-chip .ic {
  width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; color: white;
}
.meta-chip .ic svg { width: 12px; }
.meta-chip.date .ic { background: linear-gradient(135deg,#8a5cf6,#5c2dde); }
.meta-chip.time .ic { background: linear-gradient(135deg,#ff7d97,#ff5a78); }
.meta-chip.venue .ic { background: linear-gradient(135deg,#5fb8f0,#3f8ee0); }

.card-bottom { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 15px; display: flex; justify-content: space-between; align-items: center; }
.price-label { color: var(--muted); font-size: 10px; font-weight: 700; }
.price { display: block; font-size: 17px; font-weight: 800; color: var(--dark); }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price-original { font-size: 12px; color: #b3aebd; text-decoration: line-through; font-weight: 700; }
.price.sold-out-text { color: #b3aebd; font-size: 14px; }
.card-arrow { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 11px; color: var(--primary); background: var(--primary-soft); }
.card-arrow svg { width: 18px; }

.no-results { display: none; padding: 55px 20px; border: 1px dashed #d7d0e6; border-radius: 20px; text-align: center; color: var(--muted); grid-column: 1 / -1; }

/* ---------- FEATURES ---------- */
.features { margin-top: 85px; padding: 50px; border-radius: 28px; background: linear-gradient(135deg, #1d1730, #2e1f56); color: white; position: relative; overflow: hidden; }
.features::after { content: ""; position: absolute; width: 380px; height: 380px; right: -180px; top: -210px; border-radius: 50%; background: rgba(126,76,255,.22); }
.features-head { max-width: 550px; margin-bottom: 35px; position: relative; z-index: 1; }
.features-head h2 { font-size: 30px; letter-spacing: -1px; margin-bottom: 8px; }
.features-head p { color: rgba(255,255,255,.65); font-size: 14px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; position: relative; z-index: 1; }
.feature { display: flex; gap: 14px; }
.feature-icon { width: 47px; height: 47px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; color: #c8b7ff; background: rgba(255,255,255,.1); }
.feature-icon svg { width: 22px; }
.feature h3 { font-size: 14px; margin: 2px 0 5px; }
.feature p { color: rgba(255,255,255,.57); font-size: 11px; line-height: 1.65; }

/* ---------- NEWSLETTER ---------- */
.newsletter { margin-top: 80px; display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 35px 40px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-soft); }
.newsletter h3 { font-size: 22px; letter-spacing: -.6px; margin-bottom: 5px; }
.newsletter p { color: var(--muted); font-size: 13px; }
.newsletter-form { width: min(430px, 100%); display: flex; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: var(--light); }
.newsletter-form input { flex: 1; min-width: 0; padding: 0 13px; border: 0; outline: 0; background: transparent; font-size: 13px; }
.newsletter-form button { height: 42px; padding: 0 18px; border-radius: 10px; color: white; background: var(--primary); font-weight: 700; cursor: pointer; }

.whatsapp-cta {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 32px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(120deg, #eafff4 0%, #ffffff 55%);
  box-shadow: var(--shadow-soft);
}
.whatsapp-cta-icon {
  width: 62px; height: 62px; flex: 0 0 auto; border-radius: 18px;
  display: grid; place-items: center; color: white;
  background: linear-gradient(135deg,#34e07f,#1fae63);
  box-shadow: 0 10px 24px rgba(31,174,99,.3);
}
.whatsapp-cta-icon svg { width: 29px; }
.whatsapp-cta-text { flex: 1; min-width: 200px; }
.whatsapp-cta-text h3 { font-size: 22px; letter-spacing: -.6px; margin-bottom: 5px; }
.whatsapp-cta-text p { color: var(--muted); font-size: 13px; max-width: 480px; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 52px; padding: 0 24px; border-radius: 14px; flex: 0 0 auto;
  color: white; background: linear-gradient(135deg,#34e07f,#1fae63);
  font-weight: 800; font-size: 14px; white-space: nowrap; cursor: pointer;
  box-shadow: 0 10px 24px rgba(31,174,99,.3); transition: .2s;
}
.whatsapp-btn:hover { transform: translateY(-2px); }
.whatsapp-btn svg { width: 19px; }

/* ---------- FOOTER ---------- */
.footer { color: #c7c1d3; background: #151120; padding: 55px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; }
.footer .logo { color: white; margin-bottom: 16px; }
.footer-about { max-width: 300px; font-size: 12px; line-height: 1.8; color: #8f899c; }
.footer h4 { color: white; font-size: 13px; margin-bottom: 17px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #918b9e; font-size: 12px; transition: .2s; }
.footer-links a:hover { color: white; }
.copyright { margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; color: #746e80; font-size: 11px; }
.copyright a { color: #746e80; }
.copyright a:hover { color: white; }

/* ---------- EVENT DETAIL PAGE ---------- */
.event-detail-hero {
  aspect-ratio: 16 / 9; position: relative; display: flex; align-items: flex-end; padding: 40px;
  border-radius: 28px; overflow: hidden; background-position: center; background-size: cover; color: white; margin-top: 14px;
}
.event-detail-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,10,28,.96), rgba(20,12,40,.1) 78%); }
.event-detail-heading { position: relative; max-width: 760px; }
.event-tag-static { display: inline-block; padding: 6px 12px; margin-bottom: 14px; border-radius: 7px; background: var(--primary); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; }
.event-detail-heading h1 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -1.4px; line-height: 1.12; }

.detail-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 36px; margin-top: 34px; }
.detail-block h3 { font-size: 18px; margin-bottom: 16px; padding: 0 16px; }
.detail-block p.description { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 30px; padding: 0 16px; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 32px; }
.info-card {
  min-height: 92px; display: flex; align-items: center; gap: 14px; padding: 16px;
  border: 1px solid var(--line); border-radius: 17px; background: white;
  box-shadow: var(--shadow-soft); transition: .2s;
}
.info-card:hover { transform: translateY(-3px); border-color: #dcd4ef; }
.info-card .icon-badge {
  width: 46px; height: 46px; border-radius: 14px; flex: 0 0 auto; display: grid; place-items: center; color: white;
}
.info-card .icon-badge svg { width: 21px; }
.info-card.date .icon-badge { background: linear-gradient(135deg,#8a5cf6,#5c2dde); }
.info-card.time .icon-badge { background: linear-gradient(135deg,#ff7d97,#ff5a78); }
.info-card.venue .icon-badge { background: linear-gradient(135deg,#5fb8f0,#3f8ee0); }
.info-card.age .icon-badge { background: linear-gradient(135deg,#3ecf8e,#11a66a); }
.info-card small { display: block; color: #9993a5; font-size: 10.5px; font-weight: 700; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .4px; }
.info-card strong { display: block; font-size: 13.5px; line-height: 1.35; }

.zones { display: grid; gap: 9px; }
.zone {
  width: 100%; min-height: 60px; padding: 10px 14px; display: flex; justify-content: space-between; align-items: center;
  text-align: left; border: 1px solid var(--line); border-radius: 13px; background: white; cursor: pointer; transition: .2s;
}
.zone:hover, .zone.active { border-color: var(--primary); background: var(--primary-soft); }
.zone.disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.zone-name { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 800; }
.zone-color { width: 11px; height: 11px; border-radius: 50%; background: var(--zone-color); box-shadow: 0 0 0 4px color-mix(in srgb, var(--zone-color) 15%, transparent); }
.zone-price { font-size: 14px; font-weight: 800; color: var(--primary-dark); }
.zone-original { font-size: 11px; color: #b3aebd; text-decoration: line-through; font-weight: 700; margin-right: 7px; }

.status-banner { padding: 14px 16px; border-radius: 12px; margin-bottom: 14px; font-size: 13px; font-weight: 700; }
.status-banner.sold-out { background: #fff0f2; color: #c42a48; border: 1px solid #ffd7de; }
.status-banner.past { background: #f1f0f4; color: #57515f; border: 1px solid #e3e0ea; }

.checkout-box { position: sticky; top: 92px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #faf9fc; }
.checkout-box h3 { font-size: 17px; margin-bottom: 18px; }
.selected-line, .total-line { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; margin-bottom: 13px; }
.selected-line span:first-child { color: var(--muted); }
.quantity { margin: 20px 0; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.quantity label { font-size: 12px; font-weight: 700; }
.counter { display: flex; align-items: center; gap: 12px; }
.counter button { width: 31px; height: 31px; border-radius: 9px; color: var(--primary); background: white; border: 1px solid var(--line); font-size: 18px; cursor: pointer; }
.counter button:disabled { opacity: .4; cursor: not-allowed; }
.counter strong { min-width: 14px; text-align: center; }
.total-line { align-items: end; margin-bottom: 18px; }
.total-line span { color: var(--muted); font-weight: 700; }
.total-line strong { color: var(--primary); font-size: 24px; }
.buy-btn { width: 100%; min-height: 50px; border-radius: 13px; color: white; background: linear-gradient(135deg, #7c4cf5, #5928d8); font-weight: 800; cursor: pointer; box-shadow: 0 10px 25px rgba(109,63,242,.25); transition: .2s; }
.buy-btn:hover { transform: translateY(-2px); }
.buy-btn.disabled, .buy-btn:disabled { opacity: .45; cursor: not-allowed; background: #c9c4d6; box-shadow: none; transform: none; }
.secure-note { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 12px; color: var(--muted); font-size: 9px; font-weight: 600; }
.secure-note svg { width: 13px; color: var(--green); }

.related-head { margin-top: 70px; margin-bottom: 22px; }
.related-head h2 { font-size: 24px; letter-spacing: -1px; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; z-index: 200; left: 50%; bottom: 28px; padding: 14px 19px; border-radius: 13px;
  color: white; background: #1c1730; box-shadow: 0 14px 35px rgba(0,0,0,.25); font-size: 13px; font-weight: 700;
  opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .3s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- CATEGORY PAGE ---------- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card {
  padding: 30px 26px; border: 1px solid var(--line); border-radius: 24px; background: white;
  box-shadow: var(--shadow-soft); transition: .25s; cursor: pointer; display: block;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #dcd4ef; }
.category-card .cat-icon { width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center; color: white; margin-bottom: 18px; }
.category-card .cat-icon svg { width: 26px; }
.category-card h3 { font-size: 19px; margin-bottom: 7px; letter-spacing: -.4px; }
.category-card p { color: var(--muted); font-size: 12.5px; line-height: 1.7; margin-bottom: 14px; }
.category-card .cat-count { font-size: 12px; font-weight: 800; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- VENUES PAGE ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.venue-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow-soft); transition: .25s; display: block; }
.venue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.venue-image { height: 200px; position: relative; overflow: hidden; background: #ddd; }
.venue-image img { width: 100%; height: 100%; object-fit: cover; }
.venue-city-tag { position: absolute; left: 14px; top: 14px; padding: 6px 11px; border-radius: 8px; background: rgba(23,19,38,.68); color: white; font-size: 10px; font-weight: 800; text-transform: uppercase; backdrop-filter: blur(8px); }
.venue-body { padding: 20px 21px 22px; }
.venue-body h3 { font-size: 17px; margin-bottom: 8px; }
.venue-body .meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.venue-body .meta svg { width: 15px; color: var(--primary); flex-shrink: 0; }
.venue-body p.desc { color: var(--muted); font-size: 12.5px; line-height: 1.7; margin: 12px 0 16px; }
.venue-stats { display: flex; gap: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.venue-stats div strong { display: block; font-size: 15px; }
.venue-stats div span { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; }

/* ---------- CONTENT / STATIC PAGES ---------- */
.content-page { max-width: 800px; }
.content-page h2 { font-size: 22px; letter-spacing: -.6px; margin: 34px 0 14px; }
.content-page h2:first-child { margin-top: 0; }
.content-page p { color: var(--muted); font-size: 14.5px; line-height: 1.9; margin-bottom: 14px; }
.content-page ul { color: var(--muted); font-size: 14.5px; line-height: 1.9; margin: 0 0 14px 22px; }
.content-page li { margin-bottom: 6px; }
.content-page strong { color: var(--dark); }
.updated-note { display: inline-block; margin-bottom: 30px; padding: 7px 13px; border-radius: 50px; background: var(--primary-soft); color: var(--primary-dark); font-size: 11.5px; font-weight: 700; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 45px; }
.info-strip-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); }
.info-strip-card .icon-badge { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: white; margin-bottom: 14px; background: linear-gradient(135deg,#8a5cf6,#5c2dde); }
.info-strip-card .icon-badge svg { width: 19px; }
.info-strip-card h4 { font-size: 14.5px; margin-bottom: 6px; }
.info-strip-card p { color: var(--muted); font-size: 12.5px; line-height: 1.7; margin: 0; }

/* Contact form */
.contact-form { display: grid; gap: 14px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--dark); }
.field input, .field select, .field textarea {
  height: 48px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--light);
  outline: 0; font-size: 13.5px; transition: .2s;
}
.field textarea { height: auto; padding: 13px 15px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); background: white; }

/* FAQ Accordion */
.faq-list { display: grid; gap: 12px; max-width: 800px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: white; overflow: hidden; }
.faq-question { width: 100%; padding: 19px 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px; cursor: pointer; background: white; text-align: left; font-size: 14.5px; font-weight: 700; }
.faq-question svg { width: 18px; flex-shrink: 0; color: var(--primary); transition: .25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: .25s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 20px 19px; color: var(--muted); font-size: 13.5px; line-height: 1.8; }

/* Careers */
.job-list { display: grid; gap: 12px; }
.job-card { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); flex-wrap: wrap; }
.job-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { padding: 5px 10px; border-radius: 7px; background: var(--light); color: var(--muted); font-size: 11px; font-weight: 700; }

/* ---------- AUTH PAGES ---------- */
.auth-wrap {
  min-height: calc(100vh - 76px);
  display: flex; align-items: center; justify-content: center;
  padding: 50px 20px;
  background:
    radial-gradient(circle at 15% 10%, rgba(132,75,255,.10), transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(255,90,120,.09), transparent 45%),
    #fcfbfe;
}
.auth-card { width: min(440px, 100%); padding: 42px 38px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.auth-card .logo { justify-content: center; margin-bottom: 22px; }
.auth-head { text-align: center; margin-bottom: 30px; }
.auth-head h1 { font-size: 24px; letter-spacing: -.8px; margin-bottom: 8px; }
.auth-head p { color: var(--muted); font-size: 13.5px; }
.auth-form { display: grid; gap: 16px; }
.auth-form .field-icon { position: relative; }
.auth-form .field-icon svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; color: var(--muted); }
.auth-form .field-icon input { padding-left: 44px; }
.auth-form input {
  width: 100%; height: 50px; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px;
  background: var(--light); outline: 0; font-size: 14px; transition: .2s;
}
.auth-form input:focus { border-color: var(--primary); background: white; }
.auth-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.checkbox-row input { width: 16px; height: 16px; accent-color: var(--primary); }
.auth-link { color: var(--primary); font-weight: 700; }
.auth-submit {
  width: 100%; min-height: 50px; border-radius: 13px; color: white;
  background: linear-gradient(135deg, #7c4cf5, #5928d8); font-weight: 800; cursor: pointer;
  box-shadow: 0 10px 25px rgba(109,63,242,.25); transition: .2s; margin-top: 4px;
}
.auth-submit:hover { transform: translateY(-2px); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: #a29cb0; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn {
  height: 48px; border: 1px solid var(--line); border-radius: 13px; background: white;
  display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s;
}
.social-btn:hover { background: var(--light); }
.social-btn svg { width: 18px; }
.auth-footer-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }
.step-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 26px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: .2s; }
.step-dot.active { width: 22px; border-radius: 5px; background: var(--primary); }
.otp-row { display: flex; gap: 9px; justify-content: center; }
.otp-row input { width: 46px !important; height: 54px !important; text-align: center; font-size: 20px; font-weight: 800; padding: 0 !important; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4) { grid-column: 2; }
  .footer-grid > div:nth-child(5) { grid-column: 3; }
  .venue-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; padding: 20px; display: none;
    align-items: stretch; flex-direction: column; background: white; box-shadow: 0 16px 25px rgba(30,20,50,.08);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: grid; }
  .nav-actions .outline-btn, .instagram-icon { display: none; }
  .nav-mobile-only {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line);
  }
  a.mobile-auth-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 46px; border-radius: 12px; color: white;
    background: linear-gradient(135deg, #7c4cf5, #5928d8); font-weight: 700; font-size: 14px;
  }
  a.mobile-auth-btn:hover { color: white; }
  .mobile-auth-btn svg { width: 18px; }
  .mobile-auth-link { text-align: center; font-size: 12.5px; color: var(--muted); font-weight: 600; }
  .nav { gap: 15px; }
  .nav-actions { margin-left: auto; }
  .hero-content { padding: 55px 43px; }
  .search-panel { grid-template-columns: 1fr 1fr; }
  .search-field:nth-child(2) { border-right: 0; }
  .search-btn { min-height: 50px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .checkout-box { position: static; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 44px, 1180px); }
  .nav { height: 62px; }
  .cart-icon-link { display: none; }
  .cart-fab { display: flex; }
  .header .primary-btn { display: none; }
  .event-detail-hero { padding: 22px; }
  .detail-block h3, .detail-block p.description { padding: 0 4px; }
  .hero-wrap { padding-top: 15px; }
  .hero { min-height: 430px; border-radius: 22px; background-position: 61% center; }
  .hero-content { padding: 26px 24px 80px; align-self: flex-end; }
  .hero h1 { letter-spacing: -1.7px; }
  .hero p { font-size: 14px; }
  .search-panel { width: calc(100% - 28px); margin-top: -57px; grid-template-columns: 1fr; gap: 0; padding: 9px; }
  .search-field { height: 49px; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-btn { margin-top: 7px; }
  .main { padding-top: 55px; }
  .section-head { align-items: start; }
  .section-head .text-link { display: none; }
  .events-grid { grid-template-columns: 1fr; gap: 18px; }
  .event-image { height: 235px; }
  .features { margin-top: 55px; padding: 32px 23px; }
  .newsletter { margin-top: 55px; padding: 28px 21px; flex-direction: column; align-items: stretch; }
  .newsletter-form { flex-direction: column; background: transparent; border: 0; gap: 9px; padding: 0; }
  .newsletter-form input { min-height: 47px; border: 1px solid var(--line); border-radius: 11px; background: var(--light); }
  .whatsapp-cta { margin-top: 55px; padding: 26px 21px; flex-direction: column; align-items: stretch; text-align: center; }
  .whatsapp-cta-icon { margin: 0 auto; }
  .whatsapp-cta-text p { max-width: none; }
  .whatsapp-btn { justify-content: center; }
  .date-range-field input[type="date"] { font-size: 11.5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
  .copyright { flex-direction: column; gap: 7px; }
  .info-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 24px; border-radius: 22px; }
  .auth-card { padding: 32px 24px; }
}

/* ---------- CART PAGE ---------- */
.cart-layout { display: grid; grid-template-columns: 1.35fr .8fr; gap: 26px; align-items: start; }

.cart-item {
  display: flex; align-items: center; gap: 16px; padding: 17px;
  border: 1px solid var(--line); border-radius: 17px; background: white;
  box-shadow: var(--shadow-soft); margin-bottom: 13px;
}
.cart-item img { width: 62px; height: 62px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 14px; margin-bottom: 6px; line-height: 1.3; }
.cart-zone-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: var(--muted); }
.cart-zone-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cart-item-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cart-qty { display: flex; align-items: center; gap: 9px; }
.cart-qty button { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); background: white; color: var(--primary); font-size: 15px; cursor: pointer; }
.cart-qty strong { min-width: 14px; text-align: center; font-size: 13px; }
.cart-line-total { font-weight: 800; font-size: 13.5px; min-width: 74px; text-align: right; }
.cart-remove { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #eb4164; background: #fff0f2; cursor: pointer; flex-shrink: 0; }
.cart-remove svg { width: 16px; }

.cart-empty { text-align: center; padding: 60px 20px; border: 1px dashed #d7d0e6; border-radius: 20px; color: var(--muted); }
.cart-empty h3 { color: var(--dark); font-size: 18px; margin-bottom: 8px; }

.cart-summary { position: sticky; top: 92px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #faf9fc; }
.cart-summary h3 { font-size: 17px; margin-bottom: 18px; }
.cart-summary .field { margin-bottom: 16px; }
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; min-width: 0; }
.promo-row .outline-btn { padding: 0 16px; white-space: nowrap; }
.promo-msg { font-size: 11.5px; margin-top: 8px; font-weight: 700; min-height: 14px; }
.promo-msg.success { color: var(--green); }
.promo-msg.error { color: #eb4164; }

.total-line { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: 11px; color: var(--muted); font-weight: 700; }
.total-line strong { color: var(--dark); font-weight: 800; }
.total-line.grand { padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--line); font-size: 13.5px; }
.total-line.grand strong { color: var(--primary); font-size: 23px; }

.whatsapp-order-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 52px; border-radius: 14px; color: white;
  background: linear-gradient(135deg,#34e07f,#1fae63); font-weight: 800; font-size: 13.5px;
  margin-top: 6px; box-shadow: 0 10px 24px rgba(31,174,99,.3); transition: .2s; cursor: pointer;
}
.whatsapp-order-btn:hover { transform: translateY(-2px); }
.whatsapp-order-btn.disabled { opacity: .45; pointer-events: none; }
.whatsapp-order-btn svg { width: 19px; flex-shrink: 0; }

/* ---------- CART PAGE — MOBILE (kept at the very end so it wins the cascade) ---------- */
@media (max-width: 760px) {
  .cart-layout { display: flex; flex-direction: column; gap: 20px; }
  .cart-summary { position: static; width: 100%; }

  .cart-item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }
  .cart-item img { width: 52px; height: 52px; }
  .cart-item-info { flex: 1 1 auto; min-width: 0; }
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px dashed var(--line);
  }

  .promo-row { flex-wrap: wrap; }
  .promo-row .outline-btn { width: 100%; }
}
