/* ============================================
   N.W.A TOUR PAGE - STYLES
   ============================================ */

/* Variables */
:root {
  --nwa-red: #EC1D31;
  --nwa-red-dark: #61060F;
  --nwa-black: #0A0A0A;
  --nwa-black-light: #151515;
  --nwa-white: #ffffff;
  --nwa-gray: rgba(255, 255, 255, 0.7);
  --nwa-gray-dark: rgba(255, 255, 255, 0.4);
}

/* Reset & Base */
.tour-page {
  background-color: var(--nwa-black);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   CURSEUR CUSTOM
   ============================================ */
.custom-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--nwa-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  z-index: 100001;
}

.cursor-ring {
  position: fixed;
  width: 45px;
  height: 45px;
  border: 2px solid var(--nwa-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  z-index: 100000;
}

/* État hover sur éléments cliquables */
.custom-cursor.is-hovering .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

.custom-cursor.is-hovering .cursor-ring {
  width: 60px;
  height: 60px;
  background-color: rgba(236, 29, 49, 0.1);
  border-width: 3px;
}

/* État pressed */
.custom-cursor.is-pressing .cursor-ring {
  transform: translate(-50%, -50%) scale(0.8);
  background-color: rgba(236, 29, 49, 0.2);
}

/* État caché (quand souris sort de la fenêtre) */
.custom-cursor.is-hidden .cursor-dot,
.custom-cursor.is-hidden .cursor-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Masquer le curseur par défaut */
.tour-page,
.tour-page * {
  cursor: none !important;
}

/* Sur mobile/tablette, ne pas afficher le curseur custom */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
  
  .tour-page,
  .tour-page * {
    cursor: auto !important;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.tour-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
  transition: background 0.3s ease;
}

.tour-nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tour-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.tour-nav-logo:hover {
  transform: scale(1.1);
}

.tour-nav-logo svg {
  width: 50px;
  height: 50px;
}

.tour-nav-links {
  display: flex;
  gap: 40px;
}

.tour-nav-link {
  font-family: 'mongoose', sans-serif;
  font-size: 16px;
  color: var(--nwa-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  transition: color 0.3s ease;
}

.tour-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nwa-red);
  transition: width 0.3s ease;
}

.tour-nav-link:hover {
  color: var(--nwa-red);
}

.tour-nav-link:hover::after {
  width: 100%;
}

.cart-button {
  position: relative;
  background: transparent;
  border: 2px solid var(--nwa-red);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: var(--nwa-red);
  transform: scale(1.1);
}

.cart-button svg {
  width: 22px;
  height: 22px;
  color: var(--nwa-white);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--nwa-red);
  color: var(--nwa-white);
  font-family: 'mongoose', sans-serif;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.tour-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tour-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(236, 29, 49, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(236, 29, 49, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--nwa-black) 0%, var(--nwa-black-light) 100%);
}

.tour-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.tour-hero-tribute {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: var(--nwa-gray);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 30px 0;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.tour-hero-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(60px, 15vw, 180px);
  color: var(--nwa-red);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 10px;
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(236, 29, 49, 0.5);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards, titleGlow 3s ease-in-out infinite 1.5s;
}

@keyframes titleGlow {

  0%,
  100% {
    text-shadow: 0 0 80px rgba(236, 29, 49, 0.5);
  }

  50% {
    text-shadow: 0 0 120px rgba(236, 29, 49, 0.8), 0 0 200px rgba(236, 29, 49, 0.3);
  }
}

.tour-hero-subtitle {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(24px, 5vw, 48px);
  color: var(--nwa-white);
  margin: 20px 0 40px 0;
  text-transform: uppercase;
  letter-spacing: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.tour-hero-members {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.tour-hero-members span {
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  color: var(--nwa-gray);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.tour-hero-members .separator {
  color: var(--nwa-red);
  font-size: 14px;
}

.tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--nwa-red);
  color: var(--nwa-white);
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 60px;
  font-family: 'mongoose', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
  position: relative;
  overflow: hidden;
}

.tour-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.tour-cta:hover::before {
  left: 100%;
}

.tour-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(236, 29, 49, 0.5);
}

.tour-cta svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.tour-cta:hover svg {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--nwa-red) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'mongoose', sans-serif;
  font-size: clamp(48px, 10vw, 100px);
  color: var(--nwa-red);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 60px rgba(236, 29, 49, 0.3);
}

.section-subtitle {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 16px;
  color: var(--nwa-gray);
  margin: 15px 0 0 0;
  letter-spacing: 3px;
}

