.sj-booking-wrap.sj-booking-wizard-wrap {
    background: #f8f4f6;
    border: 1px solid #efc8d9;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(114, 35, 76, 0.08);
}

.sj-booking-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-weight: 600;
}

.sj-booking-alert-success {
    background: #e8f8ef;
    color: #18794e;
}

.sj-booking-alert-error {
    background: #fdecec;
    color: #9f2d2d;
}

.sj-wizard-progress {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

.sj-wizard-progress li {
    text-align: center;
    color: #6e6e78;
    font-size: 13px;
    position: relative;
}

.sj-wizard-progress li span {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #dadde2;
    color: #595f68;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.sj-wizard-progress li strong {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}

.sj-wizard-progress li.is-active span,
.sj-wizard-progress li.is-done span {
    background: linear-gradient(135deg, #cc2f76, #a62961);
    color: #fff;
}

.sj-wizard-progress li.is-active span {
    transform: scale(1.07);
}

.sj-wizard-progress li.is-active strong,
.sj-wizard-progress li.is-done strong {
    color: #9e205b;
}

.sj-wizard-panel {
    display: none;
    background: #fff;
    border: 1px solid #efc8d9;
    border-radius: 14px;
    padding: 24px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.sj-wizard-panel.is-active {
    display: block;
}

.sj-wizard-panel.is-entering {
    opacity: 0;
    transform: translateY(8px);
}

.sj-wizard-panel h3 {
    margin: 0 0 16px;
    color: #8a1e50;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
}

.sj-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sj-card {
    width: 100%;
    text-align: left;
    border: 1px solid #efc8d9;
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #4f5160;
    will-change: transform, box-shadow;
}

.sj-card:hover {
    border-color: #d45a8f;
    box-shadow: 0 10px 24px rgba(160, 35, 90, 0.12);
    transform: translateY(-1px);
}

.sj-card.is-selected {
    border-color: #c62370;
    box-shadow: 0 0 0 3px rgba(198, 35, 112, 0.12);
    transform: translateY(-1px);
}

.sj-card-title {
    display: block;
    font-weight: 700;
    color: #8a1e50;
    font-size: 22px;
    line-height: 1.2;
}

.sj-card-meta {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: #5c6172;
}

.sj-staff-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.sj-empty-note {
    border: 1px dashed #d9b7c6;
    border-radius: 12px;
    padding: 14px;
    color: #7a7f89;
    background: #fff;
}

.sj-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sj-booking-form p {
    margin: 0 0 12px;
}

.sj-booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #8a1e50;
}

.sj-booking-form input,
.sj-booking-form textarea,
.sj-booking-form select {
    width: 100%;
    border: 1px solid #efc8d9;
    border-radius: 10px;
    padding: 11px 12px;
    line-height: 1.3;
    background: #fff;
}

.sj-booking-form input:focus,
.sj-booking-form select:focus,
.sj-booking-form textarea:focus {
    outline: none;
    border-color: #d53f82;
    box-shadow: 0 0 0 3px rgba(213, 63, 130, 0.14);
}

.sj-phone-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sj-phone-prefix {
    white-space: nowrap;
    color: #646b76;
    font-weight: 600;
}

.sj-confirm-box {
    background: #fff5f9;
    border: 1px solid #efc8d9;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}

.sj-confirm-box p {
    margin: 0 0 8px;
}

.sj-wizard-nav {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.sj-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    padding: 11px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sj-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.sj-btn-primary {
    background: linear-gradient(135deg, #cc2f76, #a62961);
    color: #fff;
}

.sj-btn-ghost {
    background: #ece7ea;
    color: #4f5160;
}

.sj-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.sj-native-fields {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
}

.sj-consent-wrap {
    margin-top: 4px;
    margin-bottom: 14px;
}

.sj-consent-row {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.sj-booking-form .sj-consent-label {
    display: inline !important;
    margin-bottom: 0;
    width: auto !important;
}

.sj-consent-row a {
    color: #a62961;
    text-decoration: underline;
}

.sj-booking-form .sj-consent-checkbox {
    appearance: checkbox;
    -webkit-appearance: checkbox;
    float: none !important;
    position: static !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    max-width: 16px;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 16px;
}

@media (max-width: 991px) {
    .sj-wizard-progress {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 12px;
    }

    .sj-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sj-wizard-panel h3 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .sj-booking-wrap.sj-booking-wizard-wrap {
        padding: 16px;
        border-radius: 12px;
    }

    .sj-card-grid,
    .sj-booking-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sj-wizard-panel {
        padding: 14px;
    }

    .sj-wizard-panel h3 {
        font-size: 25px;
    }

    .sj-wizard-progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 16px;
    }

    .sj-card {
        padding: 14px 14px;
        min-height: 58px;
    }

    .sj-card-title {
        font-size: 20px;
    }

    .sj-card-meta {
        font-size: 16px;
        margin-top: 6px;
    }

    .sj-wizard-nav {
        position: sticky;
        bottom: 8px;
        background: rgba(248, 244, 246, 0.92);
        backdrop-filter: blur(2px);
        padding-top: 8px;
    }
}
