/* =====================================================
   APP WRAPPER
===================================================== */
#vrbx-booking-app {
    max-width: 960px;
    margin: 20px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =====================================================
   STEP CARD (DÙNG CHUNG)
===================================================== */
.vrbx-step {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.vrbx-step-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* =====================================================
   STEP 1 – FORM FIELD
===================================================== */
.vrbx-field {
    margin-bottom: 14px;
}

.vrbx-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #334155;
}

.vrbx-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 14px;
}

.vrbx-field select:disabled {
    background: #f1f5f9;
    color: #94a3b8;
}

/* =====================================================
   STEP 1 – CHECKBOX LIST
===================================================== */
.vrbx-checkbox-list {
    padding: 8px 0;
}

.vrbx-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: #0f172a;
}

.vrbx-checkbox-item input {
    accent-color: #1e73be;
}

/* =====================================================
   BUTTON – DÙNG CHUNG (BASE)
===================================================== */
.vrbx-btn-primary {
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

/* =====================================================
   STEP 1 BUTTON
===================================================== */
.vrbx-step .vrbx-btn-primary {
    background: #1e73be;
    color: #ffffff;
}

.vrbx-step .vrbx-btn-primary:hover {
    background: #155d9c;
}

/* =====================================================
   STEP 2 WRAPPER
===================================================== */
.vrbx-step2-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.vrbx-step2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

/* =====================================================
   STEP 2 – BACK BUTTON (RƯỢU VANG)
===================================================== */
.vrbx-back-btn {
    background: linear-gradient(135deg, #5b1b1b, #4a1414);
    color: #f5d27a;
    border: 1px solid #e6c66b;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s;
}

.vrbx-back-btn:hover {
    background: linear-gradient(135deg, #6b2323, #5a1a1a);
    color: #fff1b8;
}

/* =====================================================
   STEP 2 – FILTER
===================================================== */
#vrbx-filter-operator {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e6c66b;
    min-width: 220px;
    font-weight: 500;
    color: #5b1b1b;
}

/* =====================================================
   STEP 2 – TABLE
===================================================== */
.vrbx-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

/* HEADER RƯỢU VANG */
.vrbx-table thead {
    background: linear-gradient(135deg, #5b1b1b, #4a1414);
}

.vrbx-table thead th {
    color: #f5d27a;
    font-weight: 600;
    letter-spacing: .3px;
    border-bottom: 2px solid #e6c66b;
    text-transform: uppercase;
    font-size: 13px;
    padding: 12px 14px;
}

/* BODY */
.vrbx-table td {
    padding: 12px 14px;
    font-size: 14px;
    color: #3a2a2a;
    border-bottom: 1px solid #e5e7eb;
}

.vrbx-table tbody tr:hover {
    background: #fbf7f1;
}

/* =====================================================
   STEP 2 – ACTION BUTTON
===================================================== */
.vrbx-step2-wrap .vrbx-btn-primary {
    background: linear-gradient(135deg, #7a2323, #5b1b1b);
    color: #f5d27a;
    border: 1px solid #e6c66b;
    padding: 8px 14px;
    font-size: 14px;
}

.vrbx-step2-wrap .vrbx-btn-primary:hover {
    background: linear-gradient(135deg, #8a2c2c, #6b1f1f);
    color: #fff1b8;
}

/* =====================================================
   LOADING
===================================================== */
#vrbx-step2-loading {
    text-align: center;
    padding: 20px;
    font-weight: 500;
}
/* =========================
   STEP 2 – MOBILE HIDE COLUMNS
========================= */
@media (max-width: 768px) {

    .vrbx-table .col-seat,
    .vrbx-table .col-amenities {
        display: none;
    }

    .vrbx-table {
        font-size: 14px;
    }
}


/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 768px) {
    .vrbx-step2-header {
        flex-direction: column;
        align-items: stretch;
    }

    .vrbx-table {
        font-size: 13px;
    }

}
/* ================================
   STEP 3 – 3 BOX OPTIONS
================================ */
.vrbx-step3-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.vrbx-step3-box {
    background: #fff;
    border: 1px solid #e6c66b;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .06);
    transition: transform .2s, box-shadow .2s;
}

.vrbx-step3-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.vrbx-step3-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.vrbx-step3-box h4 {
    margin: 8px 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #5b1b1b;
}

.vrbx-step3-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #3a2a2a;
    margin-bottom: 14px;
}

/* BOX HIGHLIGHT */
.vrbx-step3-box.highlight {
    border: 2px solid #7a2323;
    background: #fbf7f1;
}

/* BIG BUTTON */
.vrbx-btn-big {
    padding: 12px 22px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
    .vrbx-step3-boxes {
        grid-template-columns: 1fr;
    }
}
/* ================================
   STEP 3 – BOOKING OPTIONS (3 COL)
================================ */
.vrbx-booking-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.vrbx-booking-box {
    background: #fff;
    border: 1px solid #e6c66b;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .06);
    transition: transform .2s, box-shadow .2s;
}

.vrbx-booking-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .12);
}

.vrbx-booking-icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.vrbx-booking-box h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #5b1b1b;
}

.vrbx-booking-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #3a2a2a;
    margin-bottom: 14px;
}

/* CTA NỔI BẬT */
.vrbx-booking-box.highlight {
    border: 2px solid #7a2323;
    background: #fbf7f1;
}

/* CTA TO */
.vrbx-btn-big {
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 900px) {
    .vrbx-booking-options {
        grid-template-columns: 1fr;
    }
}
.vrbx-step3-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    margin-bottom: 32px;
}

.vrbx-step3-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vrbx-info-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
}

.vrbx-info-box h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
}

.vrbx-info-box p {
    margin: 6px 0;
    font-size: 14px;
}

#vrbx-route-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 10px;
}

.vrbx-map-loading {
    padding: 80px 0;
    text-align: center;
    color: #64748b;
}

/* MOBILE */
@media (max-width: 900px) {
    .vrbx-step3-layout {
        grid-template-columns: 1fr;
    }
}
/* =========================
   STEP 2 – FORCE HIDE COLUMNS MOBILE
========================= */
@media (max-width: 768px) {

    /* Ẩn SỐ CHỖ (cột 3) */
    #vrbx-step2 table thead th:nth-child(3),
    #vrbx-step2 table tbody td:nth-child(3) {
        display: none !important;
    }

    /* Ẩn TIỆN ÍCH (cột 5) */
    #vrbx-step2 table thead th:nth-child(5),
    #vrbx-step2 table tbody td:nth-child(5) {
        display: none !important;
    }

    /* Gọn bảng hơn */
    #vrbx-step2 table {
        font-size: 14px;
    }
}


