.hotel-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.rating-stars {
  color: #f7c325;
}

.excellent-tag {
  background-color: #28a745;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}

.price-strike {
  text-decoration: line-through;
  color: #777;
}

.discount {
  color: green;
  font-weight: bold;
}

.last-booked {
  color: red;
  font-size: 12px;
}

.hidden {
  display: none;
}

.white-bg {
  background-color: #fff;
}

.explore-btn {
  background-color: #f27a44;
  color: white;
  border: none;
  padding: 8px 10px;
  font-weight: 600;
  border-radius: 10px;
  width: fit-content;
}

.card-titleh {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.slider-container .slider-range {
  background: var(--active-background-color);
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 5px;
  outline: none;
  opacity: 0.9;
  transition: opacity .2s;
}

.tab-link.active {
  border-bottom: 2px solid var(--active-background-color);
  font-weight: bold;
}

.info-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex: 0 0 48%;
  box-sizing: border-box;
}
.custom-tab{  
  background: transparent;
  border: none;
}
.custom-tab.active{
  border-bottom:3px solid var(--active-background-color) ;
}
.info-box i {
  font-size: 1.5rem;
  color: var(--active-background-color);
}

#overview {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

   .image-gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }

  .main-image {
    flex: 2;
  }

  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .thumbnails {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .thumbnails img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    object-fit: cover;
    transition: 0.2s ease;
    border: 2px solid transparent;
  }

  .thumbnails img:hover,
  .thumbnails img.active {
    border: 2px solid var(--active-background-color);
  }

  .thumb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .thumb-grid img {
    height: 100px;
  }

  @media (max-width: 768px) {
    .image-gallery {
      flex-direction: column;
    }

    .thumbnails {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .thumbnails img {
      flex: 1 0 48%;
    }
  }