/* ==========================================================================
   QUAI 36 BOOKING 2 - COMPOSANTS UI ULTRA-PREMIUM
   ========================================================================== */

/* --- BARRE DE NAVIGATION (HEADER) --- */

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-symbol {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-deep);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px var(--gold-glow);
  letter-spacing: -0.5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 600;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bg-glass-heavy);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-subtle);
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: all var(--transition-normal);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(255, 255, 255, 0.04);
	padding: 0.25rem 0.35rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	max-width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
	display: none;
}

.nav-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all var(--transition-fast);
}

.nav-link-btn:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.06);
}

.nav-link-btn.active {
	color: #FDE68A;
	background: rgba(229, 169, 60, 0.14);
	border: 1px solid rgba(229, 169, 60, 0.35);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.nav-toggle-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-gold);
	color: var(--gold-400);
	cursor: pointer;
	transition: all var(--transition-fast);
	padding: 0;
}

.nav-toggle-btn:hover {
	background: rgba(229, 169, 60, 0.16);
	color: #FFF;
}

@keyframes navSlideDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsivité de la navigation administrateur */
@media (max-width: 1240px) {
	.nav-toggle-btn {
		display: inline-flex;
	}

	.site-header .nav-links {
		display: none;
	}

	.site-header .nav-links.mobile-open {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr);
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(11, 17, 30, 0.98);
		backdrop-filter: blur(25px);
		-webkit-backdrop-filter: blur(25px);
		border-bottom: 1px solid var(--border-gold);
		border-radius: 0 0 var(--radius-lg) var(--radius-lg);
		box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
		padding: 1.25rem;
		gap: 0.6rem;
		z-index: 999;
		animation: navSlideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}

	.site-header .nav-links.mobile-open .nav-link-btn {
		width: 100%;
		padding: 0.75rem 1rem;
		font-size: 0.88rem;
		border-radius: var(--radius-md);
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.06);
		justify-content: flex-start;
	}

	.site-header .nav-links.mobile-open .nav-link-btn:hover {
		background: rgba(229, 169, 60, 0.12);
		border-color: var(--border-gold);
	}

	.site-header .nav-links.mobile-open .nav-link-btn.active {
		background: rgba(229, 169, 60, 0.2);
		border-color: var(--gold-400);
		color: #FFFFFF;
	}
}

@media (max-width: 768px) {
	.site-header {
		padding: 0.65rem 1rem;
	}

	.site-header .brand-subtitle {
		display: none;
	}

	.site-header .admin-badge-user {
		display: none !important;
	}

	.site-header .nav-links.mobile-open {
		grid-template-columns: 1fr;
		padding: 1rem;
	}
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.contact-pill strong {
  color: var(--gold-400);
}

/* --- BANNIÈRE HERO & FILTRE ÉLÉGANT --- */
.hero-section {
  position: relative;
  padding: 4rem 2rem 3rem 2rem;
  max-width: 1380px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--gold-glow-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, #FDE68A 0%, #E5A93C 55%, #C8821D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* Barre de recherche flottante haut de gamme */
.filter-bar-luxury {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.filter-input-group {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border-subtle);
  text-align: left;
}

.filter-input-group:last-of-type {
  border-right: none;
}

.filter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.filter-field {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

.filter-field option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.btn-search-luxury {
  background: linear-gradient(135deg, #DFA544 0%, #C4821E 100%);
  color: #0C1017;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(196, 130, 30, 0.22);
}

.btn-search-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 130, 30, 0.32);
  background: linear-gradient(135deg, #E8B458 0%, #CE8D2A 100%);
}

/* --- GRILLE DES ESPACES (ROOM CARDS) --- */
.spaces-section {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem 2rem;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.section-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.room-type-tabs {
	display: flex;
	gap: 0.35rem;
	background: var(--bg-surface);
	padding: 0.3rem 0.4rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	max-width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex-wrap: nowrap;
}

.room-type-tabs::-webkit-scrollbar {
	display: none;
}

.tab-btn {
	flex-shrink: 0;
	white-space: nowrap;
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-full);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-secondary);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.tab-btn:hover {
	color: var(--text-primary);
}

.tab-btn.active {
	background: rgba(255, 255, 255, 0.1);
	color: var(--gold-400);
}

.rooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
	gap: 2rem;
	min-height: 400px;
}

/* Carte Espace Individuelle */
.room-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.1);
}

