/* ============================================================
   Unified Intake Form – Frontend Styles
   ============================================================ */

.uif-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: Plus Jakarta;    
    color: #171717;
}

/* ---- Progress Bar ---- */
.uif-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 10px;
}
.uif-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.uif-progress-step span {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}
.uif-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #aaa;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.uif-progress-step.active .uif-step-icon {
    background: #ffcd00;
    color: #fff;
    box-shadow: 0 0 0 4px rgb(255 205 0 / 46%);
}
.uif-progress-step.active span { color: #000; }
.uif-progress-step.completed .uif-step-icon {
    background: #fffae4;
    color: #ffcd00;
}
.uif-progress-step.completed .uif-step-icon {
    color: transparent; /* hide the step number text */
    position: relative;
}
.uif-progress-step.completed .uif-step-icon::before {
    content: '✓';
    color: #ffcd00;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uif-progress-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 0 10px;
    margin-bottom: 18px;
    min-width: 40px;
    transition: background 0.3s;
}
.uif-progress-line.active { background: #ffcd00; }

/* ---- Step Header ---- */
.uif-step-header {
    margin: 20px 0px;    
    text-align: center;
}
.uif-step-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.uif-step-header p {
    font-size: 18px;
    font-weight: 500;
    color: #616161;
    margin: 0;
}

/* ---- Form Grid ---- */
.uif-step-form, #uif-scenario-a, #uif-form-step2, #uif-scenario-c, #uif-step-success {
    background-color: #212121;
    padding: 20px;
    border-radius: 5px;
}
.uif-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.uif-span-full { grid-column: 1 / -1; }

.uif-field-group {
    display: flex;
    flex-direction: column;
}
.uif-field-group label {
    font-family: 'Grifter';
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.uif-required { color: #dc2626; }
.uif-optional { font-weight: 400; color: #9ca3af; font-size: 12px; }
.uif-label-hint {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 2px;
}
.uif-field-group input[type="text"],
.uif-field-group input[type="email"],
.uif-field-group input[type="tel"],
.uif-field-group input[type="number"],
.uif-field-group input[type="date"],
.uif-field-group select,
.uif-field-group textarea {
    width: 100%;
    border: 1.5px solid #d1d5db;
    text-align: left;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
    min-height: 44px;
}
.uif-field-group input:focus,
.uif-field-group select:focus,
.uif-field-group textarea:focus {
    border-color: #ffcd00;
    box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
    color: #000;
}
.uif-field-group input::placeholder {
    color: #1a1a1a;
}
.uif-field-group textarea { resize: vertical; min-height: 100px; }
/* ---- Radio Cards (Event Type) ---- */
.uif-radio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.uif-radio-card input[type="radio"] { display: none; }
.uif-radio-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-size: 14px;
    color: #848484;
    background: #f9fafb;
}
/* .uif-radio-card-inner:hover {
    border-color: #ffcd00;
    background: #fffbeb;
} */
.uif-radio-card input:checked + .uif-radio-card-inner {
    border-color: #ffcd00;
    color: #000;
}
.uif-radio-icon { font-size: 24px; }

/* ---- Headcount ---- */
/* ---- Headcount Hint (popup) ---- */
.uif-headcount-wrapper { position: relative; }

.uif-headcount-hint {
    display: none;
    position: absolute;
    top: 50%;
    left: calc(100% + 14px);    
    transform: translateY(-50%);
    width: 220px;
    font-size: 13px;
    padding: 10px 14px;
    font-weight: 500;
    border-radius: 6px;
    z-index: 10;
    line-height: 1.5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.uif-headcount-hint.show { display: block; }

.uif-hint-a { background: #ffefa7f5; color: #000000; }
.uif-hint-b { background: #ffefa7f5; color: #000000; }
.uif-hint-c { background: #ffefa7f5; color: #000000; }

/* Arrow indicator pointing left (toward the input) */
.uif-headcount-hint::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    right: auto;
    transform: translateY(-50%);
    border-width: 6px 10px 6px 0;
    border-style: solid;
    border-color: transparent #ffefa7f5 transparent transparent;
}

/* ---- Buttons ---- */
.uif-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'Grifter';
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.uif-btn-primary {
    background: #ffcd00;
    color: #000;
    border-color: #ffcd00;
}
.uif-btn-primary:hover { background: #ffe500; border-color: #ffe500; }
.uif-btn-outline {
    background: #fff;
    color: #000;
    border-color: #000;
}
.uif-btn-outline:hover { background: #fffbeb; }
.uif-btn-sm {     
    padding: 8px 16px;
    font-size: 14px; 
}
.uif-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.uif-form-actions {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.uif-form-actions .uif-btn {
    margin-left: auto;
}
.uif-combined-price {
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
}
.uif-combined-price strong {
    color: #fff;
    font-size: 17px;
}
.uif-actions-spaced {
    justify-content: space-between;
    align-items: center;
}
.uif-arrow { font-size: 18px; }

/* ---- Form Error ---- */
.uif-form-error {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 6px;
    font-size: 13px;
    display: none;
}
.uif-form-error.show { display: block; }

/* ---- Timing Comparison ---- */
.uif-timing-selector { margin-bottom: 10px; }
.uif-timing-selector label { 
    font-family: 'Grifter';
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: block; 
}
.uif-timing-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.uif-timing-groups--single {
    grid-template-columns: 1fr;
}
.uif-timing-group {
    display: flex;
    flex-direction: column;
}
.uif-timing-group-title {
    margin: 0 0 5px;
    font-family: 'Grifter';
    font-size: 15px;
    color: #fff;
}
.uif-timing-group-empty {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

/* ---- Package Cards ---- */
.uif-packages-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; flex: 1; }
.uif-package-card {
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto 1fr;
    gap: 5px;
    margin: 0;
    height: 100%;
}

.uif-package-card:hover { border-color: #fffbeb; box-shadow: 0 4px 12px rgba(255, 205, 0, 0.06); }
.uif-package-card.selected {
    border-color: #ffcd00;
    box-shadow: 0 0 0 4px rgba(26, 95, 63, 0.1);
    grid-template-columns: 28px 1fr;
}
.uif-package-card input[type="radio"] { display: none; }
.uif-package-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    grid-column: 2 / -1;
    grid-row: 1;
}
.uif-package-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; }
.uif-package-subtitle { font-size: 12px; color: #6b7280; }
.uif-package-price {
    text-align: right;
    flex-shrink: 0;
}
.uif-price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #ffcd00;
    line-height: 1;
}
.uif-price-label {
    font-size: 11px;
    color: #4a4a4a;
    white-space: nowrap;
}
.uif-price-total {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 6px;
    white-space: nowrap;
}
.uif-price-total-note {
    font-size: 10px;
    font-weight: 400;
    color: #9ca3af;
}
.uif-package-card.selected .uif-price-total { color: #000; }
.uif-package-card.selected .uif-price-total-note { color: #555; }
.uif-package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px;
    grid-column: 1 / -1; /* match full width when checkmark is hidden */
    align-self: end;
}
.uif-package-card.selected .uif-package-includes {
    grid-column: 1 / -1; /* keep other card content stable */
}
.uif-include-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    background: #3e3e3e;
    color: #ffcd00;
    border: 1px solid #ffcd00;
}
/* The "Hollow Circle" - Default State */
.uif-package-card .uif-selected-check {
    grid-column: 1;
    grid-row: 1;
    width: 22px;
    height: 22px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Hollow yellow border, transparent text (hiding the checkmark) */
    border: 2px solid #ffcd00;
    background: transparent;
    color: transparent; 
    transition: all 0.2s ease; /* Smooth transition */
}
/* The "Selected" State */
.uif-package-card.selected .uif-selected-check {
    /* Fill the background yellow and make the checkmark black */
    background: #ffcd00;
    color: #000;
}
/* ---- Custom Event Card ---- */
.uif-custom-event-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 18px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.uif-custom-event-card:hover { border-color: #ffcd00; box-shadow: 0 4px 12px rgba(255, 205, 0, 0.1); }
.uif-custom-event-card.selected {
    border-color: #ffcd00;
    background: #fffef0;
    box-shadow: 0 4px 14px rgba(255, 205, 0, 0.18);
}
.uif-custom-event-card .uif-selected-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #ffcd00;
    background: transparent;
    color: transparent;
    transition: all 0.2s ease;
    font-size: 13px;
}
.uif-custom-event-card.selected .uif-selected-check {
    background: #ffcd00;
    color: #000;
}
.uif-custom-event-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}
.uif-custom-event-body { flex: 1; }
.uif-custom-event-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}
.uif-custom-event-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ---- Drink Cards ---- */
.uif-drink-module {
    border: 1.5px solid #e5e7eb;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    background: #fafafa;
}
.uif-module-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.uif-drink-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 10px; }
.uif-drink-card {
    border: 2px solid #181818;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    background: #212121;
}
.uif-drink-card:hover { border-color: #ffcd00; }
.uif-drink-card.selected {
    border-color: #ffcd00;
    background: #ffcd00;
}
.uif-drink-card.selected .uif-drink-total, 
.uif-drink-card.selected .uif-drink-items, 
.uif-drink-card.selected .uif-drink-name, 
.uif-drink-card.selected .uif-drink-price {
    color: #000;
}
.uif-drink-card input[type="radio"] { display: none; }
.uif-drink-name {
    font-size: 16px;
    font-weight: 900;
    color: #ffcd00;
    margin-bottom: 4px;
}
.uif-drink-price { font-size: 13px; font-weight: 600; color: #ffcd00; }
.uif-drink-price-note { font-size: 10px; font-weight: 400; color: #9ca3af; }
.uif-drink-card.selected .uif-drink-price-note { color: #555; }
.uif-drink-total {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}
.uif-drink-items {
    font-size: 11px;
    color: #ffffff;
    margin-top: 6px;
    line-height: 1.4;
}
.uif-drink-card .uif-selected-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ffcd00;
    background: transparent;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 0.2s ease;
}
.uif-drink-card.selected .uif-selected-check {
    background: #000;
    color: #ffcd00;
    border-color: #000;
}

/* ---- Tags ---- */
.uif-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    background: #3e3e3e;
    color: #ffcd00;
    border: 1px solid #ffcd00;

}
.uif-tag-optional {
    background: #ffcd00;
    color: #000000;
}
.uif-tag-premium {
    background: #3e3e3e;
    color: #ffcd00;
    border: 1px solid #ffcd00;
}

/* ---- Scenario Cards ---- */
.uif-scenario-card {
    text-align: center;
}
/* .uif-scenario-info { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); border: 1.5px solid #bfdbfe; } */
.uif-scenario-premium { background: linear-gradient(135deg, #fdf4ff 0%, #ede9fe 100%); border: 1.5px solid #ddd6fe; }
.uif-scenario-icon { font-size: 48px; margin-bottom: 12px; }
.uif-scenario-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.uif-scenario-card p { font-size: 15px; color: #fff; margin: 0 0 16px; line-height: 1.6; }
.uif-scenario-badge-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ---- Junior Disclaimer ---- */
.uif-junior-disclaimer {
    border: 1.5px solid #ffcd00;
    background: #212121;
    border-radius: 5px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none!important;
}
.uif-junior-inner { display: flex; gap: 14px; align-items: flex-start; }
.uif-junior-icon { font-size: 28px; flex-shrink: 0; }
.uif-junior-disclaimer strong {
    font-size: 14px;
    color: #ffcd00;
    display: block;
    margin-bottom: 4px;
}
.uif-junior-disclaimer p {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

/* ---- Custom Quote Card ---- */
.uif-custom-quote-card {
    border: 1.5px dashed #d1d5db;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    background: #ffffff;
}
.uif-custom-quote-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
}
.uif-custom-quote-inner h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.uif-custom-quote-inner p { font-size: 13px; color: #6b7280; margin: 0; }

/* ---- Loading Spinner ---- */
.uif-spinner-wrap { display: flex; align-items: center; gap: 10px; color: #6b7280; padding: 20px 0; }
.uif-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e5e7eb;
    border-top-color: #ffcd00;
    border-radius: 50%;
    animation: uif-spin 0.7s linear infinite;
}
@keyframes uif-spin { to { transform: rotate(360deg); } }

/* ---- Resume Banner ---- */
.uif-resume-banner {
    display: none!important;
}
.uif-resume-banner {
    background: #fffbeb;
    border: 1.5px solid #fbbf24;
    border-radius: 5px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 10px;
}
.uif-resume-banner strong { color: #78350f; }
.uif-resume-dismiss {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 16px;
    line-height: 1;
}

/* ---- Success State ---- */
#uif-step-success {
    margin-top: 25px;
}

.uif-success-wrapper {
    text-align: center;
}
.uif-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fffbeb;
    color: #ffcd00;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.uif-success-wrapper h2 { font-size: 28px; font-weight: 700; margin: 0 0 12px; color: #fff; }
.uif-success-main { font-size: 16px; color: #fff; margin: 0 auto 20px; line-height: 1.7; }
.uif-radio-card-inner span {
    color: #000 !important;
    font-weight: 700;
}

.uif-field-group input:hover, .uif-field-group select:hover .uif-headcount-wrapper input:hover , .uif-field-group.uif-span-full select:hover {
    background: #fff;
    border: 1px solid #fff;
}
.uif-field-group input, .uif-field-group select .uif-headcount-wrapper input, .uif-field-group.uif-span-full select, .uif-field-group select , .uif-field-group.uif-span-full textarea {
    font-weight: 700;
}
.uif-field-group input:focus, .uif-field-group select:focus .uif-headcount-wrapper input:focus , .uif-field-group.uif-span-full select:focus , .uif-field-group select:focus {
    background: #fff;
    border: 1px solid #fff;
}
/* ---- Location Select Custom Wrapper ---- */
.uif-location-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.uif-location-icon {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0);
}
.uif-location-chevron {
    position: absolute;
    right: 10px;
    pointer-events: none;
    z-index: 1;
}
.uif-location-select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding: 0px 38px;
}
/* ---- Three-col row ---- */
.uif-three-col-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
/* ---- Two-col row ---- */
.uif-two-col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
/* ---- Generic Select Wrapper (white bg fields) ---- */
.uif-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.uif-select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px !important;
}
.uif-select-chevron {
    position: absolute;
    right: 10px;
    pointer-events: none;
    z-index: 1;
}
/* ---- Responsive ---- */
@media (max-width: 600px) {
    .uif-form-grid-2 { grid-template-columns: 1fr; }
    .uif-span-full { grid-column: 1; }
    .uif-radio-cards { grid-template-columns: 1fr; }
    .uif-drink-cards { grid-template-columns: 1fr; }
    .uif-package-card-header { flex-direction: column; }
    .uif-package-price { text-align: left; }
    .uif-progress-bar { gap: 4px; }
    .uif-progress-line { min-width: 20px; }
    .uif-custom-quote-inner { flex-direction: column; }
    .uif-step-header h2 { font-size: 20px; }
    .uif-actions-spaced { flex-direction: column-reverse; gap: 10px; }
    .uif-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .uif-form-actions .uif-btn {
        margin-left: 0;
    }
    .uif-btn { width: 100%; justify-content: center; }
    .uif-timing-groups { grid-template-columns: 1fr; }
    .uif-three-col-row { grid-template-columns: 1fr; }
    .uif-headcount-hint {
        position: static;
        transform: none;
        width: 100%;
        right: auto;
        top: auto;
        margin-top: 8px;
        box-shadow: none;
    }
    .uif-headcount-hint::after { display: none; }
    .uif-step-form, #uif-scenario-a, #uif-form-step2, #uif-scenario-c, #uif-step-success {
        padding: 16px;
    }
    .uif-two-col-row { grid-template-columns: 1fr; }
    .uif-advance-hero {
        padding: 20px 18px 16px;
    }

    .uif-stripe-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .uif-stripe-actions .uif-btn {
        flex: none;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    #uif-stripe-submit-btn .uif-stripe-btn-text {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 4px;
    }
    #uif-stripe-submit-btn .uif-stripe-btn-separator {
        display: none;
    }
    #uif-stripe-submit-btn.uif-btn {
        padding-inline: 12px;
    }
}

/* ---- Advance Payment Section ---- */
.uif-payment-section {
    margin-top: 24px;
    padding-top: 0;
    border-top: none;
    text-align: left;
}
.uif-advance-hero {
    background: linear-gradient(155deg, #1a1a1a 0%, #252525 45%, #1e1e1e 100%);
    border: 2px solid #ffcd00;
    border-radius: 14px;
    padding: 26px 24px 22px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.uif-advance-hero-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 12px;
}
.uif-advance-hero-amount {
    font-size: clamp(2.1rem, 6.5vw, 3.15rem);
    font-weight: 800;
    color: #ffcd00;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.03em;
}
.uif-btn-pay {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 14px;
    text-align: center;
    font-size: 17px;
    padding: 14px 28px;
}
.uif-payment-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* Stripe card form */
.uif-stripe-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}
.uif-stripe-amount-display {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 18px;
}
.uif-stripe-amount-display strong { color: #ffcd00; }
.uif-card-element-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}
#uif-card-element {
    padding: 12px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    transition: border-color .2s;
}
#uif-card-element.StripeElement--focus { border-color: #ffcd00; }
#uif-card-element.StripeElement--invalid { border-color: #d9534f; }
.uif-card-error {
    color: #d9534f;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}
.uif-stripe-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.uif-stripe-actions .uif-btn { flex: 1; justify-content: center; min-width: 140px; }

/* Stripe confirm — allow wrap (base .uif-btn uses nowrap which overflows on narrow screens) */
#uif-stripe-submit-btn.uif-btn {
    white-space: normal;
    text-align: center;
}
#uif-stripe-submit-btn .uif-stripe-btn-text {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}
#uif-stripe-submit-btn .uif-stripe-btn-figure {
    font-weight: 800;
}

/* Payment confirmed */
.uif-payment-confirmed {
    text-align: center;
    padding: 28px 20px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 8px;
    margin-top: 8px;
}
.uif-payment-confirmed-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.uif-payment-confirmed h3 {
    font-size: 20px;
    font-weight: 800;
    color: #15803d;
    margin: 0 0 8px;
}
.uif-payment-confirmed p { color: #166534; margin: 4px 0; }

/* Small group booking prompt */
body.uif-modal-open { overflow: hidden; }

.uif-booking-prompt {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.uif-booking-prompt-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.uif-booking-prompt-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}
.uif-booking-prompt-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #666;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.uif-booking-prompt-close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}
.uif-booking-prompt-box h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
}
.uif-booking-prompt-text {
    margin: 0 0 24px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
.uif-booking-prompt-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.uif-booking-prompt-actions .uif-btn {
    width: 100%;
    justify-content: center;
    text-decoration: none;
}
.uif-booking-prompt-dismiss {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 8px;
}
.uif-booking-prompt-dismiss:hover {
    color: #1a1a1a;
}
.uif-payment-confirmed-note { font-size: 12px; color: #6b7280 !important; margin-top: 12px !important; }
