/* BiletDunyam - Bilet Satış Sitesi */
:root {
  --primary: #e31837;
  --primary-dark: #c41430;
  --secondary: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --border: #e0e0e0;
  --bg-light: #f8f9fa;
  --white: #fff;
  --success: #28a745;
  --badge-cheapest: #28a745;
  --badge-popular: #ffc107;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.header-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
}
.nav-link:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--bg-light);
  min-width: 220px;
}
.search-box input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 500;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 4px;
  display: none;
  z-index: 100;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
}
.dropdown-menu a:hover { background: var(--bg-light); }

/* Main content */
.main-content {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 20px;
  width: 100%;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: #999; }

/* Event hero */
.event-hero {
  margin-bottom: 28px;
}
.event-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.event-meta span { display: flex; align-items: center; gap: 6px; }

/* Layout: filters + tickets */
.event-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .event-layout { grid-template-columns: 1fr; }
}

/* Filters sidebar */
.filters-sidebar {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 80px;
}
.filters-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.filter-group {
  margin-bottom: 20px;
}
.filter-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--white);
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}
.filter-check input { width: 18px; height: 18px; }
.filter-categories .cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  cursor: pointer;
}
.filter-categories .cat-item:hover { color: var(--primary); }
.filter-categories .cat-item strong { color: var(--primary); }
.filters-sidebar .btn { width: 100%; margin-top: 12px; }

/* Toolbar */
.ticket-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.ticket-toolbar .btn { padding: 8px 16px; font-size: 0.9rem; }

/* Ticket cards grid */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ticket-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  transition: box-shadow .2s;
}
.ticket-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
@media (max-width: 600px) {
  .ticket-card { grid-template-columns: 1fr; }
}
.ticket-card.sold-out {
  opacity: 0.7;
  background: var(--bg-light);
}
.ticket-card.sold-out .btn { pointer-events: none; opacity: 0.6; }

.ticket-info { display: flex; gap: 12px; align-items: flex-start; }
.ticket-info .ticket-content { flex: 1; min-width: 0; }
.ticket-card-img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

