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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 1rem 0;
  border-bottom: 3px solid rgb(246, 18, 130);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(246, 18, 130, 0.2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: rgb(246, 18, 130);
}

/* Hamburger Menu (Mobile Only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: rgb(246, 18, 130);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  text-align: center;
  color: #ffffff;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-btn {
  display: inline-block;
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.4);
}

.slide-btn:hover {
  background: rgb(226, 8, 120);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 18, 130, 0.6);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dots .dot.active {
  background: rgb(246, 18, 130);
  border-color: rgb(246, 18, 130);
  transform: scale(1.3);
}

/* Date Tabs */
.date-tabs {
  background: #2a2a2a;
  padding: 2rem 0;
  border-bottom: 1px solid #333;
}

.date-tabs-container {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgb(246, 18, 130) #1a1a1a;
}

.date-tabs-container::-webkit-scrollbar {
  height: 8px;
}

.date-tabs-container::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

.date-tabs-container::-webkit-scrollbar-thumb {
  background: rgb(246, 18, 130);
  border-radius: 4px;
}

.date-tabs-container::-webkit-scrollbar-thumb:hover {
  background: rgb(226, 8, 120);
}

.date-card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-right: none;
  color: #ffffff;
  padding: 1.25rem 2rem;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 140px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.date-card:first-child {
  border-left: 2px solid #333;
}

.date-card:last-child {
  border-right: 2px solid #333;
}

.date-card:hover {
  background: #252525;
  border-color: rgb(246, 18, 130);
  z-index: 1;
}

.date-card:hover + .date-card {
  border-left-color: rgb(246, 18, 130);
}

.date-card.active {
  background: rgb(246, 18, 130);
  border-color: rgb(246, 18, 130);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.4);
  z-index: 2;
}

.date-card.active + .date-card {
  border-left-color: rgb(246, 18, 130);
}

.full-schedule-btn {
  text-decoration: none;
  border-right: 2px solid #333;
}

.date-label {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.date-day {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Movies Grid */
.movies-section {
  padding: 2rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: rgb(246, 18, 130);
  text-align: center;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.movie-box {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid #333;
}

.movie-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(246, 18, 130, 0.3);
  border-color: rgb(246, 18, 130);
}

.movie-box .poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #1a1a1a;
}

.movie-box .poster a {
  display: block;
  height: 100%;
}

.movie-box .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.movie-box:hover .poster img {
  transform: scale(1.05);
}

.movie-box .info {
  padding: 1.5rem;
}

.movie-box .title {
  margin-bottom: 0.75rem;
}

.movie-box .title a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s;
}

.movie-box .title a:hover {
  color: rgb(246, 18, 130);
}

.movie-box .meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.movie-box .meta .age-rating {
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  min-width: 28px;
  text-align: center;
  display: inline-block;
}

.movie-box .meta .genre {
  color: rgb(116, 147, 162);
}

.movie-box .times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.movie-box .movie-time {
  display: inline-block;
}

.movie-box .movie-time a {
  display: block;
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}

.movie-box .movie-time a:hover {
  background: rgb(226, 8, 120);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(246, 18, 130, 0.6);
}

.movie-box .movie-time .time em {
  font-style: normal;
  font-size: 1rem;
}

.movie-box .moretimes {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #333;
}

.movie-box .moretimes a {
  color: rgb(116, 147, 162);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.movie-box .moretimes a:hover {
  color: rgb(246, 18, 130);
}

/* Loading State */
.loading {
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
  color: rgb(116, 147, 162);
}

.loading::after {
  content: '...';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* Movie Detail Page */
.movie-detail {
  min-height: 60vh;
}

.movie-hero {
  width: 100%;
  height: 400px;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center top;
  position: relative;
  margin-bottom: -100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 1) 100%);
}

.movie-detail-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.movie-detail-poster {
  flex-shrink: 0;
  width: 280px;
}

.movie-detail-poster img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #1a1a1a;
}

.movie-info-section {
  flex: 1;
  max-width: 100%;
}

.movie-detail-extended {
  max-width: 900px;
  margin: 2rem auto 0;
}

.movie-detail-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.movie-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: rgb(116, 147, 162);
}

.movie-detail-meta .age-rating {
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 32px;
  text-align: center;
}

.movie-trailer {
  margin-bottom: 2rem;
}

