/* ================================================
   Listing Booking Card — Widget de réservation
   ================================================ */

.listing-booking-card {
    width: 100%;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    border-radius: var(--border-radius-base);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ── Dates ── */
.listing-booking-card__dates {
    display: flex;
    gap: 5px;
}

.listing-booking-card__date-field {
    flex: 1;
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    border: 0.5px solid var(--dark5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.listing-booking-card__date-label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.listing-booking-card__date-label i {
    font-size: 18px;
    color: var(--dark-brown);
}

.listing-booking-card__date-label span {
    color: var(--dark-brown);
    font-family: var(--font-helvetica);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-button);
}

.listing-booking-card__date-value {
    color: var(--dark3);
    font-family: var(--font-rubik);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    text-align: center;
}

/* ── Travelers ── */
.listing-booking-card__travelers {
    padding: 8px 16px;
    border-radius: 8px;
    border: 0.5px solid var(--dark5);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.listing-booking-card__travelers-label {
    color: var(--dark-brown);
    font-family: var(--font-helvetica);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-button);
}

.listing-booking-card__travelers-value {
    color: var(--dark3);
    font-family: var(--font-rubik);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
}

/* ── Prix ── */
.listing-booking-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 16px;
    background: var(--light2);
    border-radius: 8px;
}

.listing-booking-card__price-value {
    color: var(--dark1);
    font-family: var(--font-helvetica);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.listing-booking-card__price-period {
    color: var(--dark3);
    font-family: var(--font-rubik);
    font-size: 13px;
    font-weight: var(--font-weight-regular);
}

/* ── CTA ── */
.listing-booking-card__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.listing-booking-card__cta {
    width: 100%;
    min-height: 48px;
    padding: 8px 16px;
    background: var(--main-color);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-helvetica);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.listing-booking-card__cta:hover {
    background: var(--main-color-orange);
    transform: translateY(-1px);
}

.listing-booking-card__note {
    color: var(--dark4);
    font-family: var(--font-rubik);
    font-size: 10px;
    font-weight: var(--font-weight-regular);
    text-align: center;
    margin: 0;
}
