.cbs-booking-wrap {
    width: 100%;
}

.cbs-form-card {
    background: #e9e9e9;
    border-radius: 4px;
    padding: 22px 20px 18px;
    max-width: 760px;
    margin: 0 auto;
}

.cbs-form-title {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 34px;
    line-height: 1;
    color: #2f2f2f;
    font-weight: 700;
}

.cbs-form-title .cbs-accent {
    color: #f56c00;
}

.cbs-form-title::after {
    content: '';
    color: #f56c00;
}

.cbs-form-subtitle {
    text-align: center;
    margin: 8px 0 16px;
    color: #5d5d5d;
    font-size: 12px;
}

.cbs-booking-form {
    border-top: 2px solid #f56c00;
    padding-top: 14px;
}

.cbs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.cbs-grid p {
    margin: 0;
}

.cbs-grid input,
.cbs-grid select,
.cbs-grid textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    background: #f7f7f7;
    border-radius: 2px;
    min-height: 38px;
    padding: 9px 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #3b3b3b;
}

.cbs-grid textarea {
    resize: vertical;
}

.cbs-grid input:focus,
.cbs-grid select:focus,
.cbs-grid textarea:focus {
    outline: none;
    border-color: #f56c00;
    box-shadow: 0 0 0 1px rgba(245, 108, 0, 0.2);
}

.cbs-full-width {
    grid-column: 1 / -1;
}

.cbs-submit-btn,
.cbs-booking-button {
    display: inline-block;
    border: 0;
    background: #f56c00;
    color: #ffffff;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cbs-submit-btn {
    width: 100%;
    min-height: 36px;
    font-size: 13px;
    margin-top: 10px;
}

.cbs-submit-btn:hover,
.cbs-booking-button:hover,
.cbs-submit-btn:focus,
.cbs-booking-button:focus {
    background: #d95b00;
    color: #ffffff;
}

.cbs-booking-button {
    padding: 12px 18px;
}

.cbs-alert {
    margin: 0 auto 14px;
    padding: 10px 12px;
    max-width: 760px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cbs-alert.is-hiding {
    opacity: 0;
    transform: translateY(-6px);
}

.cbs-alert.success {
    border: 1px solid #97c7a8;
    background: #e9f6ee;
    color: #1d5f31;
}

.cbs-alert.error {
    border: 1px solid #dca0a0;
    background: #fbecec;
    color: #7e1f1f;
}

@media (max-width: 767px) {
    .cbs-form-card {
        padding: 16px 12px 14px;
    }

    .cbs-form-title {
        font-size: 26px;
    }

    .cbs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
