/* Conteneur principal */
#swb-booking {
    max-width: 700px;
    padding: 25px;
    background: #000; /* fond noir */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #fff; /* texte blanc */
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Titres */
#swb-booking h3 {
    color: #D1B096; /* couleur des titres */
    margin-bottom: 15px;
}

/* Labels */
#swb-booking label {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #fff;
}

/* Champs du formulaire */
#swb-booking input,
#swb-booking select {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    box-sizing: border-box;
    border: 1px solid #444;
    background: #111; /* champ sombre */
    color: #fff;
    border-radius: 0; /* coins droits */
}

#swb-booking input::placeholder {
    color: #bbb;
}

/* Focus */
#swb-booking input:focus,
#swb-booking select:focus {
    border-color: #D1B096;
    box-shadow: 0 0 5px rgba(209,176,150,0.5);
    outline: none;
}

/* Buttons */
#swb-booking button {
    margin-top: 20px;
    padding: 12px 25px;
    cursor: pointer;
    border: none;
    background: #D1B096; /* couleur luxe */
    color: #000;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border-radius: 0; /* coins droits */
}

#swb-booking button:hover {
    background: #bfa17e;
    transform: translateY(-2px);
}

/* Price display créatif */
#priceResult, #finalPrice {
    margin-top: 20px;
    padding: 15px;
    background: #111;
    border-left: 4px solid #D1B096; /* accent luxe */
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
}

#priceResult span, #finalPrice span {
    display: flex;
    align-items: center;
}

#priceResult span.km::before, #finalPrice span.km::before {
    content: "🛣️";
    margin-right: 8px;
}

#priceResult span.price::before, #finalPrice span.price::before {
    content: "💰";
    margin-right: 8px;
    color: #D1B096;
}

/* Autocomplete list */
.autocomplete-list {
    background: #111;
    border: 1px solid #444;
    color: #fff;
}

.autocomplete-list li:hover {
    background-color: #222;
    cursor: pointer;
}

/* Form row spacing */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-field {
    flex: 1;
}

/* Responsive mobile */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    #priceResult, #finalPrice {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
