/* Panel flottant desktop */
.event-info-panel {
  transition: all 0.3s ease;
}

/* Bottom Navigation Mobile */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e6e7e8;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 1000;
  height: 120px;
}

.event-quick-info {
  padding-right: 15px;
}

.mobile-spacer {
  height: 90px;
}

/* Améliorations responsives */
@media (max-width: 767px) {
  .event-sidepage-section-area .shedule-listarea {
    display: none; /* Cacher le panel sur mobile */
  }

  .event-sidepage-section-area .event-side-images {
    margin-bottom: 2rem;
  }

  /* Ajuster les colonnes sur mobile */
  .event-sidepage-section-area .event-side-images .row .col-lg-4 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .event-sidepage-section-area .shedule-listarea {
    margin-top: 30px;
    padding: 0;
  }

  .mobile-bottom-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }

  .mobile-spacer {
    display: none;
  }

  /* Améliorer le sticky sur desktop */
  .event-info-panel {
    position: sticky;
    top: 2rem;
    z-index: 10;
  }
}

/* Améliorer l'apparence du bouton dans le bottom nav */
.mobile-bottom-nav .vl-btn1 {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  min-height: auto;
}

/* Animation d'apparition du bottom nav */
.mobile-bottom-nav {
  animation: slideUp 0.3s ease-out;
}

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





/* modal payment */
.payment-modal .modal-content {
		border-radius: 16px;
		border: none;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
		overflow: hidden;
	}

	/* Animation d'entrée du logo */
	.animated-logo {
		opacity: 0;
		transform: translateY(-20px);
		animation: fadeInDown 0.6s forwards 0.2s;
	}

	/* Animation d'entrée du titre */
	.animated-title {
		opacity: 0;
		transform: translateY(-10px);
		animation: fadeInDown 0.5s forwards 0.3s;
		font-weight: 600;
	}

	.animated-subtitle {
		opacity: 0;
		transform: translateY(-10px);
		animation: fadeInDown 0.5s forwards 0.4s;
	}

	/* Animation des éléments */
	.animated-item {
		opacity: 0;
		transform: translateY(20px);
		animation: fadeInUp 0.5s forwards;
	}

	/* Style des cards */
	.payment-modal .card {
		border-radius: 12px;
		transition: all 0.3s ease;
	}

	.payment-modal .card:hover {
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	}

	/* Style des accordion items */
	.payment-option {
		border-radius: 10px;
		overflow: hidden;
		border: 1px solid rgba(0, 0, 0, 0.1);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
		transition: all 0.3s ease;
	}

	.payment-option:hover {
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	}

	/* Style des en-têtes de l'accordéon */
	.payment-header {
		padding: 15px 20px;
		background-color: #f8f9fa;
		transition: all 0.3s ease;
	}

	.payment-header:not(.collapsed) {
		background-color: rgba(13, 110, 253, 0.08);
		color: #0d6efd;
		font-weight: 500;
		box-shadow: none;
	}

	.payment-header::after {
		transition: transform 0.35s ease;
	}

	/* Styliser les détails de paiement */
	.payment-details {
		padding: 15px 20px;
	}

	/* Styliser l'en-tête des informations utilisateur */
	.user-info-header {
		padding: 15px 20px;
	}

	.user-info-toggle {
		padding: 0;
		color: #6c757d;
		transition: all 0.3s ease;
	}

	.user-info-toggle[aria-expanded="false"] .bi-chevron-up::before {
		content: "\f282"; /* Code Bootstrap Icon pour chevron-down */
	}

	/* Styliser les boutons */
	.payment-btn {
		border-radius: 10px;
		font-weight: 500;
		padding: 14px 20px;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
		background: linear-gradient(45deg, #0d6efd, #0a58ca);
		border: none;
		box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
	}

	.payment-btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
	}

	.payment-btn:active {
		transform: translateY(1px);
	}

	/* Animation du bouton lors du clic */
	.payment-btn.processing {
		pointer-events: none;
	}

	.payment-btn.processing .btn-text {
		opacity: 0.7;
	}

	.payment-btn.processing .spinner-border {
		display: inline-block !important;
	}


	/* Animation de la banque details */
	.bank-details {
		position: relative;
		overflow: hidden;
		border-radius: 8px;
	}

	.bank-details::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 50%;
		height: 100%;
		background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.5) 50%,
		rgba(255, 255, 255, 0) 100%
		);
		animation: shine 3s infinite;
	}

	/* Styles pour les inputs flottants */
	.form-floating>.form-control {
		padding: 1.2rem 0.75rem;
		border-radius: 8px;
	}

	.form-floating>.form-control:focus {
		border-color: #86b7fe;
		box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
	}


	/* Animations keyframes */
	@keyframes fadeInDown {
		from {
		opacity: 0;
		transform: translateY(-20px);
		}
		to {
		opacity: 1;
		transform: translateY(0);
		}
	}

	@keyframes fadeInUp {
		from {
		opacity: 0;
		transform: translateY(20px);
		}
		to {
		opacity: 1;
		transform: translateY(0);
		}
	}

	@keyframes circle-draw {
		to {
		stroke-dashoffset: 0;
		}
	}

	@keyframes check-draw {
		to {
		stroke-dashoffset: 0;
		}
	}

	@keyframes shine {
		0% {
		left: -100%;
		}
		20% {
		left: 100%;
		}
		100% {
		left: 100%;
		}
	}

	/* Media queries pour le responsive */
	@media (max-width: 767px) {
		.payment-modal .modal-dialog {
		margin: 0.5rem;
		}

		.modal-body {
		padding: 1rem;
		}

		.row {
		margin-right: -10px;
		margin-left: -10px;
		}

		.payment-col {
		margin-top: 1rem;
		}

		/* Style amélioré pour le collapsible sur mobile */
		.user-info-toggle {
		font-size: 1.2rem;
		padding: 0.25rem 0.5rem;
		}

		.user-info-header {
		background-color: #f8f9fa;
		}
	}
.performer-card {
border: 1px solid #f0f0f0;
border-radius: 12px;
transition: all 0.3s ease;
background: #fff;
}

.performer-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.event-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  position: relative;
}

.event-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.event-content {
  position: relative;
  z-index: 1;
}

.ticket-selector {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
}

.ticket-selector:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quantity-input {
  border: 1px solid #ddd;
  border-radius: 8px;
}



.event-info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

.info-item {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
  border-bottom: none;
}


@media (max-width: 991.98px) {
  .event-hero {
    min-height: 250px;
  }
}



/* checkout  */
