    .counter-btn {
                width: 30px;
    height: 30px;
    padding: 5px 10px;
    text-align: center;
        }
        .child-ages {
            max-height: 200px;
            overflow-y: auto;
        }
        /*.hotel-banner{*/
        /*    padding:200px 50px 150px 50px;*/
        /*}*/
        .hotel-banner h4{
            font-size:20px;
        }
        .fixed-search {
          position: fixed;
          top: 0px; /* height of your navbar (adjust if navbar taller) */
          left: 0;
          right: 0;
          z-index: 1040;
          background: #fff;
          box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
         .hotel-banner .form-label i{
             color:#9e040c;
         }
          .hotel-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }
        .hotel-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        .hotel-image {
            position: relative;
            height: 100%;
            overflow: hidden;
        }
        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .image-gallery {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            gap: 5px;
        }
        .gallery-thumb {
            width: 40px;
            height: 30px;
            border-radius: 4px;
            overflow: hidden;
            border: 2px solid white;
            cursor: pointer;
        }
        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .see-all-btn {
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 12px;
            cursor: pointer;
        }
        .amenity-tag {
            background: #e8f4ff;
            color: #0066cc;
            padding: 4px 8px;
            border-radius: 16px;
            font-size: 12px;
            margin-right: 8px;
            margin-bottom: 5px;
            display: inline-block;
        }
        .rating-badge {
            background: #4285f4;
            color: white;
            padding: 5px 10px;
            border-radius: 8px;
            font-weight: bold;
        }
        .price-text {
            color: #d93025;
            font-size: 24px;
            font-weight: bold;
        }
        .btn btn-primary d-inline-block mt-2 text-white {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .filter-title {
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .star-rating {
            color: #ffa500;
        }
        .location-link {
            color: #4285f4;
            text-decoration: none;
            font-size: 14px;
        }
        .location-link:hover {
            text-decoration: underline;
        }
        /* Fixed bottom buttons only on mobile */
.mobile-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 0px;
  z-index: 1100;
}

.mobile-actions button {
    text-align: center;
    flex: 1;
    margin: 0px;
    display: block;
    border-radius: 0px;
    background: #9e040c;
    color: #fff;
    border: 0px;
    border-top: 0px;
}

/* Hide filter + search bar on mobile */
@media (max-width: 768px) {
  .hotel-banner,
  .btn btn-primary d-inline-block mt-2 text-white {
    display: none;
  }
}

/* Slide panel common styles */
.slide-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 1200;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px;
}

.slide-panel.show {
  transform: translateY(0);
}

.slide-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.serachbtn{
        width: 100%;
    text-align: center;
    display: inline-block;
    color: #fff;
    border: none;
    background: #9e040c;
}