/* =====================================================
   EKN CaterFlow — Public Form Styles v2.0
   All colours driven by CSS custom properties from
   the Style Engine. No hardcoded colours here.
   ===================================================== */

/* ── GOOGLE FONTS loaded via PHP enqueue ── */

/* ── WRAP ── */
.cbp-booking-wrap {
    font-family: var(--cbp-font-body, 'DM Sans', sans-serif);
    max-width: 860px;
    margin: 0 auto;
    color: var(--cbp-text);
    background: var(--cbp-bg, #faf7f2);
    border-radius: calc(var(--cbp-radius, 10px) * 2);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,.1);
}

/* ── HERO HEADER ── */
.cbp-form-hero {
    background: var(--cbp-primary, #1a1f35);
    padding: 48px 52px 44px;
    position: relative;
    overflow: hidden;
}
.cbp-form-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: var(--cbp-accent, #c9a84c);
    opacity: .06;
    pointer-events: none;
}
.cbp-form-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--cbp-accent, #c9a84c);
    opacity: .04;
    pointer-events: none;
}
.cbp-form-hero-inner { position: relative; z-index: 1; }

/* Logo in hero */
.cbp-form-logo {
    max-height: 52px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.cbp-eyebrow {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--cbp-accent, #c9a84c);
    margin-bottom: 10px;
    display: block;
    opacity: .9;
}
.cbp-form-title {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.cbp-form-title em {
    color: var(--cbp-accent, #c9a84c);
    font-style: italic;
}
.cbp-form-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 18px;
}
.cbp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cbp-trust-badges span {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.15);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}

/* ── PROGRESS BAR ── */
.cbp-progress-bar {
    background: var(--cbp-primary, #1a1f35);
    padding: 0 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex;
    gap: 0;
}
.cbp-progress-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    position: relative;
    cursor: default;
    transition: color .3s;
}
.cbp-progress-step::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    transition: background .3s;
}
.cbp-progress-step.active { color: rgba(255,255,255,.9); }
.cbp-progress-step.active::after { background: var(--cbp-accent, #c9a84c); }
.cbp-progress-step.done { color: var(--cbp-accent-light, #e2c97e); }
.cbp-progress-step.done::after { background: var(--cbp-accent, #c9a84c); }
.cbp-ps-num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600;
    transition: all .3s;
    flex-shrink: 0;
}
.cbp-progress-step.active .cbp-ps-num { background: var(--cbp-accent, #c9a84c); color: #111; }
.cbp-progress-step.done .cbp-ps-num { background: var(--cbp-accent, #c9a84c); color: #111; }
.cbp-ps-label { font-weight: 500; }
@media(max-width:600px){ .cbp-ps-label { display:none; } .cbp-progress-bar { padding: 0 20px; } }

/* ── STEP BODY ── */
.cbp-form { background: var(--cbp-bg, #faf7f2); }

.cbp-step {
    display: none;
    padding: 40px 52px 36px;
    animation: cbpFadeIn .35s ease;
}
.cbp-step.active { display: block; }
.cbp-step.slide-out-left  { animation: cbpSlideOutLeft .25s ease forwards; }
.cbp-step.slide-out-right { animation: cbpSlideOutRight .25s ease forwards; }
.cbp-step.slide-in-right  { animation: cbpSlideInRight .3s ease forwards; }
.cbp-step.slide-in-left   { animation: cbpSlideInLeft .3s ease forwards; }

@keyframes cbpFadeIn        { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
@keyframes cbpSlideOutLeft  { from{opacity:1;transform:translateX(0)}    to{opacity:0;transform:translateX(-40px)} }
@keyframes cbpSlideOutRight { from{opacity:1;transform:translateX(0)}    to{opacity:0;transform:translateX(40px)} }
@keyframes cbpSlideInRight  { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes cbpSlideInLeft   { from{opacity:0;transform:translateX(-40px)}to{opacity:1;transform:translateX(0)} }

@media(max-width:600px){ .cbp-step { padding: 28px 22px 24px; } }

.cbp-step-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cbp-border, #e0d9ce);
}
.cbp-step-number {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--cbp-accent, #c9a84c);
    line-height: 1;
    opacity: .6;
    flex-shrink: 0;
}
.cbp-step-header h3 {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--cbp-text, #2c2c3a);
    margin: 0 0 4px;
}
.cbp-step-header p { font-size: 13px; color: var(--cbp-text, #2c2c3a); opacity: .6; margin: 0; }

/* ── FIELDS ── */
.cbp-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media(max-width:600px){ .cbp-field-grid { grid-template-columns: 1fr; } }

.cbp-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.cbp-field--full { grid-column: 1 / -1; }

.cbp-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--cbp-text, #2c2c3a);
    opacity: .65;
}
.cbp-field label span { color: #e55353; opacity: 1; }

.cbp-field input[type="text"],
.cbp-field input[type="email"],
.cbp-field input[type="tel"],
.cbp-field input[type="date"],
.cbp-field input[type="time"],
.cbp-field input[type="number"],
.cbp-field select,
.cbp-field textarea {
    border: 1.5px solid var(--cbp-border, #e0d9ce);
    border-radius: var(--cbp-radius-sm, 6px);
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--cbp-font-body, 'DM Sans', sans-serif);
    color: var(--cbp-text, #2c2c3a);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.cbp-field input:focus,
.cbp-field select:focus,
.cbp-field textarea:focus {
    border-color: var(--cbp-accent, #c9a84c);
    box-shadow: 0 0 0 3px var(--cbp-accent-rgba, rgba(201,168,76,.12));
}
.cbp-field input.cbp-field-error { border-color: #e55353 !important; box-shadow: 0 0 0 3px rgba(229,83,83,.1) !important; }
.cbp-field-error-msg { font-size: 11px; color: #e55353; margin-top: 3px; display: none; }
.cbp-field-error-msg.visible { display: block; animation: cbpFadeIn .2s ease; }

/* ── ADDRESS BLOCK ── */
.cbp-address-block {
    background: var(--cbp-surface, #f2ede4);
    border-radius: var(--cbp-radius, 10px);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--cbp-border, #e0d9ce);
}
.cbp-address-block-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cbp-text, #2c2c3a);
    opacity: .6;
    margin-bottom: 14px;
}
.cbp-postcode-row { margin-bottom: 10px; }
.cbp-postcode-input-wrap { display: flex; gap: 8px; align-items: flex-end; }
.cbp-postcode-input-wrap input { flex: 1; text-transform: uppercase; }
.cbp-postcode-lookup-btn {
    background: var(--cbp-primary, #1a1f35);
    color: #fff;
    border: none;
    border-radius: var(--cbp-radius-sm, 6px);
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
}
.cbp-postcode-lookup-btn:hover { background: var(--cbp-accent, #c9a84c); color: #111; }
.cbp-postcode-feedback { font-size: 12px; margin-top: 4px; }
.cbp-postcode-feedback.success { color: #2d8a5e; }
.cbp-postcode-feedback.error   { color: #e55353; }

/* Same-as checkbox */
.cbp-same-address-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    background: var(--cbp-accent-rgba, rgba(201,168,76,.1));
    border: 1px solid var(--cbp-accent, #c9a84c);
    border-radius: var(--cbp-radius-sm, 6px);
    padding: 10px 14px;
    cursor: pointer;
}
.cbp-same-address-row input { accent-color: var(--cbp-accent, #c9a84c); }
.cbp-same-address-row label { font-size: 13px; font-weight: 500; color: var(--cbp-text); cursor: pointer; }

/* ── MENU STYLE CARDS ── */
.cbp-menu-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 8px;
}
@media(max-width:600px){ .cbp-menu-cards { grid-template-columns: 1fr 1fr; } }

.cbp-menu-card {
    border: 2px solid var(--cbp-border, #e0d9ce);
    border-radius: var(--cbp-radius, 10px);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    position: relative;
}
.cbp-menu-card:hover { border-color: var(--cbp-accent, #c9a84c); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.cbp-menu-card.selected { border-color: var(--cbp-accent, #c9a84c); background: var(--cbp-accent-rgba, rgba(201,168,76,.08)); }
.cbp-menu-card.selected::after { content: '✓'; position: absolute; top: 6px; right: 8px; font-size: 12px; color: var(--cbp-accent); font-weight: 700; }
.cbp-menu-card input { display: none; }
.cbp-mc-icon { font-size: 24px; margin-bottom: 8px; }
.cbp-mc-label { font-size: 12px; font-weight: 600; color: var(--cbp-text); }
.cbp-mc-desc  { font-size: 11px; color: var(--cbp-muted); margin-top: 3px; }

/* ── NAV BUTTONS ── */
.cbp-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--cbp-border, #e0d9ce);
    gap: 12px;
}
.cbp-btn-next,
.cbp-btn-submit {
    background: var(--cbp-accent, #c9a84c);
    color: #111;
    border: none;
    border-radius: var(--cbp-radius, 10px);
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .02em;
}
.cbp-btn-next:hover,
.cbp-btn-submit:hover { background: var(--cbp-accent-dark, #a0802e); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.cbp-btn-next:disabled,
.cbp-btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.cbp-btn-back {
    background: transparent;
    color: var(--cbp-muted);
    border: 1.5px solid var(--cbp-border);
    border-radius: var(--cbp-radius, 10px);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}
.cbp-btn-back:hover { border-color: var(--cbp-accent); color: var(--cbp-accent); }

/* ── ERRORS ── */
.cbp-errors {
    background: rgba(229,83,83,.08);
    border: 1px solid rgba(229,83,83,.25);
    border-radius: var(--cbp-radius-sm, 6px);
    padding: 10px 14px;
    font-size: 13px;
    color: #c0392b;
    margin-bottom: 16px;
    display: none;
}

/* ── SUCCESS ── */
.cbp-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--cbp-bg);
}
.cbp-success-icon {
    font-size: 52px;
    margin-bottom: 16px;
    animation: cbpBounceIn .5s ease;
}
@keyframes cbpBounceIn {
    0%  { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100%{ transform: scale(1); }
}
.cbp-success-ref {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--cbp-primary, var(--cbp-navy, #1a1f35));
    margin-bottom: 8px;
}
.cbp-success-ref strong { color: var(--cbp-accent); }
.cbp-success p { font-size: 14px; color: var(--cbp-text); opacity: .65; line-height: 1.7; max-width: 400px; margin: 0 auto; }

/* Confetti canvas */
#cbp-confetti-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ── TYPEFORM LAYOUT ── */
.cbp-typeform-wrap {
    font-family: var(--cbp-font-body, 'DM Sans', sans-serif);
    min-height: 100vh;
    background: var(--cbp-primary, #1a1f35);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.cbp-tf-progress-line {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--cbp-accent, #c9a84c);
    transition: width .4s ease;
    z-index: 100;
}
.cbp-tf-header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.cbp-tf-logo { max-height: 36px; object-fit: contain; }
.cbp-tf-brand { font-family: var(--cbp-font-heading, Georgia, serif); font-size: 16px; color: rgba(255,255,255,.8); }
.cbp-tf-step-count { font-size: 12px; color: rgba(255,255,255,.4); margin-left: auto; }

.cbp-tf-screen {
    display: none;
    flex: 1;
    padding: 80px 40px;
    max-width: 660px;
    margin: 0 auto;
    width: 100%;
    animation: cbpTfIn .4s ease;
}
.cbp-tf-screen.active { display: flex; flex-direction: column; justify-content: center; }
@keyframes cbpTfIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.cbp-tf-q-num {
    font-size: 13px;
    color: var(--cbp-accent, #c9a84c);
    margin-bottom: 8px;
    font-weight: 600;
}
.cbp-tf-q-num span { color: rgba(255,255,255,.4); }

.cbp-tf-question {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.cbp-tf-question em { color: var(--cbp-accent, #c9a84c); font-style: italic; }
.cbp-tf-hint { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 28px; line-height: 1.5; }

.cbp-tf-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 20px;
    font-family: var(--cbp-font-body, sans-serif);
    padding: 12px 0;
    width: 100%;
    outline: none;
    transition: border-color .2s;
    caret-color: var(--cbp-accent, #c9a84c);
}
.cbp-tf-input::placeholder { color: rgba(255,255,255,.25); }
.cbp-tf-input:focus { border-bottom-color: var(--cbp-accent, #c9a84c); }
.cbp-tf-input.error { border-bottom-color: #e55353; }

.cbp-tf-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 8px;
}
@media(max-width:500px){ .cbp-tf-choice-grid { grid-template-columns: 1fr; } }

.cbp-tf-choice {
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--cbp-radius, 10px);
    padding: 14px 16px;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.03);
}
.cbp-tf-choice:hover { border-color: var(--cbp-accent, #c9a84c); background: rgba(255,255,255,.06); }
.cbp-tf-choice.selected { border-color: var(--cbp-accent, #c9a84c); background: var(--cbp-accent-rgba, rgba(201,168,76,.15)); color: #fff; }
.cbp-tf-choice-key { width: 22px; height: 22px; border-radius: 4px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.cbp-tf-choice.selected .cbp-tf-choice-key { background: var(--cbp-accent, #c9a84c); color: #111; }

.cbp-tf-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}
.cbp-tf-btn-ok {
    background: var(--cbp-accent, #c9a84c);
    color: #111;
    border: none;
    border-radius: var(--cbp-radius, 10px);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.cbp-tf-btn-ok:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.cbp-tf-btn-back {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--cbp-radius, 10px);
    padding: 12px 18px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}
.cbp-tf-btn-back:hover { background: rgba(255,255,255,.1); color: #fff; }
.cbp-tf-enter-hint { font-size: 12px; color: rgba(255,255,255,.3); margin-left: 8px; }

.cbp-tf-success {
    text-align: center;
    padding: 80px 40px;
}
.cbp-tf-success-icon { font-size: 64px; margin-bottom: 20px; animation: cbpBounceIn .5s ease; }
.cbp-tf-success h2 { font-family: var(--cbp-font-heading, Georgia, serif); font-size: 32px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.cbp-tf-success h2 em { color: var(--cbp-accent, #c9a84c); font-style: italic; }
.cbp-tf-success p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── PORTAL ── */
.cbp-portal-wrap {
    font-family: var(--cbp-font-body, 'DM Sans', sans-serif);
    max-width: 680px;
    margin: 0 auto;
    color: var(--cbp-text);
}
.cbp-portal-hero {
    background: var(--cbp-primary, #1a1f35);
    padding: 40px 44px 36px;
    border-radius: calc(var(--cbp-radius, 10px) * 2) calc(var(--cbp-radius, 10px) * 2) 0 0;
    text-align: center;
}
.cbp-portal-hero h2 {
    font-family: var(--cbp-font-heading, Georgia, serif);
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
}
.cbp-portal-hero h2 em { color: var(--cbp-accent, #c9a84c); font-style: italic; }
.cbp-portal-hero p { font-size: 14px; color: rgba(255,255,255,.55); }

.cbp-portal-body {
    background: var(--cbp-bg, #faf7f2);
    border: 1px solid var(--cbp-border, #e0d9ce);
    border-top: none;
    border-radius: 0 0 calc(var(--cbp-radius, 10px) * 2) calc(var(--cbp-radius, 10px) * 2);
    padding: 36px 44px 40px;
}

/* Booking status timeline */
.cbp-booking-timeline {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.cbp-tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 60px;
    position: relative;
}
.cbp-tl-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(50% + 14px);
    right: calc(-50% + 14px);
    height: 2px;
    background: var(--cbp-border, #e0d9ce);
}
.cbp-tl-step.done::after,
.cbp-tl-step.active::after { background: var(--cbp-accent, #c9a84c); }
.cbp-tl-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--cbp-border, #e0d9ce);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--cbp-muted, #7a7a8a);
    transition: all .3s;
    z-index: 1;
}
.cbp-tl-step.done .cbp-tl-dot  { background: var(--cbp-accent, #c9a84c); color: #111; }
.cbp-tl-step.active .cbp-tl-dot { background: var(--cbp-primary, #1a1f35); color: #fff; border: 2px solid var(--cbp-accent, #c9a84c); }
.cbp-tl-label { font-size: 10px; color: var(--cbp-text); opacity: .55; white-space: nowrap; }
.cbp-tl-step.active .cbp-tl-label { color: var(--cbp-accent); font-weight: 600; }

/* Booking card */
.cbp-booking-card {
    background: #fff;
    border: 1px solid var(--cbp-border, #e0d9ce);
    border-radius: var(--cbp-radius, 10px);
    overflow: hidden;
    margin-bottom: 16px;
    transition: box-shadow .2s;
}
.cbp-booking-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.cbp-booking-card-header {
    background: var(--cbp-primary, #1a1f35);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cbp-booking-ref {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--cbp-accent, #c9a84c);
    letter-spacing: .5px;
}
.cbp-booking-card-body { padding: 20px; }
.cbp-portal-pay-btn {
    display: block;
    width: 100%;
    background: var(--cbp-accent, #c9a84c);
    color: #111;
    border: none;
    border-radius: var(--cbp-radius, 10px);
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
    transition: all .2s;
    font-family: inherit;
}
.cbp-portal-pay-btn:hover { background: var(--cbp-accent-dark, #a0802e); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.12); color: #111; }

/* Date block warning on form */
.cbp-date-block-warning {
    background: rgba(229,83,83,.07);
    border: 1px solid rgba(229,83,83,.25);
    border-radius: var(--cbp-radius-sm, 6px);
    padding: 9px 13px;
    font-size: 13px;
    color: #c0392b;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cbp-dw-partial {
    background: rgba(245,158,11,.07);
    border-color: rgba(245,158,11,.25);
    color: #92400e;
}
.cbp-dw-icon { font-size: 15px; }

/* Loading spinner */
.cbp-spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(0,0,0,.15);
    border-top-color: #111;
    border-radius: 50%;
    animation: cbpSpin .7s linear infinite;
    display: inline-block;
}
@keyframes cbpSpin { to { transform: rotate(360deg); } }