.room-card-image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #000;
}

.room-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-spring);
}

.room-card:hover .room-card-image {
  transform: scale(1.06);
}

.room-badge-status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-available {
  background: #062E22 !important;
  border: 1.5px solid #10B981 !important;
  color: #6EE7B7 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.status-fulltime {
  background: #2F0E0E !important;
  border: 1.5px solid #EF4444 !important;
  color: #FECACA !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.room-card-price-overlay {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: #0B1220;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-400);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.85);
  z-index: 5;
}

.room-card-price-overlay .price-prefix {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.room-card-price-overlay .price-amount {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--gold-400);
  font-family: var(--font-mono);
}

.room-card-price-overlay .price-unit,
.room-card-price-overlay span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #E2E8F0;
}

/* Badge nombre de photos & navigation galerie sur carte */
.room-badge-photos-count {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: #0B111E !important;
  border: 1.5px solid rgba(243, 146, 0, 0.75) !important;
  color: #FFAA22 !important;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.room-card-gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 4;
}

.room-card:hover .room-card-gallery-nav {
  opacity: 1;
}

.gallery-nav-btn {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 180ms ease;
  user-select: none;
}

.gallery-nav-btn:hover {
  background: var(--gold-400);
  color: #000;
  border-color: var(--gold-400);
  transform: scale(1.1);
}

.gallery-dots-indicator {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
  pointer-events: auto;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 200ms ease;
}

.gallery-dot.active {
  background: var(--gold-400);
  width: 16px;
  border-radius: 3px;
}

/* Galerie dans le modal de détails */
.modal-gallery-container {
  margin-bottom: 1.5rem;
}

.modal-gallery-main {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-medium);
  background: #000;
  margin-bottom: 0.75rem;
}

.modal-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease;
}

.modal-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.modal-gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 180ms ease;
  opacity: 0.65;
}

.modal-gallery-thumb.active,
.modal-gallery-thumb:hover {
  border-color: var(--gold-400);
  opacity: 1;
  transform: translateY(-2px);
}

.modal-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.room-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.75rem;
  background: #141B2D;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: #F8FAFC;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.meta-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.room-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-book-action {
  background: linear-gradient(135deg, #DFA544 0%, #C4821E 100%);
  color: #0C1017;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(196, 130, 30, 0.18);
}

.btn-book-action:hover {
  background: linear-gradient(135deg, #E8B458 0%, #CE8D2A 100%);
  box-shadow: 0 6px 18px rgba(196, 130, 30, 0.28);
}

.btn-details-action {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-details-action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-medium);
}

/* --- TIROIR DE RÉSERVATION & SIMULATEUR TEMPS RÉEL (DRAWER) --- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 18, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.booking-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: min(580px, 100vw);
	height: 100%;
	height: 100dvh;
	max-height: 100dvh;
	background: var(--bg-surface);
	border-left: 1px solid var(--border-medium);
	box-shadow: var(--shadow-xl);
	z-index: 200;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 380ms var(--ease-spring), visibility 380ms;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
}

.booking-drawer.open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

.drawer-header {
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--border-subtle);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--bg-surface-elevated);
	flex-shrink: 0;
}

.drawer-header-info h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.2rem;
}

.drawer-header-info p {
	font-size: 0.82rem;
	color: var(--gold-400);
}

.btn-close-drawer {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-fast);
	flex-shrink: 0;
}

.btn-close-drawer:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
}

.drawer-body {
	padding: 2rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	flex: 1 1 auto;
	min-height: 0;
}

.drawer-section-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

/* Configurateur visuel de salle */
.config-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.config-card-option {
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.config-card-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-medium);
}

