.bateau-booking {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bateau-booking__title {
    margin: 0;
    font-size: 1.1em;
}
.bateau-booking__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bateau-booking__row--dates label {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9em;
}
.bateau-booking__row > label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9em;
}
.bateau-booking__row select,
.bateau-booking__row input[type="datetime-local"],
.bateau-booking__row input[type="date"],
.bateau-booking__row input[type="text"] {
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95em;
    background: #fff;
    cursor: pointer;
}
.bateau-booking__row input.flatpickr-input[readonly] {
    background: #fff;
}
.bateau-booking__options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bateau-booking__label {
    margin: 0;
    font-weight: 500;
    font-size: 0.9em;
}
.bateau-booking__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9em;
}
.bateau-booking__option-price {
    margin-left: auto;
    color: #6b7280;
}
.bateau-booking__quote {
    border-top: 1px dashed #d1d5db;
    padding-top: 12px;
    font-size: 0.95em;
}
.bateau-booking__quote-empty,
.bateau-booking__quote-loading,
.bateau-booking__quote-error,
.bateau-booking__quote-unavailable {
    margin: 0;
    color: #6b7280;
    font-style: italic;
}
.bateau-booking__quote-unavailable {
    color: #dc2626;
    font-weight: 500;
}
.bateau-booking__quote table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.bateau-booking__quote td {
    padding: 4px 0;
    border: none;
}
.bateau-booking__quote td:last-child {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.bateau-booking__quote-total td {
    font-weight: 600;
    border-top: 1px solid #e5e7eb !important;
    padding-top: 8px !important;
}
.bateau-booking__quote-deposit {
    margin-top: 12px;
    padding: 10px 12px;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.bateau-booking__quote-deposit-label {
    font-size: 0.85em;
}
.bateau-booking__quote-deposit-amount {
    font-size: 1.2em;
}
