/* ── Booking Widget – HSystem (clean/minimal) ── */

.bw-wrapper {
  font-family: inherit;
  width: 100%;
}

.bw-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.bw-fields {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.bw-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 130px;
}

.bw-field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
}

.bw-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bw-icon {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 14px;
  color: #aaa;
  pointer-events: none;
}

.bw-input-wrap input[type="date"] {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #222;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 10px 10px 32px;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.bw-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
}

.bw-input-wrap input[type="date"]:focus,
.bw-input-wrap input[type="date"]:hover {
  border-color: #999;
}

.bw-divider {
  color: #ccc;
  font-size: 16px;
  padding-bottom: 10px;
  flex-shrink: 0;
}

/* ── Button ── */
.bw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.bw-btn:hover {
  background: #444;
}

.bw-btn-arrow {
  width: 14px;
  height: 14px;
}

/* ── Error ── */
.bw-error {
  color: #c0392b;
  font-size: 12px;
  margin: 8px 0 0;
  display: block;
}

.bw-error[hidden] {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 560px) {
  .bw-fields {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }
  .bw-field {
    flex: 1 1 120px;
    min-width: 120px;
  }
  .bw-divider { display: none; }
  .bw-btn {
    flex: 1 1 100%;
    justify-content: center;
    margin-top: 4px;
  }
}
