/* Price Filter Styles */
.cozystay-price-filter-wrapper {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cozystay-price-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cozystay-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cozystay-price-filter label {
  font-weight: 600;
  color: #333;
  margin: 0;
  white-space: nowrap;
}

.cozystay-price-select,
.cozystay-room-type-select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  min-width: 200px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.cozystay-price-select:focus,
.cozystay-room-type-select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.cozystay-price-select:hover,
.cozystay-room-type-select:hover {
  border-color: #007cba;
}

.cozystay-filter-button,
.cozystay-reset-button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cozystay-filter-button {
  background: #007cba;
  color: #fff;
}

.cozystay-filter-button:hover {
  background: #005a87;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 124, 186, 0.3);
}

.cozystay-reset-button {
  background: #6c757d;
  color: #fff;
}

.cozystay-reset-button:hover {
  background: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(108, 117, 125, 0.3);
}

/* Hide filtered rooms */
.cs-room-item.price-filtered {
  display: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
  .cozystay-price-filter-wrapper {
    margin-bottom: 90px;
  }

  .cozystay-price-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .cozystay-price-select {
    width: 100%;
    min-width: auto;
  }

  .cozystay-filter-button,
  .cozystay-reset-button {
    width: 100%;
  }
}

.slick-track {
  margin-left: initial !important;
  margin-right: initial !important;
}
