.half-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1000;
}

.half-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.half-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-height: 80%;
  overflow-y: auto;
  padding: 24px;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transform: translateY(-100%);
  transition: transform 1.5s ease;
}

.half-modal-content.active {
  transform: translateY(0);
}

.half-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.drag-handle {
  width: 40px;
  height: 4px;
  background-color: #ccc;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.close-btn {
  top: 16px;
  left: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.close-btn svg {
  width: 24px;
  height: 24px;
}

.clear-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #97945C;
  font-size: 14px;
}

.filter-section {
  margin-bottom: 24px;
  margin-left: 20px;
  margin-right: 20px;
}

.filter-section h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-options button {
  background-color: #fff;
  border: 1px solid #97945C;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  color: #555555;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}

.filter-options button.active {
  background-color: #97945C;
  color: #fff;
}