.ticket-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.ticket-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.badge-cheapest { background: #d4edda; color: #155724; }
.badge-popular { background: #fff3cd; color: #856404; }
.badge-last { background: #f8d7da; color: #721c24; }
.ticket-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}
.ticket-meta span { margin-right: 12px; }
.ticket-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
}
.ticket-price .old { font-size: 0.9rem; color: #999; text-decoration: line-through; margin-left: 6px; }
.ticket-card .btn { white-space: nowrap; }

/* Alerts / Uyarılar */
.alert-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.alert-box a { color: var(--primary); font-weight: 600; }
.alert-list { margin: 12px 0 0 20px; }
.alert-list li { margin-bottom: 4px; }

/* Kurumsal talep */
.corporate-form {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  max-width: 600px;
}
.corporate-form h2 { font-size: 1.25rem; margin-bottom: 20px; }
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
}
.form-group textarea { min-height: 80px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* Öne Çıkan Etkinlikler */
.featured-events {
  background: #f5f5f5;
  padding: 32px 20px 40px;
}
.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 24px;
}
.featured-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.featured-scroll::-webkit-scrollbar { height: 6px; }
.featured-scroll::-webkit-scrollbar-track { background: #e0e0e0; border-radius: 3px; }
.featured-scroll::-webkit-scrollbar-thumb { background: #999; border-radius: 3px; }
.featured-card {
  flex: 0 0 280px;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  scroll-snap-align: start;
  transition: transform .2s, box-shadow .2s;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.featured-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-card-body {
  padding: 16px;
}
.featured-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.3;
}
.featured-loc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.featured-datetime {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.featured-price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
}
.featured-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.featured-avail {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}
.featured-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), #6b21a8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/* Yaklaşan etkinlikler */
.upcoming-events {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.upcoming-events h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upcoming-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.upcoming-item:hover { border-color: var(--primary); }
.upcoming-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.upcoming-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.upcoming-item p { font-size: 0.85rem; color: var(--text-light); }

/* Footer */
.site-footer {
  background: var(--secondary);
  color: #ccc;
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #444;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.2rem; }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 { font-size: 1.25rem; }
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.modal-body { padding: 24px; }
.modal-body .form-group { margin-bottom: 16px; }
.modal-body .btn { width: 100%; padding: 12px; margin-top: 8px; }
.divider {
  text-align: center;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
}
.google-btn:hover { background: var(--bg-light); }
.link-footer { text-align: center; margin-top: 16px; font-size: 0.9rem; }
.link-footer a { color: var(--primary); font-weight: 600; }

/* Bilet Sat modal - larger */
.modal.modal-lg { max-width: 560px; }
.modal-body .form-row { grid-template-columns: 1fr 1fr; }

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: #ccc;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1500;
  font-size: 0.85rem;
}
.cookie-bar a { color: #8ab4f8; }
.cookie-bar .btn { padding: 8px 16px; font-size: 0.9rem; }

/* Checkout Stepper */
.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 20px 32px;
  margin-bottom: 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-step .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.checkout-step .step-label {
  font-size: 0.9rem;
  color: #999;
}
.checkout-step.done .step-num {
  background: var(--primary);
  color: #fff;
}
.checkout-step.done .step-label {
  color: var(--text);
}
.checkout-step.active .step-num {
  background: var(--secondary);
  color: #fff;
}
.checkout-step.active .step-label {
  color: var(--secondary);
  font-weight: 600;
}
.step-line {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 4px;
}
.step-line.done {
  background: var(--primary);
}
@media (max-width: 600px) {
  .checkout-stepper { flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
  .step-line { display: none; }
  .checkout-step .step-label { display: none; }
}

/* Stadyum - tribün + koltuk seçimi */
.modal.modal-stadium { max-width: 960px; width: 100%; }
.modal.modal-personal-info { max-width: 520px; width: 100%; }
.stadium-modal-body { max-height: 90vh; overflow-y: auto; background: #fff; padding-bottom: 24px; }
.stadium-breadcrumb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.stadium-tribun-wrap {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  border: none;
}
.stadium-img-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.stadium-tribun-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.stadium-overlay-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.stadium-overlay-svg .stadium-area {
  pointer-events: auto;
  cursor: pointer;
  transition: fill .15s;
}
.stadium-overlay-svg .stadium-area:hover {
  fill: rgba(227,24,55,0.2) !important;
}
.stadium-overlay-svg .stadium-area.selected {
  fill: rgba(227,24,55,0.25) !important;
  stroke: #e31837;
  stroke-width: 2px;
}
.stadium-svg-wrap {
  position: relative;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: visible;
  margin-bottom: 16px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stadium-svg-wrap .stadium-map-svg,
.stadium-svg-wrap svg.stadium-map-svg {
  width: 100% !important;
  height: auto !important;
  max-height: 620px !important;
  min-width: 380px;
  display: block;
}
.stadium-hint {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 12px;
}
.stadium-picker-panel .selected-section-info {
  margin-bottom: 12px;
  padding: 10px;
  background: #f0f0f0;
  border-radius: 8px;
}
.stadium-picker-panel {
  padding: 20px;
  overflow: visible;
}
.stadium-picker-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.stadium-picker-panel .seat-select-wrap { margin-top: 12px; }
.stadium-picker-panel .btn-seat-toggle {
  min-width: 220px;
  padding: 12px 16px;
  font-size: 1rem;
}
.stadium-picker-panel .seat-dropdown {
  margin-top: 12px;
  padding: 16px;
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: none;
}
.stadium-picker-panel .seat-dropdown-hint {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.stadium-picker-panel .seat-select-wrap.seat-dropdown-open .seat-dropdown {
  display: block;
}
.stadium-picker-panel .seat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stadium-picker-panel .seat-select-wrap .seat-grid { margin: 0; }
.stadium-picker-panel .seat {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 8px;
  border: 2px solid #ddd;
  background: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stadium-picker-panel .seat:not(:disabled):hover {
  border-color: var(--primary);
  background: #fff5f6;
}
.stadium-picker-panel .seat.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.stadium-picker-panel .seat .seat-star {
  display: none;
  margin-left: 3px;
  font-size: 0.9em;
}
.stadium-picker-panel .seat.selected .seat-star {
  display: inline;
}
.stadium-picker-panel .seat:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f5f5f5;
}
.stadium-section-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}
.stadium-svg-wrapper {
  position: relative;
  background: #f5f7fa;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde4eb;
  margin-bottom: 16px;
}
.stadium-zoom-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.stadium-zoom-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #c5d0dc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.stadium-zoom-btn:hover {
  border-color: var(--primary);
  background: #fff5f6;
  color: var(--primary);
}
.stadium-svg-inner {
  overflow: auto;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.stadium-svg-inner svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.stadium-svg-loading {
  padding: 48px 24px;
  color: var(--text-light);
}
.stadium-load-error {
  padding: 24px;
  color: #c00;
}
.stadium-pro {
  background: linear-gradient(180deg, #e8eef4 0%, #f5f7fa 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid #dde4eb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.stadium-grid { display: flex; flex-direction: column; gap: 0; }
.stadium-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.stadium-row-label { padding: 4px 0; }
.stadium-compass-label {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5a6c7d;
}
.stadium-side-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #5a6c7d;
  min-width: 32px;
  text-align: center;
  padding: 0 8px;
}
.stadium-row-sides { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; }
.stadium-row-sections { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; flex: 1; }
.stadium-pitch-row { padding: 12px 0; }
.stadium-pitch-box {
  width: 100%;
  min-height: 70px;
  background: linear-gradient(180deg, #2d7a3e 0%, #1e5a2a 100%);
  border-radius: 8px;
  border: 2px solid #174d22;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}
.stadium-pitch-box span {
  color: rgba(255,255,255,.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.stadium-section {
  padding: 10px 14px;
  border: 1px solid #c5d0dc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.75rem;
  text-align: center;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 72px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.stadium-section:hover {
  border-color: var(--primary);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227,24,55,.2);
}
.stadium-section.vip {
  background: linear-gradient(135deg, #4a235a 0%, #6b2d5c 50%, #5a2550 100%);
  color: #fff;
  border-color: #3d1e48;
  box-shadow: 0 2px 8px rgba(107,45,92,.4);
}
.stadium-section.vip:hover {
  background: linear-gradient(135deg, #5a2d6a 0%, #7b3d6c 50%, #6a3560 100%);
  box-shadow: 0 4px 14px rgba(107,45,92,.5);
}
.stadium-section.premium {
  background: linear-gradient(135deg, #1a5276 0%, #2471a3 100%);
  color: #fff;
  border-color: #1a5276;
}
.stadium-section.premium:hover {
  background: linear-gradient(135deg, #2471a3 0%, #3498db 100%);
}
.sec-num { font-weight: 800; font-size: 0.85rem; }
.sec-price { font-size: 0.7rem; font-weight: 600; opacity: .95; }
.sec-count { font-size: 0.65rem; opacity: .85; }
.stadium-section.vip .sec-price,
.stadium-section.vip .sec-count,
.stadium-section.premium .sec-price,
.stadium-section.premium .sec-count { opacity: .9; }
.stadium-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #dde4eb;
  font-size: 0.8rem;
  color: var(--text-light);
}
.leg-item { display: flex; align-items: center; gap: 6px; }
.leg-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #c5d0dc;
}
.leg-swatch.vip { background: linear-gradient(135deg, #4a235a, #6b2d5c); border-color: #3d1e48; }
.leg-swatch.premium { background: linear-gradient(135deg, #1a5276, #2471a3); border-color: #1a5276; }
.badge-vip { background: #6b2d5c; color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; }
.btn-back-map { margin-top: 12px; }
.seat-picker { background: var(--bg-light); padding: 20px; border-radius: 12px; margin-top: 16px; }
.seat-picker h4 { margin-bottom: 8px; }
.seat-hint { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.seat-grid { display: inline-flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.seat-row { display: flex; gap: 4px; justify-content: center; }
.seat {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all .2s;
}
.seat:hover { border-color: var(--primary); background: #fff5f6; }
.seat.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.seat-summary { margin-bottom: 12px; font-size: 0.95rem; }
.btn-confirm-seats { margin-top: 8px; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-muted { color: var(--text-light); }
.e-ticket-logo, .passo-logo { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

/* ========== MOBİL UYUMLULUK ========== */
@media (max-width: 1024px) {
  .header-top { padding: 12px 16px; gap: 12px; }
  .header-nav { gap: 16px; }
  .search-box { min-width: 160px; }
  .main-content { padding: 20px 16px; }
  .event-layout { gap: 20px; }
  .filters-sidebar { position: static; top: auto; }
  .featured-card { flex: 0 0 260px; min-width: 240px; }
  .stadium-svg-wrap .stadium-map-svg,
  .stadium-svg-wrap svg.stadium-map-svg { min-width: 320px; }
}

@media (max-width: 768px) {
  .admin-wrap { padding: 16px 12px 32px; }
  .admin-header { flex-direction: column; align-items: stretch; gap: 12px; }
  .admin-header > div { flex-wrap: wrap; }
  .admin-card { padding: 18px 16px; }
  .admin-table th, .admin-table td { padding: 10px 8px; font-size: 0.9rem; }
  .header-top {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .header-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .header-actions {
    margin-left: auto;
    flex-shrink: 0;
  }
  .search-box {
    min-width: 120px;
    flex: 1;
    max-width: 180px;
  }
  .header-actions .btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  .logo { font-size: 1.25rem; }
  .main-content { padding: 16px 12px 24px; }
  .event-hero h1 { font-size: 1.35rem; line-height: 1.3; }
  .event-meta { font-size: 0.875rem; gap: 12px; }
  .breadcrumb { font-size: 0.8rem; margin-bottom: 16px; }
  .alert-box { padding: 12px 14px; font-size: 0.875rem; margin-bottom: 16px; }
  .ticket-card {
    padding: 14px 16px;
    gap: 14px;
  }
  .ticket-card-img { width: 64px; height: 48px; }
  .ticket-info h4 { font-size: 0.95rem; }
  .ticket-price { font-size: 1.1rem; }
  .ticket-card .btn { padding: 10px 16px; font-size: 0.9rem; }
  .featured-events { padding: 24px 12px 32px; }
  .featured-title { font-size: 1.25rem; margin-bottom: 20px; }
  .featured-card { flex: 0 0 240px; min-width: 220px; }
  .featured-card-img { height: 140px; }
  .featured-card-body { padding: 14px; }
  .featured-card-body h3 { font-size: 0.9rem; }
  .featured-btn { width: 40px; height: 40px; bottom: 10px; right: 10px; font-size: 1.1rem; }
  .upcoming-events { margin-top: 28px; padding-top: 24px; }
  .upcoming-events h2 { font-size: 1.1rem; }
  .upcoming-item { padding: 12px 14px; }
  .footer-inner { padding: 32px 16px 20px; }
  .footer-grid { gap: 24px; margin-bottom: 24px; }
  .modal { max-width: calc(100% - 24px); margin: 12px; }
  .modal.modal-lg,
  .modal.modal-stadium { max-width: calc(100% - 24px); width: calc(100% - 24px); }
  .modal-header, .modal-body { padding: 18px 20px; }
  .modal-body .form-row { grid-template-columns: 1fr; }
  .checkout-stepper { padding: 20px 12px 24px; }
  .stadium-picker-panel .seat {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 0.9rem;
  }
  .stadium-section { min-width: 64px; font-size: 0.7rem; padding: 8px 10px; }
  .sec-num { font-size: 0.75rem; }
  .sec-price, .sec-count { font-size: 0.6rem; }
  .stadium-svg-wrap { min-height: 360px; }
  .stadium-svg-wrap .stadium-map-svg,
  .stadium-svg-wrap svg.stadium-map-svg { min-width: 280px; max-height: 400px; }
  .stadium-svg-inner { max-height: 55vh; min-height: 320px; }
  .corporate-form { padding: 20px 16px; margin: 20px 0; }
}

@media (max-width: 480px) {
  .header-top { padding: 10px 12px; }
  .header-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 10px;
  }
  .header-nav .dropdown-toggle,
  .header-nav .nav-link {
    padding: 10px 12px;
    font-size: 0.9rem;
    background: var(--bg-light);
    border-radius: 8px;
  }
  .header-actions {
    gap: 8px;
  }
  .search-box {
    display: none;
  }
  .header-actions .btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  .main-content { padding: 12px 10px 20px; }
  .event-hero h1 { font-size: 1.2rem; }
  .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; }
  .breadcrumb span { display: none; }
  .ticket-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 12px;
  }
  .ticket-info { flex-direction: column; }
  .ticket-card-img { width: 100%; height: 120px; border-radius: 8px; }
  .ticket-price {
    text-align: left;
    font-size: 1.25rem;
  }
  .ticket-card .btn { width: 100%; }
  .featured-card { flex: 0 0 200px; min-width: 180px; }
  .featured-card-img { height: 120px; }
  .featured-card-body h3 { font-size: 0.85rem; }
  .upcoming-num { width: 28px; height: 28px; font-size: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal {
    max-height: 90vh;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
  .modal.modal-stadium { border-radius: 16px 16px 0 0; }
  .modal-header { padding: 16px 20px; }
  .modal-body { padding: 20px; }
  .checkout-step .step-num { width: 28px; height: 28px; font-size: 0.8rem; }
  .stadium-picker-panel .seat {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 0.85rem;
  }
  .stadium-row-sections { gap: 6px; }
  .stadium-section { min-width: 56px; padding: 6px 8px; font-size: 0.65rem; }
  .btn { padding: 12px 18px; min-height: 44px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .logo { font-size: 1.1rem; }
  .header-actions .btn { padding: 8px 10px; font-size: 0.8rem; }
  .featured-card { flex: 0 0 170px; min-width: 160px; }
}
