.gtb-room-page-wrap {
  position: relative;
  margin-bottom: 60px;
}

.gtb-room-image-background img {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  display: block;
}

.gtb-room-floating-card {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 40px;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.gtb-room-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.gtb-room-price {
  font-size: 1.25rem;
  color: #e66b6b;
  margin-bottom: 20px;
}

.gtb-room-description {
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Reuse the same column style for specs as accommodations */
.gtb-room-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.spec-icon {
  color: #e66b6b;
  font-size: 1rem;
  flex-shrink: 0;
}

.spec-label {
  color: #888;
  font-weight: 600;
  font-size: 0.9rem;
}

.spec-value {
  color: #333;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .gtb-room-floating-card {
    position: static;
    transform: none;
    margin-top: 20px;
    max-width: 100%;
    padding: 20px;
  }

  .gtb-room-specs {
    grid-template-columns: 1fr;
  }
}
