/* Zintra Booking Form - matches the existing brand teal (#198080) and zintra- naming */

.zbx-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
@media (max-width: 782px) {
    .zbx-wrap { grid-template-columns: 1fr; }
}

.zbx-summary-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
}
.zbx-summary-card img { width: 100%; border-radius: 8px; margin-bottom: 12px; }
.zbx-summary-card h3 { margin: 0 0 8px; }
.zbx-note { font-size: 13px; color: #198080; font-weight: 600; }

.zbx-form-group {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 28px;
}
.zbx-form-group label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}
.zbx-form-group input[type="text"],
.zbx-form-group input[type="email"],
.zbx-form-group input[type="tel"],
.zbx-form-group input[type="number"],
.zbx-form-group input[type="date"] {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-weight: 400;
}
.zbx-form-group input:focus {
    outline: none;
    border-color: #198080;
    box-shadow: 0 0 0 3px rgba(25,128,128,0.12);
}

.zbx-promo-row { display: flex; gap: 8px; margin-top: 6px; }
.zbx-promo-row input { flex: 1; margin-top: 0; }

#zbx-promo-message { font-size: 13px; color: #198080; min-height: 18px; }

.zbx-totals { border-top: 1px solid #eee; margin-top: 12px; padding-top: 12px; }
.zbx-totals p { display: flex; justify-content: space-between; margin: 4px 0; font-weight: 500; }
.zbx-total-line { font-size: 18px; font-weight: 700 !important; color: #198080; }

#zbx-card-element {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
    margin-bottom: 8px;
}
#zbx-card-errors { color: crimson; font-size: 13px; min-height: 18px; margin-bottom: 12px; }

.zbx-checkbox { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; font-size: 13px; }
.zbx-checkbox input { width: auto; margin-top: 3px; }

.zbx-wrap .zbx-next-step,
.zbx-wrap .zbx-prev-step,
.zbx-wrap .zbx-submit-step-btn,
.zbx-wrap .zbx-apply-btn {
    background: #198080;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
}
.zbx-wrap .zbx-apply-btn { padding: 10px 16px; margin-top: 0; }
.zbx-wrap .zbx-prev-step { background: #eee; color: #333; }
.zbx-wrap .zbx-next-step:hover,
.zbx-wrap .zbx-submit-step-btn:hover,
.zbx-wrap .zbx-apply-btn:hover { background: #156666; }

.zbx-wrap .zbx-step-indicator {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #198080;
    font-weight: 700;
    margin-bottom: 16px;
}

.zbx-book-cta { margin: 24px 0; }
.zbx-book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #198080;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none !important;
}
.zbx-book-now-btn:hover { background: #156666; }

#zbx-submit-message { margin-top: 12px; font-weight: 600; }

.zbx-manage-wrap { display: block; }
.zbx-manage-wrap .zbx-form-group { max-width: 500px; margin: 0 auto; }
.zbx-manage-wrap #zbxc-result { margin-top: 20px; }
.zbxc-error { color: crimson; font-weight: 600; }

/* jQuery UI datepicker: blocked/unavailable dates */
.ui-datepicker .zbx-date-blocked a {
    background: #ffebee !important;
    color: #f44336 !important;
    text-decoration: line-through;
}
.ui-datepicker { font-family: inherit; z-index: 99999 !important; }
.ui-datepicker-calendar .ui-state-default { text-align: center; }