.config-card-option.selected {
  border-color: var(--gold-400);
  background: var(--gold-glow-subtle);
}

.config-option-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.config-option-cap {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Simulateur de prix en direct */
.quote-summary-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.quote-line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.quote-line-item.discount {
  color: #34D399;
}

.quote-line-item.surcharge {
  color: #FBBF24;
}

.quote-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.75rem 0;
}

.quote-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.quote-total-row .gold-amount {
  color: var(--gold-400);
  font-size: 1.5rem;
}

.drawer-footer {
	padding: 1.25rem 2rem;
	background: var(--bg-surface-elevated);
	border-top: 1px solid var(--border-subtle);
}

.drawer-footer-actions {
	padding: 1.25rem 2rem;
	background: var(--bg-surface-elevated);
	border-top: 1px solid var(--border-subtle);
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.drawer-footer-actions .btn-drawer-cancel {
	flex: 1;
	justify-content: center;
	padding: 0.85rem;
}

.drawer-footer-actions .btn-confirm-submit {
	flex: 2;
	margin-top: 0;
}

.mobile-only {
	display: none !important;
}

.btn-confirm-submit {
  width: 100%;
  background: linear-gradient(135deg, #DFA544 0%, #C4821E 100%);
  color: #0C1017;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(196, 130, 30, 0.22);
}

.btn-confirm-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #E8B458 0%, #CE8D2A 100%);
  box-shadow: 0 8px 22px rgba(196, 130, 30, 0.32);
}

/* --- STUDIO GESTIONNAIRE / BACK-OFFICE --- */
.manager-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.kpi-card-luxury {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}


.kpi-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.kpi-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.kpi-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.kpi-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-glow-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

/* Grille chronologique / Timeline des salles */
.timeline-view-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.timeline-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.timeline-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.timeline-grid {
  display: grid;
  grid-template-columns: 250px repeat(var(--hours-count, 16), minmax(58px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  min-width: 1180px;
}

.timeline-cell {
  background: var(--bg-surface);
  padding: 0.5rem 0.35rem;
  font-size: 0.78rem;
  text-align: center;
  position: relative;
  min-height: 56px;
  height: 56px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.timeline-cell.header {
  background: var(--bg-surface-elevated);
  font-weight: 700;
  color: var(--gold-400);
  font-size: 0.75rem;
  min-height: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.timeline-cell.header.evening-header {
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.45) 0%, rgba(20, 18, 50, 0.7) 100%);
  border-bottom: 2px solid rgba(139, 92, 246, 0.5);
  color: #DDD6FE;
}

.timeline-cell.header.evening-header .evening-sub {
  font-size: 0.62rem;
  color: #A78BFA;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.timeline-cell.cell-available.evening-slot {
  background: rgba(30, 27, 75, 0.18);
}
.timeline-cell.cell-available.evening-slot:hover {
  background: rgba(139, 92, 246, 0.15) !important;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.timeline-cell.cell-available.weekend-slot {
  background: rgba(243, 146, 0, 0.04);
}
.timeline-cell.cell-available.weekend-slot:hover {
  background: rgba(243, 146, 0, 0.12) !important;
  border: 1px solid var(--border-gold);
}

.timeline-cell.header.timeline-header-room {
  justify-content: flex-start;
  text-align: left;
  padding-left: 1.15rem;
  letter-spacing: 0.5px;
}

.timeline-cell.room-name-cell {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 0 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface-elevated);
  min-height: 56px;
  height: 56px;
  box-sizing: border-box;
}

.room-name-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-align: left;
  width: 100%;
  overflow: hidden;
}

.room-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.83rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.room-meta {
  font-size: 0.71rem;
  color: var(--gold-400);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.timeline-slot-badge {
  position: absolute;
  inset: 4px;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slot-confirmed {
  background: var(--status-confirmed-bg);
  border: 1px solid var(--status-confirmed-border);
  color: var(--status-confirmed-text);
}

.slot-option {
  background: var(--status-option-bg);
  border: 1px solid var(--status-option-border);
  color: var(--status-option-text);
}

.slot-fulltime {
  background: repeating-linear-gradient(
    45deg,
    rgba(168, 85, 247, 0.12),
    rgba(168, 85, 247, 0.12) 6px,
    rgba(168, 85, 247, 0.22) 6px,
    rgba(168, 85, 247, 0.22) 12px
  );
  border: 1px solid var(--status-fulltime-border);
  color: var(--status-fulltime-text);
}

/* ==========================================================================
   Vues Avancées du Planning (Semaine & Agenda)
   ========================================================================== */

.planning-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.85rem;
	width: 100%;
}

.planning-view-tabs {
	display: flex;
	gap: 0.35rem;
	background: var(--bg-surface);
	padding: 0.25rem 0.35rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
}

.planning-nav-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.planning-room-select {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-medium);
	color: var(--text-primary);
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-md);
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	outline: none;
}

.planning-room-select:focus {
	border-color: var(--gold-400);
}

.planning-date-badge {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gold-400);
	padding: 0.45rem 0.85rem;
	background: rgba(243, 146, 0, 0.08);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-md);
	white-space: nowrap;
}

