/* ================================================
   Listing Booking Section — Calendar + Stays + Conditions
   ================================================ */

.listing-booking-section {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ── Block ── */
.listing-booking-section__block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ── Header ── */
.listing-booking-section__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.listing-booking-section__title {
    color: var(--dark1);
    font-family: var(--font-helvetica);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin: 0;
}

.listing-booking-section__subtitle {
    color: var(--dark-brown);
    font-family: var(--font-rubik);
    font-size: 15px;
    font-weight: var(--font-weight-regular);
    margin: 0;
}

/* ── Legend ── */
.listing-booking-section__legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 16px 0;
}

.listing-booking-section__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-booking-section__legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.listing-booking-section__legend-label {
    color: var(--dark1);
    font-family: var(--font-rubik);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

/* ── Seasons ── */
.listing-booking-section__seasons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ── Details (2 columns grid) ── */
.listing-booking-section__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.listing-booking-section__details .listing-detail-row {
    border-left: none;
    border-right: none;
}

.listing-booking-section__details .listing-detail-row:nth-child(odd) {
    border-right: 1px solid var(--dark5);
}

.listing-booking-section__details .listing-detail-row:nth-child(1),
.listing-booking-section__details .listing-detail-row:nth-child(2) {
    border-top: 1px solid var(--dark5);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .listing-booking-section {
        gap: 30px;
    }

    .listing-booking-section__title {
        font-size: 28px;
    }

    .listing-booking-section__legend {
        gap: 20px;
    }

    .listing-booking-section__details {
        grid-template-columns: 1fr;
    }

    .listing-booking-section__details .listing-detail-row:nth-child(odd) {
        border-right: none;
    }
}
