/* ── Birthday Room Booking – Frontend ─────────────────────────
   Brand palette: yellow #F2C53D · coral #E8735A · teal #50C4BB · blue #8AAFD4
   Headlines: Alfa Slab One (Google Fonts)
   ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

:root {
    --brb-yellow:      #F2C53D;
    --brb-coral:       #E8735A;
    --brb-teal:        #50C4BB;
    --brb-blue:        #8AAFD4;
    --brb-dark:        #1A1A1A;
    --brb-muted:       #6B7280;
    --brb-light-bg:    #F9F9F9;
    --brb-border:      #E5E7EB;
    --brb-radius:      14px;
    --brb-shadow:      0 4px 24px rgba(0,0,0,.07);

    /* Calendar dot/state colors */
    --brb-avail:       #50C4BB;
    --brb-partial:     #F2C53D;
    --brb-full:        #E8735A;
    --brb-past:        #D1D5DB;
}

/* ── Base ──────────────────────────────────────────────────── */
.brb-widget {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--brb-dark);
}

.brb-widget h2,
.brb-widget h3,
.brb-section-title {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400; /* Alfa Slab One is already heavy */
}

/* ── Steps ─────────────────────────────────────────────────── */
.brb-step { display: none; }
.brb-step.active { display: block; animation: brbFadeIn .28s ease; }

@keyframes brbFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Progress indicator ────────────────────────────────────── */
.brb-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}
.brb-progress-step {
    display: flex;
    align-items: center;
    gap: 0;
}
.brb-progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brb-border);
    color: var(--brb-muted);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    position: relative;
}
.brb-progress-dot.active {
    background: var(--brb-yellow);
    color: var(--brb-dark);
    box-shadow: 0 0 0 4px rgba(242,197,61,.25);
}
.brb-progress-dot.done {
    background: var(--brb-teal);
    color: #fff;
}
.brb-progress-line {
    width: 40px;
    height: 3px;
    background: var(--brb-border);
    transition: background .25s;
}
.brb-progress-line.done { background: var(--brb-teal); }
.brb-progress-label {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .68rem;
    white-space: nowrap;
    color: var(--brb-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.brb-progress-dot.active .brb-progress-label { color: var(--brb-dark); }

/* ── Section header ────────────────────────────────────────── */
.brb-section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.brb-section-icon {
    font-size: 2.2rem;
    margin-bottom: .4rem;
    display: block;
}
.brb-section-title {
    font-size: 1.9rem;
    margin: 0 0 .4rem;
    color: var(--brb-dark);
    line-height: 1.15;
}
.brb-section-sub {
    color: var(--brb-muted);
    margin: 0;
    font-size: .95rem;
}

/* ── Back button ───────────────────────────────────────────── */
.brb-step-back { margin-bottom: 1.5rem; }
.brb-btn-back {
    background: none;
    border: 1.5px solid var(--brb-border);
    border-radius: 8px;
    padding: .4rem .9rem;
    cursor: pointer;
    color: var(--brb-muted);
    font-size: .88rem;
    transition: all .2s;
}
.brb-btn-back:hover { border-color: var(--brb-dark); color: var(--brb-dark); }

/* ── Calendar ──────────────────────────────────────────────── */
.brb-calendar {
    background: #fff;
    border: 1.5px solid var(--brb-border);
    border-radius: var(--brb-radius);
    box-shadow: var(--brb-shadow);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.brb-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brb-teal);
    padding: 1rem 1.5rem;
    color: #fff;
}
.brb-cal-title {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    font-size: 1.15rem;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: .01em;
    color: #fff;
}
.brb-nav-btn {
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    line-height: 1;
}
.brb-nav-btn:hover { background: rgba(255,255,255,.35); }

.brb-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #F5F5F5;
    border-bottom: 1.5px solid var(--brb-border);
}
.brb-cal-weekdays span {
    text-align: center;
    padding: .55rem 0;
    font-size: .72rem;
    font-weight: 700;
    color: var(--brb-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.brb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--brb-border);
    padding: 1px;
}