/* Grille Matrice Semaine (Tous les espaces x 7 jours) */
.timeline-week-grid {
	display: grid;
	grid-template-columns: 240px repeat(7, minmax(130px, 1fr));
	gap: 1px;
	background: var(--border-subtle);
	min-width: 1150px;
}

.timeline-week-cell {
	background: var(--bg-surface);
	padding: 0.5rem;
	min-height: 90px;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	position: relative;
	transition: background var(--transition-fast);
}

.timeline-week-cell.today-col {
	background: rgba(243, 146, 0, 0.03);
}

.timeline-week-cell.weekend-col {
	background: rgba(0, 0, 0, 0.2);
}

.timeline-week-cell.cell-free:hover {
	background: rgba(255, 255, 255, 0.02);
}

.timeline-week-header {
	background: var(--bg-surface-elevated);
	padding: 0.65rem 0.5rem;
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold-400);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: 52px;
}

.timeline-week-header.today-header {
	background: rgba(243, 146, 0, 0.12);
	color: #FCD34D;
}

.timeline-week-header.weekend-header {
	color: #DDD6FE;
	background: rgba(139, 92, 246, 0.08);
}

.week-badge-today {
	font-size: 0.62rem;
	padding: 0.1rem 0.4rem;
	background: var(--gold-400);
	color: #000;
	border-radius: var(--radius-full);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 2px;
}

/* Cartes de réservation en vue semaine */
.week-booking-card {
	padding: 0.35rem 0.5rem;
	border-radius: var(--radius-sm);
	font-size: 0.71rem;
	cursor: pointer;
	transition: transform var(--transition-fast), filter var(--transition-fast);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.week-booking-card:hover {
	transform: translateY(-1px);
	filter: brightness(1.15);
}

.week-booking-card.confirmed {
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #A7F3D0;
}

.week-booking-card.option {
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.3);
	color: #FDE68A;
}

.week-booking-card.fulltime {
	background: rgba(168, 85, 247, 0.12);
	border: 1px solid rgba(168, 85, 247, 0.3);
	color: #E9D5FF;
}

