.acb-booking-container {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.acb-form-left {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.acb-sidebar-right {
    flex: 1;
}
.booking-summary-card {
    position: sticky;
    top: 20px;
    background: #f9fbfd;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
}
.acb-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}
.acb-counter button {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}
.acb-extras-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.extra-item, .freq-item {
    border: 1px solid #ccc;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}
.extra-item.active, .freq-item.active {
    border-color: #1e3a8a;
    background: #eff6ff;
    color: #1e3a8a;
}
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
}
#acb_submit_btn {
    background: #2563eb;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}