.movie-trailer h3 {
  color: rgb(246, 18, 130);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-description {
  margin-bottom: 2rem;
}

.movie-description h3 {
  color: rgb(246, 18, 130);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.movie-description p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
}

.movie-additional-info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #2a2a2a;
  border-radius: 8px;
  border: 2px solid #333;
}

.movie-additional-info > div {
  margin-bottom: 0.75rem;
}

.movie-additional-info > div:last-child {
  margin-bottom: 0;
}

.movie-additional-info strong {
  color: rgb(246, 18, 130);
  margin-right: 0.5rem;
}

.movie-additional-info span {
  color: #ffffff;
}

.movie-showtimes-section {
  margin-top: 3rem;
}

.movie-showtimes-section > h3 {
  color: rgb(246, 18, 130);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.showtime-date-group {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #2a2a2a;
  border-radius: 8px;
  border: 2px solid #333;
}

.showtime-date-group h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.showtimes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.showtimes-list .movie-time a {
  display: block;
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 1.1rem;
}

.showtimes-list .movie-time a:hover {
  background: rgb(226, 8, 120);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(246, 18, 130, 0.6);
}

.showtimes-list .movie-time .time em {
  font-style: normal;
}

/* Ticket Prices Page */
.ticket-prices-section {
  padding: 3rem 0;
  min-height: 60vh;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: rgb(246, 18, 130);
  text-align: center;
  font-weight: 700;
}

.ticket-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ticket-category {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #333;
}

.category-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgb(246, 18, 130);
}

.ticket-prices-table {
  overflow-x: auto;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
}

.prices-table thead {
  background: #1a1a1a;
}

.prices-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: rgb(246, 18, 130);
  border-bottom: 2px solid rgb(246, 18, 130);
}

.prices-table th.price-column {
  text-align: right;
  width: 150px;
}

.prices-table tbody tr {
  border-bottom: 1px solid #333;
  transition: background 0.3s;
}

.prices-table tbody tr:hover {
  background: #323232;
}

.prices-table td {
  padding: 1rem;
  color: #ffffff;
}

.ticket-name {
  font-weight: 600;
  color: #ffffff;
  min-width: 200px;
}

.ticket-description {
  color: rgb(116, 147, 162);
  font-size: 0.95rem;
}

.ticket-price {
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgb(246, 18, 130);
  white-space: nowrap;
}

/* Footer */
footer#footer {
  background: #1a1a1a;
  border-top: 3px solid rgb(246, 18, 130);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  color: rgb(116, 147, 162);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: rgb(246, 18, 130);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #ffffff;
}

.footer-col ul li strong {
  color: rgb(246, 18, 130);
}

.footer-col a {
  color: rgb(116, 147, 162);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: rgb(246, 18, 130);
}

.footer-logo {
  margin-top: 1.5rem !important;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  transition: opacity 0.3s;
}

.footer-logo a:hover img {
  opacity: 0.8;
}

.footer-copyright {
  text-align: center;
  padding: 1.5rem 0 1rem;
  border-top: 1px solid #333;
  color: rgb(116, 147, 162);
  font-size: 0.9rem;
}

/* Full Schedule Page */
.full-schedule-section {
  padding: 3rem 0;
  min-height: 60vh;
}

.daily-schedule {
  margin-bottom: 4rem;
}

.date-header {
  font-size: 2rem;
  color: rgb(246, 18, 130);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid rgb(246, 18, 130);
  font-weight: 700;
}

.movies-table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.movie-row {
  display: flex;
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #333;
  transition: all 0.3s;
}

.movie-row:hover {
  border-color: rgb(246, 18, 130);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.2);
}

.movie-poster-cell {
  flex-shrink: 0;
  width: 120px;
  padding: 1rem;
}

.movie-poster-cell a {
  display: block;
  aspect-ratio: 2 / 3;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.movie-poster-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 0.3s;
}

.movie-row:hover .movie-poster-thumb {
  transform: scale(1.05);
}