.week-booking-time {
	font-weight: 700;
	font-size: 0.66rem;
	opacity: 0.9;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.week-booking-title {
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}

.week-btn-add {
	margin-top: auto;
	padding: 0.25rem 0.4rem;
	font-size: 0.68rem;
	color: var(--text-muted);
	background: transparent;
	border: 1px dashed var(--border-subtle);
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-align: center;
	transition: all var(--transition-fast);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

.week-btn-add:hover {
	color: var(--gold-400);
	border-color: var(--border-gold);
	background: rgba(243, 146, 0, 0.05);
}

/* Grille Semaine par Salle (Heures x 7 jours) */
.timeline-roomweek-grid {
	display: grid;
	grid-template-columns: 80px repeat(7, minmax(130px, 1fr));
	gap: 1px;
	background: var(--border-subtle);
	min-width: 980px;
}

/* Vue Agenda */
.agenda-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.agenda-day-group {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.agenda-day-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid var(--border-subtle);
}

.agenda-day-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.agenda-cards-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 0.85rem;
}

.agenda-card {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.agenda-card:hover {
	border-color: var(--border-medium);
	transform: translateY(-2px);
}

/* Table des réservations (Pipeline) & Conteneurs de tableaux */
.bookings-table-wrapper,
.table-luxury-container {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	max-width: 100%;
	margin-bottom: 2rem;
}

.table-luxury {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	text-align: left;
}

.table-luxury th {
  background: var(--bg-surface-elevated);
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  font-weight: 700;
  border-bottom: 1px solid var(--border-subtle);
}

.table-luxury td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.table-luxury tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Notifications Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInToast 300ms var(--ease-spring);
}

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



/* Boutons sélecteurs de jours d'exploitation */
.day-check-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.day-check-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-gold);
}
.day-check-btn input {
  display: none;
}
.day-check-btn.checked,
.day-check-btn:has(input:checked) {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #0F172A;
  border-color: var(--gold-400);
  box-shadow: 0 2px 8px var(--gold-glow);
}

