/* ═══════════════════════════════════════════════════════════════
   RESET & VARIABLES
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Heebo', sans-serif;
  overflow-x: hidden;
  background: #f5f7ff;
  color: #1a1a2e;
  opacity: 0;
  transition: opacity 0.15s;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:root {
  --navy: #1a237e;
  --indigo: #3f51b5;
  --light-indigo: #7986cb;
  --sky: #e8eaf6;
  --bg: #f5f7ff;
  --text: #1a1a2e;
  --text-light: #6a6a8a;
  --accent: #ff6f00;
  --accent-hover: #ff8f00;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  background: var(--navy);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Karantina', system-ui;
  font-size: 28px;
  color: white;
  letter-spacing: 2px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: auto; }
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open .mobile-menu-overlay { opacity: 1; }
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--navy);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 18px; left: 18px;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px; cursor: pointer;
}
.mobile-menu-panel a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 16px; font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu-panel a:hover { color: white; }
.mobile-menu-panel .mm-wa {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px;
  background: #25D366; color: white !important;
  padding: 14px 20px; border-bottom: none; font-weight: 600;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.wa-btn {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: #25D366 !important;
  color: white !important;
  padding: 7px 18px !important;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0;
  transition: all 0.3s;
}
.wa-btn::after { display: none !important; }
.wa-btn:hover { background: #1da851 !important; }
.wa-btn svg { flex-shrink: 0; }
.wa-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.wa-modal-overlay.show { opacity: 1; visibility: visible; }
.wa-modal {
  background: white; padding: 48px 40px; max-width: 420px; width: 90%;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  text-align: center; position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-modal-overlay.show .wa-modal {
  transform: scale(1) translateY(0);
}
.wa-modal h3 {
  font-family: 'Karantina', system-ui; font-size: 36px; color: var(--navy);
  margin-bottom: 12px; letter-spacing: 2px;
}
.wa-modal p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.wa-modal .wa-join {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white; padding: 14px 36px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  text-decoration: none; transition: all 0.3s;
}
.wa-modal .wa-join:hover { background: #1da851; }
.wa-modal .wa-close {
  position: absolute; top: 16px; left: 16px; background: none; border: none;
  font-size: 22px; color: var(--text-light); cursor: pointer; padding: 4px;
}
.wa-modal .wa-close:hover { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   HERO STRIP — ישיר style with square image
   ═══════════════════════════════════════════════════════════════ */
