.tcfac-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.tcfac-room-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.tcfac-room-card:hover {
  transform: translateY(-10px);
}

.swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.tcfac-room-content {
  padding: 25px;
}

.tcfac-room-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.tcfac-room-meta {
  margin: 20px 0;
  line-height: 2;
}

.available {
  color: #16a34a;
  font-weight: 700;
}

.unavailable {
  color: red;
  font-weight: 700;
}

.tcfac-room-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.tcfac-book-button,
.tcfac-details-button {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}

.tcfac-book-button {
  background: #2563eb;
}

.tcfac-details-button {
  background: #111827;
}

.tcfac-single-room {
  max-width: 1400px;
  margin: auto;
}

.tcfac-room-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.tcfac-booking-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.status {
  margin-bottom: 20px;
}

.tcfac-description {
  line-height: 2;
  margin-top: 30px;
}
