    /* =============================================
       BASE / RESET
    ============================================= */
    .sabp-reservation-wrapper *,
    .sabp-reservation-wrapper *::before,
    .sabp-reservation-wrapper *::after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    :root {
        --sabp-primary: #ff6d75;
        --sabp-bg: #fffbf6;
    }

    .sabp-reservation-wrapper {
        max-width: 768px;
        margin: auto;
        width: 100%;
    }

    /* =============================================
       HEADER
    ============================================= */
    .sabp-header {
        background: #ff6d75;
        color: #fff;
        padding: 28px;
        border-radius: 22px 22px 0 0;
    }

    .sabp-header-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px;
    }

    .sabp-header-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 22px;
        color: #be5209;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .sabp-header h2 {
        margin: 0;
        font-size: 20px;
        color: #fff;
    }

    .sabp-header p {
        margin: 4px 0 0;
        font-size: 14px;
        color: rgba(255,255,255,0.9);
    }

    /* =============================================
       FORM COLUMN
    ============================================= */
    .sabp-form-column {
        background: var(--sabp-bg);
        padding: 30px;
        border-radius: 0 0 22px 22px;
        -webkit-box-shadow: 0 3px 10px #e7e7e7;
        box-shadow: 0 3px 10px #e7e7e7;
    }

    /* =============================================
       PROGRAM SELECT (Workshop Type)
    ============================================= */
    .sabp-program-select {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 30px;
        flex-direction: row;
    }

    .sabp-program-select > label,
    .sabp-form-column > div > label,
    .sabp-row > div > label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #444;
        margin-bottom: 6px;
    }

    /* =============================================
       PROGRAM CARDS (if used in future)
    ============================================= */
    .sabp-program-card {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: 2px solid #e0e0e0;
        padding: 15px;
        border-radius: 14px;
        cursor: pointer;
        position: relative;
    }

    .sabp-program-card input {
        position: absolute;
        opacity: 0;
    }

    .sabp-program-card:has(input:checked) {
        border-color: var(--sabp-primary);
        background: #ff6d753d;
    }

    .sabp-program-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .sabp-card-content strong {
        display: block;
        font-size: 16px;
    }

    .sabp-card-content span {
        font-size: 14px;
        opacity: .7;
    }

    /* =============================================
       FORM GRID
    ============================================= */
    .sabp-row {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    .sabp-column{
        margin-bottom: 20px;
    }
    
    .sabp-column > label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    padding-right: 10px;
    }
    .sabp-pointer{
        cursor: pointer;
    }

    .sabp-full {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    /* =============================================
       INPUTS — cross-browser, cross-device safe
    ============================================= */
    .sabp-form-column input[type="text"],
    .sabp-form-column input[type="email"],
    .sabp-form-column input[type="tel"],
    .sabp-form-column input[type="number"],
    .sabp-form-column select,
    .sabp-form-column textarea {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-radius: 18px;
        border: 2px dashed #ff6d75;
        font-size: 14px;
        font-family: inherit;
        color: #333;
        background-color: #fffbf6;
        /* Remove iOS default styling */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        /* Prevent zoom on iOS (font-size must be >= 16px on input focus, or set this) */
        -webkit-text-size-adjust: 100%;
        outline: none;
        /* box-sizing already set above */
    }

    /* Keep select arrow visible via custom arrow */
    .sabp-form-column select {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23ff6d75' d='M6 8L0 0h12z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px 8px;
        padding-right: 36px;
        cursor: pointer;
    }

    .sabp-form-column textarea {
        min-height: 120px;
        resize: none;
    }

    /* Remove iOS inner shadow on inputs */
    .sabp-form-column input[type="text"]:focus,
    .sabp-form-column input[type="email"]:focus,
    .sabp-form-column input[type="tel"]:focus,
    .sabp-form-column select:focus,
    .sabp-form-column textarea:focus {
        border-color: #ff6d75;
        border-style: solid;
        -webkit-box-shadow: 0 0 0 3px rgba(255,109,117,0.15);
        box-shadow: 0 0 0 3px rgba(255,109,117,0.15);
    }

    /* Date input calendar icon */
    #sabp-booking-date {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23be5209" viewBox="0 0 24 24"><path d="M7 10h5v5H7z"/><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 18px;
        padding-right: 42px;
        cursor: pointer;
    }

    /* =============================================
       BUTTON
    ============================================= */
    .sabp-btn {
        display: block;
        width: 100%;
        background: #ff6d75;
        color: #fff;
        border: none;
        padding: 16px;
        border-radius: 14px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
        -webkit-box-shadow: 0 0 15px #e7e7e7;
        box-shadow: 0 0 15px #e7e7e7;
        -webkit-appearance: none;
        appearance: none;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
        -webkit-transition: background 0.2s;
        transition: background 0.2s;
    }

    .sabp-btn:hover,
    .sabp-btn:active {
        background: #ff979e;
    }

    /* =============================================
       FLATPICKR CALENDAR — cross-device fixes
    ============================================= */
    .flatpickr-calendar {
        border-radius: 14px !important;
        -webkit-box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
        box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
        font-size: 14px;
        z-index: 99999 !important;
        /* NOTE: Do NOT set position:fixed here — it breaks desktop by detaching
           the calendar from the input field. Flatpickr handles positioning itself. */
    }

    .flatpickr-months {
        background: var(--sabp-primary);
        color: #fff;
        border-radius: 14px 14px 0 0;
        padding: 6px 0;
    }

    .flatpickr-month,
    .flatpickr-prev-month,
    .flatpickr-next-month {
        color: #fff !important;
        fill: #fff !important;
    }

    /* CRITICAL FIX: was "display: contents" which broke layout on Firefox/Samsung */
    .flatpickr-current-month {
        color: #fff !important;
        font-weight: 600;
        /* display: contents removed — was the root cause of month dropdown breaking */
    }

    .flatpickr-current-month .flatpickr-monthDropdown-months,
    .flatpickr-current-month input.cur-year {
        color: #fff !important;
        background: transparent;
        border: none;
        font-size: 14px;
        font-weight: 600;
    }

    .flatpickr-weekday {
        font-weight: 600;
        color: #555;
    }

    .flatpickr-day.selected,
    .flatpickr-day.selected:hover {
        background: #be5209 !important;
        border-color: #be5209 !important;
        color: #fff !important;
    }

    .flatpickr-day:hover {
        background: rgba(190,82,9,0.15);
    }

    /* =============================================
       SELECT2 (if loaded)
    ============================================= */
    .select2-dropdown {
        z-index: 99999 !important;
    }

    .select2-selection__arrow {
        color: #000 !important;
    }

    /* =============================================
       MOBILE — max-width 768px
    ============================================= */
    @media (max-width: 768px) {

        .sabp-program-select {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }

        .sabp-row {
            -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        }

        .sabp-header {
            padding: 18px;
        }

        .sabp-header-icon {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .sabp-form-column {
            padding: 20px;
        }

        /* Prevent iOS zoom on input focus (font-size < 16px triggers zoom) */
        .sabp-form-column input[type="text"],
        .sabp-form-column input[type="email"],
        .sabp-form-column input[type="tel"],
        .sabp-form-column input[type="number"],
        .sabp-form-column select,
        .sabp-form-column textarea {
            font-size: 16px;
        }

        /* Flatpickr on mobile: constrain width so it doesn't overflow narrow screens */
        .flatpickr-calendar {
            max-width: calc(100vw - 20px) !important;
        }
    }