.search-header-title h1 {
  font-weight: 500;
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
}
.hotel-search-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width:1000px;
    margin:0 auto 67px auto;
}
.search-bar-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-field {
    display: flex;
    flex-direction: column;
    flex: 1;width: 100%;
    padding: 6px 16px;
}
.search-field.border-left {
    border-left: 1px solid #e2e8f0;
}
.search-field label {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  margin-bottom: 2px;
}
.search-field input {
  border: none;
  outline: none;
  font-size: 11px;
  color: #8B8B8B;
  background: transparent;
  padding: 0;
}
.btn-search {
    background-color: #00a884;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-search:hover {
    background-color: #008f70;
}

/* Sidebar Search & Rating Toggles */
.sidebar-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #334155;
    outline: none;
    transition: border-color 0.2s ease;
}
.sidebar-search-input:focus {
    border-color: #00a884;
}
.rating-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.rating-toggle-btn {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    background: #ffffff;
    color: #334155;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.rating-toggle-btn:hover {
    border-color: #00a884;
    color: #00a884;
}
.rating-toggle-btn.active {
    background-color: #00a884;
    border-color: #00a884;
    color: #ffffff;
    font-weight: 600;
}

/* Dual Range Slider Styles */
.price-slider-wrapper {
    position: relative;
    margin: 15px 0 25px 0;
}
.range-slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 100%;
    background-color: #e2e8f0;
    border-radius: 3px;
    z-index: 1;
}
.range-slider-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background-color: #00a884;
    border-radius: 3px;
    z-index: 2;
}
.price-slider-wrapper input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    z-index: 3;
}
.price-slider-wrapper input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #00a884;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}
.price-slider-wrapper input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #00a884;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    pointer-events: auto;
    cursor: pointer;
}
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}
.price-inputs input {
    width: 100%;
    max-width: 60px;
    padding: 6px 8px 6px 0px;
    border: 0px solid #ccc;
    border-radius: 4px;
}
.price-inputs input:focus-visible { outline: none; }
.badge--rating {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    .search-bar-form { flex-direction: column; gap: 12px; }
    .search-field.border-left { border-left: none; border-top: 1px solid #e2e8f0; }
    .btn-search { width: 100%; justify-content: center; }
	
	
	
	
	.filters h3 {
  margin: 0 0 15px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: capitalize;
}
.filter-group label {
  font-size: 12px;
}

.results-head h2 {
  font-size: 12px;
}
.results-head {
  flex-wrap: wrap;
}
.sort-select {
  font-size: 12px;
}
.holidayWrapBoxes .holidayGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:20px 10px;
}


}


@media (max-width:540px) {
.holidayWrapBoxes .holidayGrid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px 0;
}
	
	
}