/* ==========================================================================
   LES GLYCINES — FICHE CHAMBRE ÉPURÉE & IMMERSIVE
   ========================================================================== */

/* Fil d'Ariane Aéré */
.breadcrumb-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--stone-200);
  padding: 12px 20px;
}
.breadcrumb-nav {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.breadcrumb-nav a {
  color: var(--glycine-700);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.breadcrumb-nav a:hover {
  color: var(--glycine-900);
}
.breadcrumb-nav span {
  color: var(--text-light);
}

/* Hero Fiche Chambre */
.room-hero {
  background: linear-gradient(135deg, var(--glycine-50), var(--stone-50));
  border-bottom: 1px solid var(--stone-200);
  padding: 40px 20px;
}
.room-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.room-hero-title-group h1 {
  font-size: 2.3rem;
  color: var(--glycine-900);
  margin: 8px 0 4px 0;
  line-height: 1.2;
}
.room-hero-subtitle {
  font-size: 1.05rem;
  color: var(--sage-700);
  font-weight: 500;
}
.room-hero-price-badge {
  background: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
  text-align: right;
  flex-shrink: 0;
}
.room-hero-price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}
.room-hero-price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--glycine-900);
  font-family: var(--font-serif);
}

/* Layout Principal */
.room-main-layout {
  max-width: 1240px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

/* Galerie Multi-Angles */
.room-gallery-wrapper {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.room-gallery-main {
  position: relative;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.gallery-angle-count {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(38, 10, 51, 0.82);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.room-gallery-expand-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--glycine-900);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.room-gallery-expand-btn:hover {
  background: #FFFFFF;
  transform: scale(1.03);
}
.room-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}
.room-thumb-item {
  height: 75px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.room-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-thumb-item.active {
  border-color: var(--glycine-700);
  box-shadow: 0 0 0 2px var(--glycine-100);
}

/* Détails & Ambiance */
.room-details-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.room-details-card h2 {
  font-size: 1.6rem;
  color: var(--glycine-900);
  margin-bottom: 14px;
}
.room-details-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.spec-box {
  background: var(--stone-50);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--stone-200);
}
.spec-box i {
  font-size: 1.3rem;
  color: var(--glycine-700);
}
.spec-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.spec-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--glycine-900);
}

.amenities-list-full {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.amenity-item-full {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}
.amenity-item-full i {
  color: var(--sage-600);
  font-size: 1rem;
}

/* Sidebar Réservation Tidio */
.room-booking-sidebar {
  position: sticky;
  top: 96px;
}
.booking-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.booking-card-header h3 {
  font-size: 1.35rem;
  color: var(--glycine-900);
  margin: 10px 0 4px 0;
}
.booking-card-features {
  list-style: none;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
}
.booking-card-features i {
  color: var(--sage-600);
  margin-right: 6px;
}
.btn-chat-reserve {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.host-direct-badge {
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.host-direct-badge i {
  color: var(--sage-600);
  font-size: 1.2rem;
  margin-top: 2px;
}
.host-direct-badge p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 2px 0 0 0;
}

/* Section Autres Chambres */
.other-rooms-section {
  padding: 60px 20px;
  background: var(--stone-50);
  border-top: 1px solid var(--stone-200);
}

@media (max-width: 992px) {
  .room-main-layout { grid-template-columns: 1fr; }
  .room-booking-sidebar { position: static; }
  .room-hero-container { flex-direction: column; align-items: flex-start; }
}