.hero-strip {
  background: #060a24;
  padding: 0 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px 0;
}
.hero-img {
  flex: 0 0 280px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.hero-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.hero-info { flex: 1; }
.hero-info .hero-cat {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 4px 18px;
  font-size: 10px;
  font-weight: 700;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero-hot {
  display: inline-block;
  color: #c62828;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.hero-info h1 {
  font-family: 'Karantina', system-ui;
  font-size: 56px;
  color: white;
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 16px;
}
/* Meta with labels — רצועה style but better */
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item .meta-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-meta-item .meta-value {
  font-family: 'Karantina', system-ui;
  font-size: 32px;
  color: white;
  letter-spacing: 1px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.hero-cta .cta-from {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
.hero-cta .cta-price {
  font-family: 'Karantina', system-ui;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}
.hero-cta .cta-buy {
  padding: 14px 48px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.3s;
  display: inline-block;
}
.hero-cta .cta-buy:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   IFRAME SECTION — High on page, full width
   ═══════════════════════════════════════════════════════════════ */
/* ═══ DATE PICKER (multi-date events) ═══ */
.date-picker-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 60px 0;
}
.date-picker-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.date-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.date-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: white;
  border: 2px solid var(--sky);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  min-width: 200px;
}
.date-option:hover { border-color: var(--light-indigo); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,35,126,0.08); }
.date-option.active { border-color: var(--accent); background: rgba(255,111,0,0.03); }
.date-option .do-day {
  font-family: 'Karantina', system-ui;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
  min-width: 52px;
  text-align: center;
}
.date-option.active .do-day { color: var(--accent); }
.date-option .do-details { display: flex; flex-direction: column; }
.date-option .do-date { font-size: 14px; font-weight: 600; color: var(--text); }
.date-option .do-time { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.date-option .do-check {
  width: 22px; height: 22px;
  border: 2px solid var(--sky);
  border-radius: 50%;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.date-option.active .do-check {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  font-size: 12px;
}

.iframe-zone {
  --ticket-frame-padding: 12px;
  position: relative;
  width: calc(100% - 48px);
  max-width: 1100px;
  margin: 32px auto 0;
  padding: var(--ticket-frame-padding);
  background: rgba(232,234,246,0.5);
  border: 1px solid rgba(63,81,181,0.14);
  border-radius: 4px;
}
.iframe-zone iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: none;
  background: var(--navy);
  transition: min-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══ STAGE ANIMATION ═══ */
.stage-anim {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
}
.stage-block {
  width: 10px;
  background: var(--accent);
  clip-path: polygon(2px 0, 100% 0, calc(100% - 2px) 100%, 0 100%);
  animation: stageGrow 1.6s ease-in-out infinite;
}
.stage-block:nth-child(1) { height: 12px; animation-delay: 0s; }
.stage-block:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.stage-block:nth-child(3) { height: 32px; animation-delay: 0.2s; }
.stage-block:nth-child(4) { height: 44px; animation-delay: 0.3s; }
.stage-block:nth-child(5) { height: 48px; animation-delay: 0.4s; background: rgba(255,255,255,0.15); }
.stage-block:nth-child(6) { height: 48px; animation-delay: 0.5s; background: rgba(255,255,255,0.15); }
.stage-block:nth-child(7) { height: 44px; animation-delay: 0.4s; }
.stage-block:nth-child(8) { height: 32px; animation-delay: 0.3s; }
.stage-block:nth-child(9) { height: 20px; animation-delay: 0.2s; }
.stage-block:nth-child(10) { height: 12px; animation-delay: 0.1s; }

@keyframes stageGrow {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ═══ IFRAME OVERLAY LOADER ═══ */
.iframe-overlay {
  position: absolute;
  inset: var(--ticket-frame-padding);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 3;
  transition: opacity 0.5s;
}
.iframe-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.iframe-overlay .stage-anim { height: 40px; }
.iframe-overlay .stage-block { width: 8px; }
.iframe-overlay-text {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  font-weight: 500;
}
.iframe-placeholder {
  width: 100%;
  min-height: 500px;
  background: var(--sky);
  border: 2px dashed rgba(26,35,126,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-light);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  position: relative;
}
.iframe-placeholder::before {
  content: '🎫';
  font-size: 48px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.3;
}
.iframe-placeholder span {
  position: relative;
  z-index: 1;
  background: white;
  padding: 12px 28px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  font-weight: 600;
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════
   BODY CONTENT
   ═══════════════════════════════════════════════════════════════ */
.body-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 60px 0;
}

.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.sec-title {
  font-family: 'Karantina', system-ui;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sec-title::before { content: '// '; color: var(--accent); }
.desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}
.desc p { margin-bottom: 14px; }
.important {
  background: rgba(255,111,0,0.05);
  border-right: 4px solid var(--accent);
  padding: 24px 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.important h4 {
  font-family: 'Karantina', system-ui;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
}
.important li {
  font-size: 14px;
  line-height: 2;
  color: var(--text-light);
  list-style: disc;
  margin-right: 18px;
}
.important-html {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
}
.important-html p { margin-bottom: 8px; }

/* TRAILER */
.trailer-section { margin-bottom: 48px; }
.trailer-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0d1452;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.trailer-placeholder.is-playing {
  cursor: default;
}
.trailer-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.trailer-placeholder .play-btn {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.trailer-placeholder .play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255,111,0,0.4);
}
.trailer-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

/* ═══════════════════════════════════════════════════════════════
   RELATED EVENTS — Same square grid as homepage
   ═══════════════════════════════════════════════════════════════ */
.related-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 80px;
  position: relative;
}
.related-section .sec-title { margin-bottom: 20px; text-align: center; }
.related-slider-wrap {
  overflow: hidden;
}
.related-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.related-slider::-webkit-scrollbar { display: none; }
.related-slider { cursor: grab; }
.related-slider.dragging { cursor: grabbing; scroll-behavior: auto; }
.related-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: white;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(26,35,126,0.15);
}
.related-card-img {
  position: relative;
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-img .rc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: white;
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  z-index: 2;
  letter-spacing: 1px;
}
.related-card-body {
  padding: 16px 18px 20px;
}
.related-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.related-card-body .rc-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.related-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.related-card-footer .rc-price {
  font-family: 'Karantina', system-ui;
  font-size: 24px;
  color: var(--navy);
}
.related-card-footer .rc-buy {
  padding: 7px 18px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 600;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  transition: all 0.3s;
  display: inline-block;
}
.related-card-footer .rc-buy:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   STICKY BUY BAR
   ═══════════════════════════════════════════════════════════════ */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(10,14,42,0.96);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--accent);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-buy-bar.visible { transform: translateY(0); }
.sticky-buy-bar .sb-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-buy-bar .sb-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.sticky-buy-bar .sb-title {
  font-family: 'Karantina', system-ui;
  font-size: 22px;
  color: white;
  letter-spacing: 1px;
}
.sticky-buy-bar .sb-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.sticky-buy-bar .sb-price {
  font-family: 'Karantina', system-ui;
  font-size: 32px;
  color: var(--accent);
  margin-right: auto;
  margin-left: 20px;
}
.sticky-buy-bar .sb-buy {
  padding: 14px 44px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: all 0.3s;
  white-space: nowrap;
  display: inline-block;
}
.sticky-buy-bar .sb-buy:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #0a0e2a;
  color: rgba(255,255,255,0.7);
  padding: 60px 60px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h3 {
  font-family: 'Karantina', system-ui;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer p, .footer li { font-size: 14px; line-height: 2.2; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer li:hover { color: rgba(255,255,255,0.9); }
.footer-logo {
  font-family: 'Karantina', system-ui;
  font-size: 26px;
  color: white;
  margin-bottom: 10px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .related-card { flex: 0 0 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 56px; }
  .nav-logo { font-size: 22px; letter-spacing: 2px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-strip { padding: 0 24px; }
  .hero-inner { flex-direction: column; text-align: center; gap: 24px; padding: 32px 0; }
  .hero-img { flex: none; width: 220px; margin: 0 auto; }
  .hero-info h1 { font-size: 36px; }
  .hero-meta { justify-content: center; gap: 20px; }
  .hero-meta-item .meta-value { font-size: 26px; }
  .hero-cta { width: 100%; }
  .hero-cta .cta-buy { width: 100%; text-align: center; }
  .iframe-zone {
    --ticket-frame-padding: 0px;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .body-content { padding: 32px 24px 0; }
  .details-row { grid-template-columns: 1fr; }
  .related-section { padding: 0 24px 60px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-buy-bar {
    padding: 12px 20px;
    flex-direction: column;
    gap: 0;
  }
  .sticky-buy-bar .sb-info { display: none; }
  .sticky-buy-bar .sb-price { display: none; }
  .sticky-buy-bar .sb-buy {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .related-card { flex: 0 0 240px; }
}
