/* ── Form Validation ── */
label.error {
    color: #ef4444 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-top: 4px !important;
    display: block !important;
}

input.error, select.error, textarea.error {
    border-color: #ef4444 !important;
}

#card-errors {
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

/* Booking Calendar Specific Adjustments */
.page-template-booking-calender .input-group {
    position: relative;
    margin-bottom: 25px;
}

.page-template-booking-calender label.error {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 5;
    margin-top: 2px !important;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
