/* ââââââââââââââââââââââââââââââââââââââââââââââ
 * Hireload â Rental Dates  |  v1.0.5
 * Date picker + price summary + deposit styles
 * ââââââââââââââââââââââââââââââââââââââââââââ */

/* ââ Hide WC default variation price when a priced variation is selected ââ */
body.hlrd-hide-wc-price .woocommerce-variation-price,
body.hlrd-hide-wc-price .single_variation .price,
body.hlrd-hide-wc-price .single_variation-wrap .price,
body.hlrd-hide-wc-price .woocommerce-variation .price {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ââ Container ââââââââââââââââââââââââââââââ */
.hlrd-rental-dates {
    margin: 20px 0 10px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.hlrd-section-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #333;
}

/* ââ Date row â two fields side by side âââââ */
.hlrd-date-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hlrd-date-field {
    flex: 1 1 200px;
    min-width: 160px;
}

.hlrd-date-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}

.hlrd-date-field input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.hlrd-date-field input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* ââ Price summary ââââââââââââââââââââââââââ */
.hlrd-price-summary {
    margin-top: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 2px solid #0073aa;
    border-radius: 6px;
}

.hlrd-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hlrd-duration-text {
    font-size: 14px;
    color: #555;
}

.hlrd-total-price {
    font-size: 20px;
    font-weight: 700;
    color: #0073aa;
}

/* ââ Error state ââââââââââââââââââââââââââââ */
.hlrd-price-summary.hlrd-no-tier {
    border-color: #d63638;
    background: #fcf0f1;
}

.hlrd-price-summary.hlrd-no-tier .hlrd-total-price {
    color: #d63638;
    font-size: 14px;
    font-weight: 600;
}

/* ââ Deposit block âââââââââââââââââââââââââ */
.hlrd-deposit-block {
    margin-top: 14px;
    padding: 14px 16px;
    background: #fef9e7;
    border: 1px solid #f0d861;
    border-radius: 6px;
}

.hlrd-deposit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hlrd-deposit-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.hlrd-deposit-amount {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.hlrd-deposit-desc {
    font-size: 12px;
    color: #666;
    margin: 8px 0 0;
    line-height: 1.4;
}

/* ââ Flatpickr overrides (subtle) âââââââââââ */
.flatpickr-calendar {
    font-family: inherit;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #0073aa;
    border-color: #0073aa;
}

.flatpickr-day.inRange {
    background: #e8f4fa;
    border-color: #e8f4fa;
    box-shadow: -5px 0 0 #e8f4fa, 5px 0 0 #e8f4fa;
}

/* ââ Mobile âââââââââââââââââââââââââââââââââ */
@media (max-width: 480px) {
    .hlrd-date-row {
        flex-direction: column;
        gap: 12px;
    }

    .hlrd-rental-dates {
        padding: 14px;
    }

    .hlrd-total-price {
        font-size: 18px;
    }

    .hlrd-deposit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
