/* Resa Booking — Frontend styles */
.resa-form {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
    font-family: inherit;
    box-sizing: border-box;
}
.resa-form *, .resa-form *::before, .resa-form *::after { box-sizing: border-box; }

.resa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .resa-grid { grid-template-columns: 1fr; }
    .resa-form { padding: 18px; }
}

.resa-field { display: flex; flex-direction: column; }
.resa-field--full { grid-column: 1 / -1; margin-top: 16px; }

.resa-field label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1rem;
    color: #333;
}
.resa-field .req { color: #c0392b; }

.resa-form input[type="text"],
.resa-form input[type="email"],
.resa-form input[type="tel"],
.resa-form input[type="number"],
.resa-form input[type="date"],
.resa-form select,
.resa-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
    font-family: inherit;
}
.resa-form input:focus,
.resa-form select:focus,
.resa-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}
.resa-form input.resa-error,
.resa-form select.resa-error,
.resa-form textarea.resa-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.resa-form .resa-field-error {
    color: #dc2626;
    font-size: 0.875em;
    margin-top: 4px;
}

.resa-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important; height: 1px !important;
    overflow: hidden !important;
}

.resa-submit { margin-top: 24px; text-align: center; }

.resa-form__feedback { margin-bottom: 16px; }
.resa-form__feedback.is-success {
    padding: 14px 16px;
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    color: #065f46;
    border-radius: 4px;
}
.resa-form__feedback.is-error {
    padding: 14px 16px;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
    border-radius: 4px;
}