.movie-info-cell {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.movie-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.movie-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.movie-title a:hover {
  color: rgb(246, 18, 130);
}

.movie-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.movie-meta .age-rating {
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  min-width: 28px;
  text-align: center;
  display: inline-block;
}

.movie-meta .genre,
.movie-meta .length {
  color: rgb(116, 147, 162);
}

.showtimes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.showtime-btn {
  background: rgb(246, 18, 130);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  min-width: 70px;
  text-align: center;
}

.showtime-btn:hover {
  background: rgb(226, 8, 120);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(246, 18, 130, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .date-tabs-container {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .date-card {
    flex: 0 0 auto;
    min-width: 120px;
  }

  .date-tabs-container::-webkit-scrollbar {
    height: 6px;
  }

  .date-tabs-container::-webkit-scrollbar-track {
    background: #1a1a1a;
  }

  .date-tabs-container::-webkit-scrollbar-thumb {
    background: rgb(246, 18, 130);
    border-radius: 3px;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  nav {
    justify-content: center;
    position: relative;
  }

  .logo {
    margin: 0 auto;
  }

  .logo img {
    height: 40px !important;
  }

  .hamburger {
    display: flex;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    padding: 2rem 0;
    gap: 0;
    border-top: 3px solid rgb(246, 18, 130);
    border-bottom: 3px solid rgb(246, 18, 130);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }

  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #333;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .hero-slider {
    height: 350px;
  }

  .date-label {
    font-size: 0.75rem;
  }

  .date-day {
    font-size: 1.1rem;
  }

  .movie-poster-cell {
    width: 80px;
    padding: 0.75rem;
  }

  .movie-poster-cell a {
    aspect-ratio: 2 / 3;
  }

  .movie-poster-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .movie-info-cell {
    padding: 1rem;
    min-width: 150px;
  }

  .movie-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .movie-meta {
    font-size: 0.8rem;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .showtimes {
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .showtime-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    min-width: 60px;
  }

  .page-title {
    font-size: 2rem;
  }

  .ticket-category {
    padding: 1.5rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

  .prices-table th,
  .prices-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .ticket-name {
    min-width: 120px;
  }

  .ticket-price {
    font-size: 1rem;
  }

  .movie-detail-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .movie-detail-poster {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .movie-detail-extended {
    margin-top: 1rem;
  }

  .movie-detail-title {
    font-size: 1.8rem;
  }

  .movie-hero {
    height: 300px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col h3 {
    font-size: 1.2rem;
  }

  .footer-logo img {
    max-width: 150px;
  }
}

/* ============================================
   AUTHENTICATION STYLES
   ============================================ */

/* Desktop User Menu */
.user-menu-desktop {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.user-dropdown {
  position: relative;
}

.user-btn,
.login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(246, 18, 130);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  font-family: inherit;
}

.user-btn:hover,
.login-btn:hover {
  background: rgb(226, 8, 120);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 18, 130, 0.6);
}

.user-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #2a2a2a;
  border: 2px solid rgb(246, 18, 130);
  border-radius: 8px;
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  color: #ffffff;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background: #333;
}

.dropdown-item.user-email {
  color: rgb(116, 147, 162);
  font-size: 0.9rem;
  cursor: default;
}

.dropdown-item.user-email:hover {
  background: transparent;
}

.dropdown-item.warning {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-item.warning:hover {
  background: rgba(255, 152, 0, 0.15);
}

.verify-link {
  background: rgb(246, 18, 130);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s;
  font-family: inherit;
}

.verify-link:hover {
  background: rgb(226, 8, 120);
}

.dropdown-item.logout {
  color: #ff5252;
  font-weight: 600;
}

.dropdown-item.logout:hover {
  background: rgba(255, 82, 82, 0.1);
}

.dropdown-divider {
  height: 1px;
  background: #333;
  margin: 0.5rem 0;
}

/* Mobile User Menu */
.mobile-user-menu {
  display: none;
}

.user-menu-mobile {
  padding: 1.5rem 2rem;
  background: #252525;
  border-bottom: 2px solid rgb(246, 18, 130);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.user-info .user-icon {
  width: 32px;
  height: 32px;
  color: rgb(246, 18, 130);
}

.unverified-badge {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.logout-btn-mobile,
.login-btn-mobile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgb(246, 18, 130);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
  font-family: inherit;
}

.logout-btn-mobile {
  background: #ff5252;
}

.logout-btn-mobile:hover,
.login-btn-mobile:hover {
  opacity: 0.9;
}

.login-btn-mobile svg {
  width: 24px;
  height: 24px;
}

/* Authentication Modal */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  overflow-y: auto;
}

.auth-modal {
  background: #2a2a2a;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  border: 2px solid rgb(246, 18, 130);
  box-shadow: 0 10px 40px rgba(246, 18, 130, 0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 1;
}

.auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(246, 18, 130);
}

.auth-form {
  padding: 2.5rem;
}

.auth-form h2 {
  color: rgb(246, 18, 130);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: rgb(246, 18, 130);
  box-shadow: 0 0 0 3px rgba(246, 18, 130, 0.1);
}

.form-group small {
  display: block;
  color: rgb(116, 147, 162);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-error {
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid #ff5252;
  color: #ff5252;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
  color: #4caf50;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.auth-btn {
  width: 100%;
  background: rgb(246, 18, 130);
  color: #ffffff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  margin-bottom: 1rem;
}

.auth-btn:hover:not(:disabled) {
  background: rgb(226, 8, 120);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.6);
}

.auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-btn.secondary {
  background: #1a1a1a;
  border: 2px solid rgb(246, 18, 130);
}

.auth-btn.secondary:hover:not(:disabled) {
  background: #252525;
}

.auth-btn.tertiary {
  background: transparent;
  border: 2px solid #333;
  color: rgb(116, 147, 162);
}

.auth-btn.tertiary:hover {
  background: rgb(246, 18, 130);
  border-color: rgb(246, 18, 130);
  color: #ffffff;
  transform: none;
  box-shadow: none;
}

.auth-switch {
  text-align: center;
  color: rgb(116, 147, 162);
  font-size: 0.95rem;
}

.auth-link {
  background: none;
  border: none;
  color: rgb(246, 18, 130);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  padding: 0;
  margin-left: 0.25rem;
  font-family: inherit;
  transition: color 0.3s;
}

.auth-link:hover {
  color: rgb(226, 8, 120);
}

/* Email Verification */
.auth-form.verification {
  text-align: center;
}

.verification-content {
  max-width: 400px;
  margin: 0 auto;
}

.verification-icon {
  width: 80px;
  height: 80px;
  color: rgb(246, 18, 130);
  margin: 0 auto 1.5rem;
  display: block;
}

.verification-text {
  color: rgb(116, 147, 162);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.verification-text strong {
  color: #ffffff;
}

.verification-message {
  background: rgba(246, 18, 130, 0.1);
  border: 1px solid rgb(246, 18, 130);
  color: rgb(246, 18, 130);
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.verification-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.verification-polling {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgb(116, 147, 162);
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(246, 18, 130, 0.05);
  border-radius: 6px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-top-color: rgb(246, 18, 130);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .user-menu-desktop {
    display: none;
  }

  .mobile-user-menu {
    display: block;
  }

  .auth-form {
    padding: 2rem 1.5rem;
  }

  .auth-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .auth-modal {
    margin: auto;
  }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

.booking-section {
  padding: 3rem 0;
  min-height: 80vh;
}

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid #333;
  transition: all 0.3s;
}

.progress-step.active .step-number {
  background: rgb(246, 18, 130);
  color: #ffffff;
  border-color: rgb(246, 18, 130);
  box-shadow: 0 0 0 4px rgba(246, 18, 130, 0.2);
}

.progress-step.completed .step-number {
  background: rgb(76, 175, 80);
  color: #ffffff;
  border-color: rgb(76, 175, 80);
}

.step-label {
  font-size: 0.9rem;
  color: #999;
  font-weight: 600;
}

.progress-step.active .step-label {
  color: rgb(246, 18, 130);
}

.progress-line {
  width: 80px;
  height: 2px;
  background: #333;
  margin: 0 0.5rem;
  transition: all 0.3s;
}

.progress-line.active {
  background: rgb(246, 18, 130);
}

.loading-overlay {
  text-align: center;
  padding: 4rem 2rem;
}

.loading-overlay .spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #333;
  border-top-color: rgb(246, 18, 130);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: spin 0.8s linear infinite;
}

/* Notifications */
.notifications-container {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid;
  min-width: 320px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-enter {
  animation: slideIn 0.3s ease-out;
}

.notification-leave {
  animation: slideOut 0.3s ease-out;
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification-success {
  background: rgba(76, 175, 80, 0.15);
  border-color: #4caf50;
  color: #4caf50;
}

.notification-error {
  background: rgba(255, 82, 82, 0.15);
  border-color: #ff5252;
  color: #ff5252;
}

.notification-warning {
  background: rgba(255, 152, 0, 0.15);
  border-color: #ff9800;
  color: #ff9800;
}

.notification-info {
  background: rgba(33, 150, 243, 0.15);
  border-color: rgb(33, 150, 243);
  color: rgb(33, 150, 243);
}

.notification-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: currentColor;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .notifications-container {
    top: 70px;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .notification {
    min-width: auto;
  }
}

.show-info-card {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 2px solid rgb(246, 18, 130);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.2);
}

.show-info-card h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.show-details {
  display: flex;
  gap: 2rem;
  color: rgb(116, 147, 162);
  font-size: 1.1rem;
}

.booking-step {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 2.5rem;
  border: 2px solid #333;
}

.booking-step h3 {
  color: rgb(246, 18, 130);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.login-prompt {
  background: rgba(246, 18, 130, 0.1);
  border: 1px solid rgb(246, 18, 130);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

.login-prompt a {
  color: rgb(246, 18, 130);
  font-weight: 600;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.invoice-fields {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: rgb(246, 18, 130);
  color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  background: rgb(226, 8, 120);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.6);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #333;
}

.btn-secondary:hover {
  background: #252525;
  border-color: rgb(246, 18, 130);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

.booking-type-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.booking-type-selector button {
  flex: 1;
  max-width: 200px;
  padding: 1rem 2rem;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-family: inherit;
}

.booking-type-selector button.active {
  background: rgb(246, 18, 130);
  border-color: rgb(246, 18, 130);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.4);
}

.seatmap-container {
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.seatmap-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.seat-icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 2px solid #333;
}

.seat-icon.available {
  background: #4caf50;
  border-color: #4caf50;
}

.seat-icon.selected {
  background: rgb(33, 150, 243);
  border-color: rgb(33, 150, 243);
}

.seat-icon.occupied {
  background: #ff5252;
  border-color: #ff5252;
}

.seat-icon.locked {
  background: #ff9800;
  border-color: #ff9800;
}

.seatmap {
  max-width: 800px;
  margin: 0 auto;
}

.seatmap-zone {
  margin-bottom: 2rem;
}

.seatmap-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.row-label {
  min-width: 30px;
  text-align: right;
  color: rgb(116, 147, 162);
  font-weight: 600;
}

.seat {
  width: 36px;
  height: 36px;
  border-radius: 6px 6px 2px 2px;
  border: 2px solid #333;
  background: #4caf50;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.seat:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.5);
}

.seat.selected {
  background: rgb(33, 150, 243);
  border-color: rgb(33, 150, 243);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.5);
}

.seat.occupied {
  background: #ff5252;
  border-color: #ff5252;
  cursor: not-allowed;
}

.seat.locked {
  background: #ff9800;
  border-color: #ff9800;
  cursor: not-allowed;
}

.seat.disabled {
  background: #333;
  border-color: #333;
  color: #666;
  cursor: not-allowed;
}

.seat-spacer {
  width: 36px;
  height: 36px;
}

.selected-seats-info {
  background: rgba(33, 150, 243, 0.1);
  border: 2px solid rgb(33, 150, 243);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.selected-seats-info h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.selected-seats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seat-badge {
  background: rgb(33, 150, 243);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.lock-timer {
  background: rgba(255, 152, 0, 0.1);
  border: 2px solid #ff9800;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
}

.lock-timer p {
  color: #ff9800;
  font-weight: 600;
  margin: 0;
}

.step-description {
  color: rgb(116, 147, 162);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.concession-categories {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s;
  font-family: inherit;
}

.category-btn.active {
  background: rgb(246, 18, 130);
  border-color: rgb(246, 18, 130);
}

.category-btn:hover {
  border-color: rgb(246, 18, 130);
}

/* Category-based view (when "Összes" is selected) */
.concession-products-by-category {
  margin-bottom: 2rem;
}

.category-section {
  margin-bottom: 3rem;
}

.category-section:last-child {
  margin-bottom: 2rem;
}

.category-title {
  color: rgb(246, 18, 130);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgb(246, 18, 130);
}

/* Grid view (when specific category is selected) */
.concession-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: rgb(246, 18, 130);
  box-shadow: 0 4px 15px rgba(246, 18, 130, 0.2);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 1rem;
}

.product-info h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.product-description {
  color: rgb(116, 147, 162);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  color: rgb(246, 18, 130);
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-danger {
  background: #ff5252;
  color: #ffffff;
}

.btn-danger:hover {
  background: #ff3838;
}

/* Sticky cart layout */
.concession-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  /* Remove align-items: start to allow sidebar to stretch */
}

.concession-products-container {
  min-width: 0;
  /* Ensure minimum height for sticky to work */
  min-height: 100vh;
  /* Prevent stretching of products container */
  align-self: start;
}

.concession-cart-sidebar {
  /* Allow sidebar to stretch to match products container height */
  /* This is needed so the sticky element has space to move */
  align-self: stretch;
}

.cart-summary-sticky {
  position: sticky;
  top: 100px;
  background: #1a1a1a;
  border: 2px solid rgb(246, 18, 130);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(246, 18, 130, 0.2);
  /* Add will-change for better sticky performance */
  will-change: transform;
}

.cart-summary-sticky h4 {
  color: rgb(246, 18, 130);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
}

.cart-empty p {
  color: rgb(116, 147, 162);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cart-empty span {
  color: #999;
  font-size: 0.9rem;
}

.cart-items-wrapper {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.cart-items-wrapper::-webkit-scrollbar {
  width: 6px;
}

.cart-items-wrapper::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 3px;
}

.cart-items-wrapper::-webkit-scrollbar-thumb {
  background: rgb(246, 18, 130);
  border-radius: 3px;
}

/* Sticky cart items */
.cart-summary-sticky .cart-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #2a2a2a;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.cart-item-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-name span {
  flex: 1;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.btn-remove {
  background: transparent;
  border: none;
  color: #ff5252;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.btn-remove:hover {
  background: rgba(255, 82, 82, 0.2);
  transform: scale(1.1);
}

.cart-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cart-item-price {
  color: rgb(246, 18, 130);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.cart-summary-sticky .cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-summary-sticky .cart-item-controls button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgb(246, 18, 130);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: inherit;
}

.cart-summary-sticky .cart-item-controls button:hover {
  background: rgb(226, 8, 120);
  transform: scale(1.05);
}

.cart-summary-sticky .cart-item-controls span {
  min-width: 32px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.cart-summary-sticky .cart-total {
  border-top: 2px solid rgb(246, 18, 130);
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  color: #ffffff;
}

.cart-summary-sticky .cart-total strong {
  color: rgb(246, 18, 130);
}

.cart-summary {
  background: #1a1a1a;
  border: 2px solid rgb(246, 18, 130);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.cart-summary h4 {
  color: rgb(246, 18, 130);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #2a2a2a;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.cart-total {
  border-top: 2px solid rgb(246, 18, 130);
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: right;
  font-size: 1.3rem;
}

.order-summary {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.order-summary h4 {
  color: rgb(246, 18, 130);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #333;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid rgb(246, 18, 130);
  font-size: 1.5rem;
  color: rgb(246, 18, 130);
}

@media (max-width: 768px) {
  .booking-step {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .progress-line {
    width: 40px;
  }

  .concession-products {
    grid-template-columns: 1fr;
  }

  .seat {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .seat-spacer {
    width: 30px;
    height: 30px;
  }

  /* Progress steps - horizontal scroll on mobile */
  .booking-progress {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .progress-step {
    flex-shrink: 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-label {
    font-size: 0.8rem;
  }

  /* Seatmap - horizontal scroll on mobile */
  .seatmap-container {
    padding: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .seatmap {
    min-width: 600px;
  }

  /* Sticky cart responsive */
  .concession-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .concession-products-container {
    min-height: auto;
  }

  .cart-summary-sticky {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  .cart-items-wrapper {
    max-height: 400px;
  }
}

/* Ticket Types Selection */
.ticket-types-section {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid #333;
}

.ticket-types-section h4 {
  color: rgb(246, 18, 130);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.ticket-types-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.ticket-type-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a2a2a;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  transition: all 0.3s;
}

.ticket-type-item:hover {
  border-color: rgb(246, 18, 130);
}

.ticket-type-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ticket-type-info strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.ticket-type-price {
  color: rgb(246, 18, 130);
  font-weight: 700;
  font-size: 1rem;
}

.ticket-type-desc {
  color: rgb(116, 147, 162);
  font-size: 0.9rem;
}

.ticket-type-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticket-type-controls .btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-type-count {
  width: 70px;
  height: 40px;
  text-align: center;
  padding: 0.5rem;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  line-height: 1;
}

.ticket-type-count:focus {
  outline: none;
  border-color: rgb(246, 18, 130);
}

@media (max-width: 768px) {
  .ticket-type-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ticket-type-controls {
    width: 100%;
    justify-content: center;
  }
}
