#prive-wizard-container.prive-modern-wizard {
    max-width: 980px;
    margin: 32px auto;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
    padding: 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #0f172a;
}

#prive-wizard-container.prive-modern-wizard.prive-layout-compact {
    max-width: 860px;
    padding: 18px;
}

.prive-step-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.prive-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
    background: #d1d5db;
    font-size: 0;
    line-height: 0;
    color: transparent;
    overflow: hidden;
}

.prive-step-dot.active {
    width: 20px;
    background: #eab308;
}

.prive-step {
    display: none;
    min-height: 380px;
}

.prive-step.active {
    display: block;
    animation: priveFadeUp .22s ease;
}

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

.prive-step h2 {
    margin: 4px 0 18px;
    font-size: 38px;
    line-height: 1.1;
    color: #0f172a;
}

.prive-step-subtext {
    margin: -8px 0 14px;
    color: #475569;
    font-size: 16px;
    line-height: 1.45;
}

#prive-wizard-container.prive-layout-compact .prive-step h2 {
    font-size: 30px;
}

#prive-wizard-container.prive-layout-compact .prive-choice-label {
    font-size: 18px;
}

.prive-module-rich {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    padding: 14px;
    color: #1e293b;
    margin-bottom: 14px;
}

.prive-module-rich p:last-child {
    margin-bottom: 0;
}

.prive-module-intro {
    margin-bottom: 18px;
}

.prive-module-footer {
    margin-top: 18px;
    margin-bottom: 0;
}

.prive-step-rich {
    background: #ffffff;
}

.prive-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.prive-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prive-choice-card {
    border: 1px solid #d7dce3;
    border-radius: 12px;
    background: #fff;
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    min-height: 84px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.prive-choice-card:hover {
    border-color: #b8c0ca;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.prive-choice-card.is-selected,
.prive-menu-card.is-selected {
    border-color: #eab308;
    background: #fffdf5;
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.18);
}

.prive-choice-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.prive-choice-icon {
    font-size: 20px;
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.prive-choice-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.prive-choice-label {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.prive-choice-side {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 12px;
    flex-shrink: 0;
}

.prive-choice-price-note {
    font-size: 18px;
    color: #334155;
    font-weight: 500;
    white-space: nowrap;
}

.prive-choice-radio {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #c5ccd6;
    display: inline-block;
    background: #fff;
    position: relative;
}

.prive-choice-card.is-selected .prive-choice-radio {
    border-color: #eab308;
}

.prive-choice-card.is-selected .prive-choice-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    margin-top: -6px;
    border-radius: 50%;
    background: #eab308;
}

.prive-choice-desc {
    font-size: 14px;
    color: #475569;
    margin-top: 6px;
}

.prive-input-wrap {
    margin-bottom: 14px;
}

.prive-input-wrap input,
.prive-step textarea,
.prive-contact-grid input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    min-height: 48px;
    padding: 11px 14px;
    font-size: 16px;
    background: #fff;
}

.prive-step textarea {
    min-height: 110px;
}

.prive-map-canvas {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    min-height: 250px;
    background: #f8fafc;
}

.prive-inline-checkbox {
    display: inline-flex;
    margin-top: 10px;
    align-items: center;
    gap: 8px;
    color: #334155;
}

.prive-menu-results {
    margin-top: 16px;
}

.prive-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.prive-menu-card {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #fff;
    padding: 16px;
}

.prive-menu-head h4 {
    margin: 0 0 6px;
    font-size: 20px;
}

.prive-menu-chef,
.prive-menu-price {
    margin: 0;
    color: #334155;
}

.prive-quote-note {
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
}

.prive-menu-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.prive-menu-details h5 {
    margin: 0 0 8px;
}

.prive-menu-details ul {
    margin: 0;
    padding-left: 18px;
}

.prive-menu-details li {
    margin-bottom: 8px;
}

.prive-ingredients {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 13px;
}

.prive-select-menu {
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    min-height: 42px;
    padding: 0 14px;
    cursor: pointer;
}

.prive-allergy-panel {
    margin-top: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
}

.prive-checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.prive-summary-box {
    margin-top: 12px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    padding: 12px;
}

.prive-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 14px;
}

.prive-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.prive-step-actions {
    margin-top: 16px;
    border-top: 1px solid #ececec;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.prive-btn {
    border: none;
    border-radius: 999px;
    min-height: 50px;
    min-width: 150px;
    padding: 0 22px;
    font-size: 20px;
    cursor: pointer;
}

.prive-progress-footer {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 26px;
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #eceff3;
    padding-top: 14px;
    z-index: 5;
}

.prive-btn-light {
    background: #f1f5f9;
    color: #0f172a;
}

.prive-btn-dark {
    background: #eab308;
    color: #111827;
    font-weight: 600;
}

.prive-loading,
.prive-empty {
    color: #64748b;
    margin: 10px 0;
}

.prive-success-box {
    text-align: center;
    padding: 48px 20px;
}

.prive-success-box h2 {
    margin-top: 0;
}

.prive-chef-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.prive-chef-directory-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.prive-chef-directory-card h3 {
    margin: 8px 0 6px;
}

.prive-chef-directory-card h3 a {
    text-decoration: none;
    color: #0f172a;
}

.prive-chef-photo-wrap {
    display: block;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    min-height: 180px;
}

.prive-chef-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.prive-chef-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 100%;
    font-size: 46px;
    color: #64748b;
}

.prive-chef-meta {
    margin: 4px 0;
    color: #334155;
    font-size: 14px;
}

.prive-chef-bio {
    margin: 8px 0;
    color: #475569;
}

.prive-chef-work-history {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #334155;
}

.prive-chef-profile {
    max-width: 980px;
    margin: 24px auto;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 18px;
}

.prive-chef-profile-head {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 12px;
}

.prive-chef-profile-photo {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.prive-chef-profile-content {
    margin-top: 8px;
}

@media (max-width: 860px) {
    #prive-wizard-container.prive-modern-wizard {
        padding: 16px;
        border-radius: 12px;
    }

    .prive-step h2 {
        font-size: 30px;
    }

    .prive-choice-label {
        font-size: 22px;
    }

    .prive-choice-price-note {
        font-size: 15px;
    }

    .prive-card-grid,
    .prive-menu-grid,
    .prive-contact-grid,
    .prive-summary-grid,
    .prive-checkbox-list {
        grid-template-columns: 1fr;
    }

    .prive-btn {
        font-size: 18px;
        min-height: 48px;
        min-width: 120px;
    }

    .prive-choice-card {
        min-height: 74px;
        padding: 14px;
    }

    .prive-chef-directory-grid {
        grid-template-columns: 1fr;
    }

    .prive-chef-profile-head {
        grid-template-columns: 1fr;
    }
}
