/* ==========================================================================
   Hôtel de l'Union Kara — Page Chambres & Tarifs
   ========================================================================== */

.room-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 420px;
  margin-bottom: 50px;
}

.room-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
}

.room-gallery-img:hover { transform: scale(1.02); }

.room-gallery-img--main { grid-row: span 2; }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.room-detail-features h3 { margin-bottom: 22px; font-size: 1.3rem; }

.price-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-light);
}

.price-row-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
}

.price-row-label i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-row-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
}

.price-row-value span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--grey);
}

.price-table .btn { margin-top: 26px; }

@media (max-width: 860px) {
  .room-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .room-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 160px); height: auto; }
  .room-gallery-img--main { grid-row: span 1; }
  .price-row-value { font-size: 1.1rem; }
}