.brb-cal-cell {
    background: #fff;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
    min-height: 44px;
}
.brb-cal-cell.brb-cal-empty { background: #FAFAFA; }

.brb-day-num {
    font-size: .88rem;
    font-weight: 600;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .15s;
}

/* Day states */
.brb-cal-cell.past .brb-day-num {
    color: var(--brb-past);
    cursor: not-allowed;
}
.brb-cal-cell.today .brb-day-num {
    border: 2px solid var(--brb-dark);
    font-weight: 700;
}
.brb-cal-cell.available { cursor: pointer; }
.brb-cal-cell.available:hover .brb-day-num {
    background: var(--brb-teal);
    color: #fff;
    transform: scale(1.1);
}
.brb-cal-cell.available::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brb-teal);
}
.brb-cal-cell.partial { cursor: pointer; }
.brb-cal-cell.partial:hover .brb-day-num {
    background: var(--brb-yellow);
    color: var(--brb-dark);
    transform: scale(1.1);
}
.brb-cal-cell.partial::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brb-yellow);
}
.brb-cal-cell.full .brb-day-num {
    color: #fff;
    background: var(--brb-coral);
    cursor: not-allowed;
}
.brb-cal-cell.full::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brb-coral);
}

/* ── Calendar legend ───────────────────────────────────────── */
.brb-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.brb-legend-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--brb-muted);
    font-weight: 500;
}
.brb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.brb-dot.available { background: var(--brb-teal); }
.brb-dot.partial   { background: var(--brb-yellow); }
.brb-dot.full      { background: var(--brb-coral); }

/* ── Pricing grid ──────────────────────────────────────────── */
.brb-pricing-info {
    background: #fff;
    border: 1.5px solid var(--brb-border);
    border-radius: var(--brb-radius);
    padding: 1.5rem;
    box-shadow: var(--brb-shadow);
}
.brb-pricing-info h4 {
    margin: 0 0 1rem;
    font-size: .75rem;
    color: var(--brb-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 700;
}
.brb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.brb-price-badge {
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.brb-price-badge.mon-thu { background: rgba(80,196,187,.1);  border: 2px solid var(--brb-teal); }
.brb-price-badge.fri     { background: rgba(242,197,61,.12); border: 2px solid var(--brb-yellow); }
.brb-price-badge.sat-sun { background: rgba(232,115,90,.1);  border: 2px solid var(--brb-coral); }

.brb-price-day {
    font-size: .72rem;
    font-weight: 700;
    color: var(--brb-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.brb-price-amount {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--brb-dark);
}
.brb-price-badge.mon-thu .brb-price-amount { color: var(--brb-teal); }
.brb-price-badge.fri     .brb-price-amount { color: #B8920A; }
.brb-price-badge.sat-sun .brb-price-amount { color: var(--brb-coral); }

/* ── Slots ─────────────────────────────────────────────────── */
.brb-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.brb-slot-btn {
    background: #fff;
    border: 2px solid var(--brb-border);
    border-radius: var(--brb-radius);
    padding: 1.4rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    transition: all .2s;
    box-shadow: var(--brb-shadow);
}
.brb-slot-btn:hover {
    border-color: var(--brb-yellow);
    box-shadow: 0 4px 20px rgba(242,197,61,.25);
    transform: translateY(-2px);
}
.brb-slot-btn.selected {
    border-color: var(--brb-yellow);
    background: rgba(242,197,61,.08);
}
.brb-slot-label {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--brb-dark);
}
.brb-slot-hours {
    font-size: .85rem;
    color: var(--brb-muted);
}
.brb-slot-price {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--brb-dark);
    margin-top: .2rem;
}
.brb-no-slots {
    text-align: center;
    color: var(--brb-muted);
    padding: 2rem;
}

/* ── Extras ────────────────────────────────────────────────── */
.brb-extras-section { margin-bottom: 2.5rem; }
.brb-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.25rem;
}
.brb-extra-card {
    background: #fff;
    border: 2px solid var(--brb-border);
    border-radius: var(--brb-radius);
    overflow: hidden;
    transition: all .2s;
    box-shadow: var(--brb-shadow);
}
.brb-extra-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    transform: translateY(-3px);
}
.brb-extra-card.selected {
    border-color: var(--brb-yellow);
    box-shadow: 0 6px 24px rgba(242,197,61,.3);
}
.brb-extra-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(80,196,187,.1);
}
.brb-extra-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.brb-extra-card:hover .brb-extra-img img { transform: scale(1.05); }
.brb-extra-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.brb-extra-body { padding: 1rem; }
.brb-extra-name {
    margin: 0 0 .4rem;
    font-size: .95rem;
    font-weight: 700;
}
.brb-extra-desc {
    margin: 0 0 .75rem;
    font-size: .82rem;
    color: var(--brb-muted);
    line-height: 1.4;
}
.brb-extra-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}
.brb-extra-price {
    font-weight: 800;
    color: var(--brb-dark);
    font-size: 1.05rem;
}
.brb-extra-toggle input[type="checkbox"] { display: none; }
.brb-toggle-btn {
    background: var(--brb-light-bg);
    border: 1.5px solid var(--brb-border);
    border-radius: 20px;
    padding: .3rem .85rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--brb-dark);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.brb-extra-check:checked + .brb-toggle-btn {
    background: var(--brb-yellow);
    border-color: var(--brb-yellow);
    color: var(--brb-dark);
}

