.room-filter-panel {
  margin: 0 0 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.room-filter-toggle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  color: #244a40;
  background: transparent;
  cursor: pointer;
}

.room-filter-toggle span {
  font-size: 11px;
  font-weight: 700;
}

.room-filter-toggle strong {
  justify-self: start;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.room-filter-toggle i {
  min-width: 52px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.room-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
  padding: 5px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: rgba(247, 252, 250, 0.92);
}

.room-filters[hidden] {
  display: none;
}

.room-filters button {
  min-width: 0;
  min-height: 38px;
  padding: 6px 4px;
  border: 0;
  border-radius: 10px;
  color: #5d756e;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.room-filters button.is-active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 5px 12px rgba(8, 122, 95, 0.18);
}

.order-summary .order-structure {
  grid-column: 1 / -1;
}

.order-summary .order-structure strong {
  line-height: 1.5;
}

.order-price strong em {
  display: block;
  max-width: 280px;
  margin-top: 3px;
  color: #61766f;
  font-size: 9px;
  font-style: normal;
  line-height: 1.35;
}

@media (max-width: 430px) {
  .room-filter-toggle {
    min-height: 44px;
    padding: 6px 9px;
  }

  .room-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