.btn-preset-day {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-preset-day:hover {
  color: var(--gold-400);
  border-color: var(--border-gold);
  background: var(--gold-glow-subtle);
}

/* --- LOGIN PAGE & INPUTS ULTRA-PREMIUM (HAUTE VISIBILITÉ) --- */
.login-card-luxury {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #131B2C 0%, #0D1422 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.login-logo-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto 0.85rem auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
}

.input-luxury-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.input-luxury-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.input-luxury-label svg {
  color: var(--gold-400);
}

.input-luxury-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-luxury-icon {
  position: absolute;
  left: 1rem;
  color: var(--gold-400);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.input-luxury-field {
  width: 100%;
  background: #182236 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: var(--radius-md) !important;
  color: #FFFFFF !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 0.95rem 1rem 0.95rem 2.85rem !important;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.45) !important;
  transition: all var(--transition-fast) !important;
  outline: none !important;
}

.input-luxury-field::placeholder {
  color: #718096 !important;
  font-weight: 400;
}

.input-luxury-field:hover {
  background: #1C2840 !important;
  border-color: rgba(212, 175, 55, 0.6) !important;
}

.input-luxury-field:focus {
  background: #1E2B45 !important;
  border-color: var(--gold-400) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.input-luxury-toggle-pw {
  position: absolute;
  right: 0.85rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
  z-index: 2;
}

.input-luxury-toggle-pw:hover {
  color: var(--gold-400);
}

.login-credentials-hint {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   QUAI 36 BOOKING - DISPOSITIONS RESPONSIVES GLOBALES (DASHBOARD & PORTAIL)
   ========================================================================== */

/* --- CARTES DE STATISTIQUES & INVENTAIRE --- */
.stats-overview-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-bottom: 2rem;
	width: 100%;
}

.stat-card,
.room-luxury-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	position: relative;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.stat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.stat-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	font-weight: 700;
}

.stat-main-value {
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1.1;
	font-family: var(--font-mono);
}

.stat-sub-text {
	font-size: 0.75rem;
	line-height: 1.3;
}

/* --- GRILLES MODULAIRES DU COCKPIT GESTIONNAIRE --- */
.admin-two-cols-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.indicateurs-grid-row1 {
	display: grid;
	grid-template-columns: 1.8fr 1.2fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.indicateurs-grid-row2 {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.expo-body-grid {
	display: grid;
	grid-template-columns: 1fr 2.5fr;
	gap: 2.5rem;
	align-items: start;
}

.artwork-cartel-grid {
	background: #141B2D;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 1rem;
	align-items: center;
}

.artwork-cartel-price-box {
	text-align: right;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 1rem;
}

/* --- FORMULAIRES DE TIROIRS (DRAWER) --- */
.drawer-form-grid-3 {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.drawer-form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

/* --- MEDIA QUERIES : ÉCRANS MOYENS & TABLETTES (<= 1024px) --- */
@media (max-width: 1024px) {
	.kpi-grid,
	.stats-overview-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.indicateurs-grid-row1,
	.indicateurs-grid-row2,
	.admin-two-cols-grid,
	.expo-body-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.section-header-flex {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}
}

/* --- MEDIA QUERIES : TABLETTES ET SMARTPHONES (<= 768px) --- */
@media (max-width: 768px) {
	.manager-container {
		padding: 1rem 0.75rem;
	}

	.spaces-section,
	#planning-section,
	#expo-section {
		padding: 1.5rem 0.85rem 3rem 0.85rem;
	}

	.hero-section {
		padding: 2.25rem 0.85rem 1.75rem 0.85rem;
	}

	.hero-title {
		font-size: clamp(1.7rem, 6vw, 2.35rem);
	}

	.hero-subtitle {
		font-size: 0.92rem;
		margin-bottom: 1.75rem;
	}

	.hero-booking-cta-card {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem 1rem;
		gap: 1.25rem;
		border-radius: 16px;
	}

	.hero-booking-cta-title {
		font-size: 1.35rem;
	}

	.hero-booking-cta-desc {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}

	.hero-booking-cta-perks {
		justify-content: center;
		gap: 0.75rem;
	}

	.hero-booking-cta-action {
		width: 100%;
		min-width: unset;
	}

	.btn-hero-reserve-cta {
		width: 100%;
		font-size: 0.88rem;
		padding: 0.85rem 1rem;
	}

	.view-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
		margin: 1rem 0 1.5rem 0;
	}

	.view-header > div:first-child {
		width: 100%;
	}

	.view-title {
		font-size: 1.45rem;
	}

	.view-subtitle {
		font-size: 0.85rem;
	}

	.view-header .btn-action-gold {
		width: 100%;
		justify-content: center;
	}

	.rooms-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.room-card-image-wrap {
		height: 200px;
	}

	.room-card-body {
		padding: 1.15rem 1rem;
	}

	.room-card-actions {
		grid-template-columns: 1fr auto;
		gap: 0.5rem;
	}

	.btn-book-action {
		font-size: 0.82rem;
		padding: 0.65rem 1rem;
	}

	.mobile-only {
		display: flex !important;
	}

	.booking-drawer {
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 100% !important;
		width: 100vw !important;
		max-width: 100% !important;
		max-width: 100vw !important;
		height: 100% !important;
		height: 100dvh !important;
		max-height: 100dvh !important;
		border-left: none !important;
		border-radius: 0 !important;
		z-index: 300 !important;
	}

	.drawer-header {
		padding: 0.85rem 1.15rem !important;
		flex-shrink: 0 !important;
		border-bottom: 1px solid var(--border-subtle) !important;
	}

	.drawer-header-info {
		min-width: 0 !important;
		flex: 1 !important;
		padding-right: 0.5rem !important;
	}

	.drawer-header-info h3 {
		font-size: 1.1rem !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}

	.drawer-header-info p {
		font-size: 0.72rem !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}

	.drawer-body {
		padding: 1rem 0.85rem 2rem 0.85rem !important;
		gap: 1.15rem !important;
		flex: 1 1 auto !important;
		min-height: 0 !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		overscroll-behavior: contain !important;
	}

	.drawer-form-grid-3,
	.drawer-form-grid-2 {
		display: flex !important;
		flex-direction: column !important;
		gap: 0.65rem !important;
		margin-bottom: 0.65rem !important;
	}

	.drawer-form-grid-3 > div,
	.drawer-form-grid-2 > div {
		width: 100% !important;
		min-width: 0 !important;
	}

	.booking-drawer input,
	.booking-drawer select,
	.booking-drawer textarea {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		font-size: 16px !important;
	}

	.config-options-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 0.6rem !important;
	}

	.config-card-option {
		padding: 0.75rem !important;
	}

	#configSvgPreview {
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
	}

	#configSvgPreview svg {
		width: 100% !important;
		height: auto !important;
		max-height: 85px !important;
	}

	#drawerAmplitudeBadge {
		word-break: break-word !important;
		overflow-wrap: break-word !important;
		font-size: 0.74rem !important;
		padding: 0.6rem 0.75rem !important;
		line-height: 1.4 !important;
	}

	#drawerSecondaryRoomsContainer label {
		flex-wrap: wrap !important;
		gap: 0.4rem !important;
	}

	.inventory-select-card > div:first-child {
		flex-wrap: wrap !important;
		gap: 0.5rem !important;
	}

	.inventory-select-card label {
		min-width: 0 !important;
	}

	.inventory-select-card .text-gold {
		font-size: 0.82rem !important;
	}

	.quote-summary-card {
		padding: 1rem 0.85rem !important;
	}

	.quote-line-item {
		font-size: 0.8rem !important;
		flex-wrap: wrap !important;
		gap: 0.35rem !important;
	}

	.quote-line-item span:first-child {
		max-width: 70%;
		word-break: break-word;
	}

	.quote-total-row {
		flex-wrap: wrap !important;
		gap: 0.5rem !important;
	}

	.quote-total-row .gold-amount {
		font-size: 1.3rem !important;
	}

	.drawer-footer {
		padding: 1rem 0.85rem 1.5rem 0.85rem !important;
	}

	.drawer-footer-actions {
		padding: 1rem 0 1.5rem 0 !important;
		display: flex !important;
		flex-direction: column-reverse !important;
		gap: 0.65rem !important;
		width: 100% !important;
	}

	.drawer-footer-actions .btn-drawer-cancel,
	.drawer-footer-actions .btn-confirm-submit {
		width: 100% !important;
		flex: unset !important;
		padding: 0.85rem 1rem !important;
		font-size: 0.9rem !important;
		text-align: center !important;
		justify-content: center !important;
		box-sizing: border-box !important;
	}

	#drawerCustomerPreferenceBanner > div {
		padding: 0.85rem !important;
	}

	#drawerCustomerPreferenceBanner button {
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
	}

	.artwork-cartel-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: left;
	}

	.artwork-cartel-price-box {
		text-align: left;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-left: 0;
		padding-top: 0.75rem;
	}

	.timeline-view-wrapper {
		padding: 0.75rem 0.5rem;
		border-radius: var(--radius-lg);
	}

	.site-footer {
		padding: 2.25rem 1rem;
		margin-top: 3rem;
	}

	.footer-inner {
		flex-direction: column;
		text-align: center;
		gap: 1.25rem;
	}

	.footer-brand {
		align-items: center;
	}

	.footer-meta {
		text-align: center;
	}

	.toast-container {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
	}

	.toast {
		width: 100%;
		font-size: 0.85rem;
		padding: 0.75rem 1rem;
	}
}

/* --- MEDIA QUERIES : PETITS ÉCRANS MOBILES (<= 480px) --- */
@media (max-width: 480px) {
	.kpi-grid,
	.stats-overview-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.kpi-card-luxury,
	.stat-card {
		padding: 1rem;
	}

	.kpi-value,
	.stat-main-value {
		font-size: 1.5rem;
	}

	.brand-title {
		font-size: 1.05rem;
	}

	.modal-card {
		padding: 1.25rem 0.85rem;
	}

	.luxury-login-modal {
		padding: 1.25rem 1rem !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		overscroll-behavior: contain !important;
		border-radius: 16px !important;
	}
}