/* ============================================
   DATES SECTION
   ============================================ */
.tour-dates {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--nwa-black-light) 0%, var(--nwa-black) 100%);
}

.dates-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.continent-group {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.continent-group:nth-child(1) {
  animation-delay: 0.1s;
}

.continent-group:nth-child(2) {
  animation-delay: 0.2s;
}

.continent-group:nth-child(3) {
  animation-delay: 0.3s;
}

.continent-group:nth-child(4) {
  animation-delay: 0.4s;
}

.continent-group:nth-child(5) {
  animation-delay: 0.5s;
}

.continent-title {
  font-family: 'mongoose', sans-serif;
  font-size: 28px;
  color: var(--nwa-white);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 0 30px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(236, 29, 49, 0.3);
}

.dates-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.date-card {
  position: relative;
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--nwa-red);
  padding: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.date-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(236, 29, 49, 0.1);
}

.date-card.featured {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(40, 30, 10, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.date-card.featured:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--nwa-black);
  font-family: 'mongoose', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 15px;
  border-radius: 20px;
}

.date-info {
  text-align: center;
  min-width: 80px;
}

.date-day {
  display: block;
  font-family: 'mongoose', sans-serif;
  font-size: 28px;
  color: var(--nwa-red);
  line-height: 1;
}

.date-month {
  display: block;
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 11px;
  color: var(--nwa-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.city-info {
  flex: 1;
}

.city-name {
  font-family: 'mongoose', sans-serif;
  font-size: 22px;
  color: var(--nwa-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.venue {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 13px;
  color: var(--nwa-gray-dark);
  margin-top: 3px;
  display: block;
}

.date-cta {
  background: transparent;
  border: 2px solid var(--nwa-red);
  color: var(--nwa-red);
  font-family: 'mongoose', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.date-cta:hover {
  background: var(--nwa-red);
  color: var(--nwa-white);
}

/* ============================================
   TICKETS SECTION
   ============================================ */
.tickets-section {
  padding: 100px 40px;
  background: var(--nwa-black);
}

.tickets-container {
  max-width: 1200px;
  margin: 0 auto;
}

.city-selector {
  margin-bottom: 50px;
}

.city-selector label {
  display: block;
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  color: var(--nwa-gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.city-selector select {
  width: 100%;
  max-width: 500px;
  padding: 18px 25px;
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 16px;
  color: var(--nwa-white);
  background: var(--nwa-black-light);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC1D31' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
}

.city-selector select:focus {
  outline: none;
  border-color: var(--nwa-red);
  box-shadow: 0 0 20px rgba(236, 29, 49, 0.2);
}

.city-selector select option {
  background: var(--nwa-black);
  color: var(--nwa-white);
  padding: 10px;
}

.city-selector select optgroup {
  font-weight: bold;
  color: var(--nwa-red);
}

.select-city-prompt {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 16px;
  color: var(--nwa-gray-dark);
  text-align: center;
  padding: 60px 20px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.tickets-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ticket-card {
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--nwa-red);
}

.ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.ticket-card.vip {
  border-color: rgba(255, 215, 0, 0.3);
}

.ticket-card.vip::before {
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.ticket-card.vip .ticket-type {
  color: #FFD700;
}

.ticket-type {
  font-family: 'mongoose', sans-serif;
  font-size: 28px;
  color: var(--nwa-red);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.ticket-features li {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: var(--nwa-gray);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-features li::before {
  content: '✓';
  color: var(--nwa-red);
  font-weight: bold;
}

.ticket-price {
  font-family: 'mongoose', sans-serif;
  font-size: 42px;
  color: var(--nwa-white);
  margin: 0 0 25px 0;
}

.ticket-price span {
  font-size: 18px;
  color: var(--nwa-gray-dark);
}

.ticket-date-select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: var(--nwa-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
}

.ticket-date-select:focus {
  outline: none;
  border-color: var(--nwa-red);
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.ticket-quantity span {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: var(--nwa-gray);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--nwa-white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: var(--nwa-red);
  border-color: var(--nwa-red);
}

.quantity-value {
  font-family: 'mongoose', sans-serif;
  font-size: 20px;
  color: var(--nwa-white);
  min-width: 30px;
  text-align: center;
}

.ticket-add {
  width: 100%;
  padding: 18px;
  background: var(--nwa-red);
  border: none;
  border-radius: 10px;
  color: var(--nwa-white);
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ticket-add:hover {
  background: #ff3347;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(236, 29, 49, 0.4);
}

/* ============================================
   MERCH SECTION
   ============================================ */
.merch-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--nwa-black) 0%, var(--nwa-black-light) 100%);
}

.merch-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.merch-card {
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.merch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.merch-card.featured {
  border-color: rgba(255, 215, 0, 0.3);
}

.merch-image {
  height: 250px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(20, 20, 20, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.merch-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
}

.merch-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-placeholder svg {
  width: 100%;
  height: 100%;
  color: var(--nwa-red);
  opacity: 0.5;
}

.merch-info {
  padding: 25px;
}

.merch-name {
  font-family: 'mongoose', sans-serif;
  font-size: 22px;
  color: var(--nwa-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}

.merch-description {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 13px;
  color: var(--nwa-gray-dark);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.merch-options {
  margin-bottom: 15px;
}

.size-select {
  width: 100%;
  padding: 12px 15px;
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: var(--nwa-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC1D31' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.size-select:focus {
  outline: none;
  border-color: var(--nwa-red);
}

.merch-price {
  font-family: 'mongoose', sans-serif;
  font-size: 32px;
  color: var(--nwa-white);
  margin-bottom: 20px;
}

.original-price {
  font-size: 20px;
  color: var(--nwa-gray-dark);
  text-decoration: line-through;
  margin-right: 10px;
}

.sale-price {
  color: #FFD700;
}

.merch-add {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 2px solid var(--nwa-red);
  border-radius: 10px;
  color: var(--nwa-red);
  font-family: 'mongoose', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.merch-add:hover {
  background: var(--nwa-red);
  color: var(--nwa-white);
}

.merch-add.added {
  background: #2ecc71;
  border-color: #2ecc71;
  color: var(--nwa-white);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cart-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.visible {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
  font-family: 'mongoose', sans-serif;
  font-size: 28px;
  color: var(--nwa-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
}

.cart-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.cart-close:hover {
  transform: scale(1.2);
}

.cart-close svg {
  width: 24px;
  height: 24px;
  color: var(--nwa-white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-empty {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 16px;
  color: var(--nwa-gray-dark);
  text-align: center;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.3s ease;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-image svg {
  width: 30px;
  height: 30px;
  color: var(--nwa-red);
  opacity: 0.5;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: 'mongoose', sans-serif;
  font-size: 16px;
  color: var(--nwa-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.cart-item-meta {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 12px;
  color: var(--nwa-gray-dark);
  margin: 0 0 10px 0;
}

.cart-item-price {
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  color: var(--nwa-red);
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--nwa-gray-dark);
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: var(--nwa-red);
}

.cart-footer {
  padding: 25px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.cart-footer.visible {
  display: block;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-total span:first-child {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 16px;
  color: var(--nwa-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cart-total span:last-child {
  font-family: 'mongoose', sans-serif;
  font-size: 32px;
  color: var(--nwa-white);
}

.checkout-btn {
  width: 100%;
  padding: 20px;
  background: var(--nwa-red);
  border: none;
  border-radius: 12px;
  color: var(--nwa-white);
  font-family: 'mongoose', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #ff3347;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(236, 29, 49, 0.4);
}

.checkout-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.tour-footer {
  padding: 80px 40px;
  background: var(--nwa-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo svg {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  width: 60px;
  height: 60px;
}

.footer-logo:hover svg {
  opacity: 1;
}

.footer-tribute {
  font-family: 'Mistral', cursive;
  font-size: 24px;
  color: var(--nwa-gray);
  margin: 0 0 30px 0;
  font-style: italic;
}

.footer-copyright {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 14px;
  color: var(--nwa-gray-dark);
  margin: 0 0 10px 0;
}

.footer-disclaimer {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 12px;
  color: var(--nwa-gray-dark);
  opacity: 0.5;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .tour-nav {
    padding: 15px 20px;
  }

  .tour-nav-links {
    display: none;
  }

  .tour-hero-members {
    gap: 10px;
  }

  .tour-hero-members span {
    font-size: 14px;
  }

  .tour-cta {
    padding: 15px 35px;
    font-size: 16px;
  }

  .tour-dates,
  .tickets-section,
  .merch-section {
    padding: 60px 20px;
  }

  .dates-list {
    grid-template-columns: 1fr;
  }

  .date-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .date-cta {
    width: 100%;
  }

  .tickets-types {
    grid-template-columns: 1fr;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    max-width: 100%;
  }
}

/* ============================================
   ANIMATIONS OBSERVÉES
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}