
.hotel-detail {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}
.hotel-detail h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.hotel-detail p {
  margin: 0.3rem 0;
}
.slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
}
.slider-img {
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}
.booking-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.booking-block h2 {
  margin-bottom: 1rem;
}
.booking-block label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}
.booking-block input,
.booking-block select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.booking-block .mygo-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.booking-block .mygo-btn:hover {
  background-color: #0056b3;
}
.booking-block .price-estimatif {
  font-size: 1.1rem;
  color: #28a745;
  font-weight: bold;
}
ul.themes, ul.options, ul.tags, ul.boarding {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
ul.themes li,
ul.options li,
ul.tags li,
ul.boarding li {
  background: #e9ecef;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.875rem;
}
.hotel-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  background: #fff3cd;
  padding: 1rem;
  border-left: 5px solid #ffc107;
  border-radius: 4px;
}
