/* Filter Bar Styles */
.filter-bar {
  display: flex;
  gap: 1.5em;
  align-items: center;
  margin: 1em 0 1.5em 0;
  font-size: 1em;
}
.filter-dropdown-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.filter-dropdown-btn {
  background: #f8fafd;
  border: 1px solid #b3b3cc;
  border-radius: 6px;
  padding: 0.5em 1.2em 0.5em 1em;
  cursor: pointer;
  font-size: 1em;
  min-width: 150px;
  text-align: left;
}
.filter-dropdown-list {
  display: none;
  position: absolute;
  left: 0;
  right: auto;
  top: 110%;
  background: #fff;
  border: 1px solid #b3b3cc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  z-index: 20;
  min-width: 180px;
  padding: 0.5em 0.7em;
}
.filter-dropdown-list label {
  font-weight: normal;
  cursor: pointer;
}
.filter-dropdown-list div {
  margin-bottom: 0.2em;
}
.filter-dropdown-list div:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .filter-bar {
    flex-direction: column;
    gap: 0.7em;
    align-items: stretch;
  }
  .filter-dropdown-btn {
    min-width: 120px;
    font-size: 0.95em;
  }
  .filter-dropdown-list {
    min-width: 120px;
    font-size: 0.97em;
  }
}

.filter-bar.sticky #cabin-type-row .filter-dropdown-list {
  left: auto;
  right: 0;
}

.filter-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  z-index: 1000;
  margin: 0;
  padding: 1em 1.5em;
}

.filter-bar-placeholder {
  display: none;
}

.filter-bar-placeholder.active {
  display: block;
}