/* ── Form ──────────────────────────────────────────────────── */
.brb-form-section {
    background: #fff;
    border: 1.5px solid var(--brb-border);
    border-radius: var(--brb-radius);
    padding: 2rem;
    box-shadow: var(--brb-shadow);
}
.brb-form-group { margin-bottom: 1.25rem; }
.brb-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: .4rem;
    font-size: .88rem;
    color: var(--brb-dark);
}
.brb-req { color: var(--brb-coral); }

.brb-form-group input[type="text"],
.brb-form-group input[type="email"],
.brb-form-group input[type="tel"],
.brb-form-group textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--brb-border);
    border-radius: 10px;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
    background: #FAFAFA;
}
.brb-form-group input:focus,
.brb-form-group textarea:focus {
    outline: none;
    border-color: var(--brb-yellow);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(242,197,61,.2);
}
.brb-form-group textarea { resize: vertical; }
.brb-form-row { display: flex; gap: 1rem; }
.brb-form-2col > * { flex: 1; min-width: 0; }

/* ── Price summary ─────────────────────────────────────────── */
.brb-summary {
    background: var(--brb-light-bg);
    border: 1.5px solid var(--brb-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}
.brb-summary-title {
    margin: 0 0 .75rem;
    font-size: .72rem;
    color: var(--brb-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 700;
}
.brb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    margin-bottom: .4rem;
}
.brb-summary-extra { color: var(--brb-muted); font-size: .85rem; }
.brb-summary-price { font-weight: 600; }
.brb-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brb-dark);
    border-top: 1.5px solid var(--brb-border);
    padding-top: .75rem;
    margin-top: .5rem;
}
.brb-summary-discount-row {
    display: flex;
    justify-content: space-between;
    padding: .35rem 0;
    font-size: .9rem;
}
.brb-discount-price { font-weight: 600; color: #16a34a; }

/* ── Coupon ────────────────────────────────────────────────── */
.brb-coupon-section {
    margin: 1.25rem 0;
    border: 1.5px solid var(--brb-border);
    border-radius: 10px;
    overflow: hidden;
}
.brb-coupon-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    background: var(--brb-light-bg);
    cursor: pointer;
    font-size: .88rem;
    color: var(--brb-dark);
    font-weight: 600;
    user-select: none;
    transition: background .15s;
}
.brb-coupon-toggle:hover { background: #EFEFEF; }
.brb-coupon-arrow { font-size: .7rem; color: var(--brb-muted); }
.brb-coupon-input-wrap { padding: .75rem 1rem; background: #fff; }
.brb-coupon-row {
    display: flex;
    gap: .5rem;
    align-items: center;
}
.brb-coupon-row input {
    flex: 1;
    padding: .55rem .75rem;
    border: 1.5px solid var(--brb-border);
    border-radius: 8px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: #FAFAFA;
}
.brb-coupon-row input:focus {
    outline: none;
    border-color: var(--brb-yellow);
    box-shadow: 0 0 0 3px rgba(242,197,61,.2);
}
.brb-btn-secondary {
    padding: .55rem 1rem;
    background: var(--brb-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s;
}
.brb-btn-secondary:hover { background: #333; }
.brb-btn-remove {
    padding: .55rem .75rem;
    background: rgba(232,115,90,.1);
    color: var(--brb-coral);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
}
.brb-coupon-feedback { margin-top: .4rem; font-size: .85rem; }
.brb-coupon-ok  { color: #16a34a; font-weight: 600; }
.brb-coupon-err { color: var(--brb-coral); }

/* ── Payment notice (step 3) ───────────────────────────────── */
.brb-payment-notice {
    border: 1.5px solid rgba(80,196,187,.35);
    border-radius: 12px;
    overflow: hidden;
    margin: 1.25rem 0;
}
.brb-payment-notice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 1.1rem;
    font-size: .9rem;
}
.brb-payment-notice-row em {
    font-style: normal;
    color: var(--brb-muted);
    font-size: .82em;
}
.brb-pn-deposit {
    background: rgba(242,197,61,.13);
    border-bottom: 1px solid rgba(80,196,187,.2);
}
.brb-pn-deposit strong { color: #B8920A; font-size: 1.05rem; }
.brb-pn-later {
    background: #fff;
    border-bottom: 1px solid rgba(80,196,187,.2);
}
.brb-pn-later strong { color: var(--brb-muted); }
.brb-payment-notice-info {
    margin: 0;
    padding: .6rem 1.1rem;
    font-size: .78rem;
    color: var(--brb-muted);
    background: rgba(80,196,187,.05);
    line-height: 1.5;
}

/* ── Form error ────────────────────────────────────────────── */
.brb-form-error {
    background: rgba(232,115,90,.1);
    border: 1.5px solid var(--brb-coral);
    border-radius: 10px;
    padding: .75rem 1rem;
    color: var(--brb-coral);
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ── Submit button ─────────────────────────────────────────── */
.brb-submit-btn {
    width: 100%;
    background: var(--brb-yellow);
    color: var(--brb-dark);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(242,197,61,.4);
    letter-spacing: .01em;
}
.brb-submit-btn:hover:not(:disabled) {
    background: #E8B82E;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(242,197,61,.5);
}
.brb-submit-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

/* ── Payment step ──────────────────────────────────────────── */
.brb-payment-section {
    max-width: 540px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
}

/* ── Deposit summary box ───────────────────────────────────── */
.brb-deposit-box {
    background: linear-gradient(135deg, rgba(80,196,187,.07) 0%, rgba(138,175,212,.07) 100%);
    border: 1.5px solid rgba(80,196,187,.3);
    border-radius: var(--brb-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}
.brb-deposit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem 0;
    font-size: .95rem;
    border-bottom: 1px solid rgba(80,196,187,.15);
}
.brb-deposit-row:last-of-type { border-bottom: none; }
.brb-deposit-row em {
    font-style: normal;
    color: var(--brb-muted);
    font-size: .85em;
}
.brb-deposit-now {
    background: rgba(242,197,61,.12);
    border-radius: 8px;
    padding: .6rem .75rem;
    margin: .35rem 0;
    border-bottom: none !important;
}
.brb-deposit-now strong { color: #B8920A; font-size: 1.1rem; }
.brb-deposit-later strong { color: var(--brb-muted); }
.brb-deposit-note {
    margin: .85rem 0 0;
    font-size: .78rem;
    color: var(--brb-muted);
    line-height: 1.5;
    border-top: 1px dashed var(--brb-border);
    padding-top: .75rem;
}

/* ── Payment method selection cards ────────────────────────── */
.brb-pay-methods {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.25rem;
}
.brb-pay-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid var(--brb-border);
    border-radius: var(--brb-radius);
    cursor: pointer;
    transition: all .2s;
    box-shadow: var(--brb-shadow);
    user-select: none;
}
.brb-pay-method-card:hover {
    border-color: var(--brb-yellow);
    box-shadow: 0 4px 20px rgba(242,197,61,.2);
}
.brb-pay-method-card.selected {
    border-color: var(--brb-yellow);
    background: rgba(242,197,61,.06);
    box-shadow: 0 4px 20px rgba(242,197,61,.25);
}
.brb-pay-method-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 2.4rem;
    text-align: center;
}
.brb-pay-method-label {
    flex: 1;
    font-weight: 700;
    font-size: .95rem;
    color: var(--brb-dark);
}
.brb-pay-method-radio {
    flex-shrink: 0;
}
.brb-radio-circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--brb-border);
    background: #fff;
    transition: all .2s;
    position: relative;
}
.brb-pay-method-card.selected .brb-radio-circle {
    border-color: var(--brb-yellow);
    background: var(--brb-yellow);
    box-shadow: inset 0 0 0 4px #fff;
}

/* ── Payment action areas ──────────────────────────────────── */
.brb-pay-area {
    animation: brbFadeIn .22s ease;
}
.brb-pay-secure-note {
    text-align: center;
    font-size: .78rem;
    color: var(--brb-muted);
    margin: .6rem 0 0;
}

/* ── Manual payment instructions ──────────────────────────── */
.brb-pay-instructions {
    background: var(--brb-light-bg);
    border: 1.5px solid var(--brb-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: .9rem;
    line-height: 1.65;
    white-space: pre-line;
    margin-bottom: 1rem;
    color: var(--brb-dark);
}
.brb-manual-confirm-btn {
    width: 100%;
    background: var(--brb-teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .95rem 2rem;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(80,196,187,.35);
    letter-spacing: .01em;
}
.brb-manual-confirm-btn:hover:not(:disabled) {
    background: #3DADA4;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(80,196,187,.5);
}
.brb-manual-confirm-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

/* ── PayPal logo in method card ────────────────────────────── */
.brb-paypal-logo {
    height: 18px;
    width: auto;
    display: block;
    overflow: visible;
}

/* ── PayPal inline error ───────────────────────────────────── */
.brb-paypal-error-box {
    background: rgba(232,115,90,.08);
    border: 1.5px solid var(--brb-coral);
    border-radius: 10px;
    padding: .9rem 1.1rem;
    text-align: center;
}
.brb-paypal-error-box p {
    margin: 0 0 .65rem;
    font-size: .88rem;
    color: var(--brb-coral);
    font-weight: 500;
}
.brb-paypal-retry-btn {
    background: none;
    border: 1.5px solid var(--brb-coral);
    color: var(--brb-coral);
    border-radius: 20px;
    padding: .35rem .9rem;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.brb-paypal-retry-btn:hover {
    background: var(--brb-coral);
    color: #fff;
}

/* ── PayPal buttons container ──────────────────────────────── */
#brb-paypal-buttons {
    min-height: 50px;
    margin-bottom: .5rem;
}
#brb-paypal-buttons iframe {
    border-radius: 50px !important; /* matches pill shape */
}

.brb-payment-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--brb-muted);
}

/* ── Clickable progress dots ───────────────────────────────── */
.brb-progress-dot.done {
    cursor: pointer;
}
.brb-progress-dot.done:hover {
    background: #3DADA4;
    transform: scale(1.1);
}

/* ── Confirmation ──────────────────────────────────────────── */
.brb-confirmation {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: var(--brb-radius);
    border: 1.5px solid var(--brb-border);
    box-shadow: var(--brb-shadow);
}
.brb-confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}
.brb-confirmation h2 {
    font-size: 2rem;
    color: var(--brb-dark);
    margin: 0 0 1rem;
}
.brb-confirmation p {
    color: var(--brb-muted);
    max-width: 480px;
    margin: 0 auto .75rem;
}
.brb-confirm-sub { font-size: .9rem !important; }
.brb-confirm-total {
    display: inline-block;
    background: rgba(242,197,61,.15);
    border: 1.5px solid var(--brb-yellow);
    border-radius: 10px;
    padding: .6rem 1.5rem;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--brb-dark) !important;
    margin: .5rem 0 !important;
}
.brb-btn-new {
    margin-top: 1.5rem;
    background: none;
    border: 2px solid var(--brb-dark);
    color: var(--brb-dark);
    border-radius: 50px;
    padding: .7rem 2rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.brb-btn-new:hover {
    background: var(--brb-dark);
    color: #fff;
}

/* ── Loader ────────────────────────────────────────────────── */
.brb-overlay-loader {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--brb-radius);
}
.brb-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid var(--brb-border);
    border-top-color: var(--brb-yellow);
    border-radius: 50%;
    animation: brbSpin .7s linear infinite;
}
@keyframes brbSpin { to { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 600px) {
    .brb-pricing-grid     { gap: .5rem; }
    .brb-price-amount     { font-size: 1.25rem; }
    .brb-price-day        { font-size: .65rem; }
    .brb-form-row         { flex-direction: column; }
    .brb-extras-grid      { grid-template-columns: repeat(2, 1fr); }
    .brb-form-section     { padding: 1.25rem; }
    .brb-section-title    { font-size: 1.5rem; }
    .brb-cal-weekdays span{ font-size: .62rem; }
    .brb-day-num          { font-size: .78rem; width: 28px; height: 28px; }
    .brb-progress-line    { width: 24px; }
    .brb-progress-label   { display: none; }
    .brb-section-detail   { font-size: .8rem !important; }
}
