/* ****** Partie 1 Design System & Variables ******** */
#furzo-artist-wizard {
    --primary-color: #f3764a;
    --primary-hover: #e06337;
    --success-color: #2ec4b6;
    --success-hover: #25a89c;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(243, 118, 74, 0.15);
    --text-color: #2b2d42;
    --text-muted: #6c757d;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    max-width: 850px;
    margin: 40px auto;
    padding: 0 15px;
}

/* ****** Partie 2 Stepper (6 Étapes) ******** */
.furzo-stepper {
    display: none !important;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    padding: 0 10px;
}

.furzo-stepper::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #eef1f6;
    z-index: 1;
}

.furzo-stepper .step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.furzo-stepper .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eef1f6;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.furzo-stepper .step-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

/* Étape Active */
.furzo-stepper .step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 16px rgba(243, 118, 74, 0.25);
    transform: scale(1.1);
}

.furzo-stepper .step.active .step-label {
    color: var(--primary-color);
    font-weight: 700;
}

/* Étapes complétées */
.furzo-stepper .step.completed .step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
    box-shadow: 0 8px 16px rgba(46, 196, 182, 0.25);
}

.furzo-stepper .step.completed .step-label {
    color: var(--success-color);
}

/* ****** Partie 3 Formulaire & Fieldsets (Regroupement) ******** */
#furzo-artist-wizard-form {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.wizard-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-step.active-step {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1d1f27;
}

.step-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Fieldset container */
.form-fieldset {
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.fieldset-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1.5px solid #f3764a;
    padding-bottom: 8px;
    display: inline-block;
}

/* ****** Partie 4 Champs de saisie & Layout ******** */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 0px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3d3e42;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    background: #fff;
    outline: none;
    transition: var(--transition-smooth);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(243, 118, 74, 0.15);
}

.required {
    color: #e63946;
}

.helper-text {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 600;
}

/* Wrapper URL */
.input-url-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.input-url-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(243, 118, 74, 0.15);
}

.url-prefix {
    background: #f8f9fa;
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    border-right: 1px solid #eef1f6;
    user-select: none;
}

.input-url-wrapper input {
    border: none !important;
    box-shadow: none !important;
    flex-grow: 1;
}

/* ****** Partie 5 Sélecteurs de modes de vente ******** */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.mode-card {
    position: relative;
    cursor: pointer;
}

.mode-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mode-content {
    border: 2px solid #eef1f6;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mode-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.mode-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1f27;
}

.mode-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.mode-card:hover .mode-content {
    border-color: rgba(243, 118, 74, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.mode-card input[type="radio"]:checked + .mode-content {
    border-color: var(--primary-color);
    background: rgba(243, 118, 74, 0.03);
    box-shadow: 0 12px 24px rgba(243, 118, 74, 0.1);
}

/* ****** Partie 6 Uploaders Visuels (Modifié) ******** */
.visuals-upload-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.banner-upload-box {
    position: relative;
    border: 2px dashed #dcdcdc;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    background: #fdfdfd;
    overflow: hidden;
    min-height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.avatar-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: -80px;
    z-index: 10;
}

.avatar-upload-box {
    position: relative;
    border: 2px dashed #dcdcdc;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfdfd;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    overflow: hidden;
}

.avatar-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-preview p, .banner-preview span {
    position: relative;
    z-index: 2;
}

.banner-upload-box:hover,
.avatar-upload-box:hover {
    border-color: var(--primary-color);
}

.avatar-upload-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
}

/* ****** Partie 7 Switch, Checkbox & Boutons ******** */
.switch-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.switch-container input {
    position: absolute;
    opacity: 0;
}

.switch-slider {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: #eef1f6;
    border-radius: 34px;
    margin-right: 12px;
    transition: var(--transition-smooth);
}

.switch-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-container input:checked + .switch-slider {
    background-color: var(--primary-color);
}

.switch-container input:checked + .switch-slider::before {
    transform: translateX(24px);
}

.switch-label {
    font-size: 15px;
    font-weight: 600;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin-top: 15px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
}

.checkmark {
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 1.5px solid #dcdcdc;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark::after {
    content: "✓";
    font-weight: 800;
    color: white;
    font-size: 12px;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.checkbox-label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Bouton passer l'adresse */
.address-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.btn-link-skip {
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-decoration: underline;
}

.btn-link-skip:hover {
    background: rgba(243, 118, 74, 0.08);
    color: var(--primary-hover);
}

/* Boutons Navigation */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #eef1f6;
    padding-top: 30px;
}

.wizard-actions:has(.next-step:only-child) {
    justify-content: flex-end;
}

#wizard-step-1 .wizard-actions {
    justify-content: flex-end;
}

.btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(243, 118, 74, 0.15);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 118, 74, 0.22);
}

.btn-secondary {
    background: #eef1f6;
    color: var(--text-color);
}

.btn-secondary:hover {
    background: #e2e7f0;
}

.btn-success {
    background: var(--success-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(46, 196, 182, 0.15);
}

.btn-success:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 196, 182, 0.22);
}

/* Boîte d'erreur */
.wizard-error-box {
    background: #ffe3e3;
    padding: 15px 20px;
    color: #c0392b;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Sections du formulaire */
.form-section {
    border-top: 1px solid #eef1f6;
    padding-top: 25px;
    margin-top: 25px;
}

.form-section h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2b2d42;
}

/* ****** Partie 8 Réseaux sociaux empilés verticalement ******** */
.social-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto 30px;
}

.social-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.social-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(243, 118, 74, 0.15);
}

.social-icon-addon {
    background: #f8f9fa;
    padding: 14px;
    min-width: 54px;
    color: #f3764a;
    font-size: 18px;
    text-align: center;
    border-right: 1px solid #eef1f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-input-group input {
    border: none !important;
    box-shadow: none !important;
    padding: 14px 18px !important;
    flex-grow: 1;
    outline: none;
    font-size: 15px;
}

/* Styles Responsives */
@media (max-width: 768px) {
    #furzo-artist-wizard {
        margin: 15px auto;
        padding: 0 10px;
        overflow-x: hidden;
    }

    #furzo-artist-wizard-form {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Prévenir le zoom iOS automatique en forçant 16px sur mobile */
    #furzo-artist-wizard input[type="text"],
    #furzo-artist-wizard input[type="email"],
    #furzo-artist-wizard input[type="tel"],
    #furzo-artist-wizard input[type="password"],
    #furzo-artist-wizard input[type="date"],
    #furzo-artist-wizard select,
    #furzo-artist-wizard textarea {
        font-size: 16px !important;
    }

    /* Affichage du préfixe URL au-dessus pour mobile */
    .input-url-wrapper {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: none;
    }
    .url-prefix {
        display: block !important;
        background: transparent;
        border: none;
        padding: 0 0 6px 0;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        text-align: left;
    }
    .input-url-wrapper input {
        border: 1px solid #dcdcdc !important;
        border-radius: 12px !important;
        padding: 14px 18px !important;
        width: 100%;
    }

    .step-title {
        font-size: 20px !important;
        line-height: 1.3;
        word-break: break-word;
    }

    .step-subtitle {
        font-size: 13px !important;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .form-fieldset {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .fieldset-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Boutons et actions */
    .wizard-actions {
        flex-direction: column-reverse;
        gap: 10px;
        margin-top: 25px;
        padding-top: 20px;
    }

    .wizard-actions .btn {
        width: 100% !important;
        justify-content: center;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .wizard-actions:has(.next-step:only-child) {
        flex-direction: column;
    }

    #wizard-step-1 .wizard-actions {
        flex-direction: column;
    }

    /* Éléments d'abonnement */
    .plans-manual-tabs {
        gap: 8px !important;
        margin-bottom: 25px !important;
    }

    .plan-tab-btn {
        padding: 8px 14px !important;
        font-size: 12.5px !important;
        width: 100%;
        text-align: center;
    }

    .plan-content {
        padding: 25px 15px !important;
        border-radius: 16px !important;
    }

    .price-amount {
        font-size: 26px !important;
    }

    .plan-features,
    .plan-limits {
        font-size: 12px !important;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .plan-features li,
    .plan-limits li {
        word-break: break-word;
        white-space: normal;
    }

    /* Questionnaire */
    .plans-questionnaire-box {
        padding: 15px;
        border-radius: 16px;
    }

    .questionnaire-title {
        font-size: 14.5px;
        line-height: 1.3;
    }

    .questionnaire-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .q-opt-btn {
        padding: 12px 15px !important;
        gap: 10px !important;
    }

    .q-icon {
        font-size: 20px !important;
    }

    .q-text-title {
        font-size: 13px !important;
    }

    .q-text-desc {
        font-size: 11px !important;
    }

    /* Catégories */
    .category-group-section {
        padding: 15px;
        border-radius: 14px;
    }

    .category-group-title {
        font-size: 13.5px;
        margin-bottom: 12px;
    }

    .category-card-content {
        padding: 8px 14px !important;
    }

    .category-text {
        font-size: 12.5px !important;
        white-space: normal;
        word-break: break-word;
    }

    /* Stripe Onboarding */
    .stripe-explanation-card {
        padding: 15px !important;
        margin: 15px 0 !important;
        border-radius: 12px !important;
    }

    .stripe-explanation-text {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        line-height: 1.4;
    }

    .benefit-item {
        gap: 10px !important;
    }

    .benefit-icon {
        font-size: 20px !important;
        padding: 6px !important;
        border-radius: 8px !important;
    }

    .btn-stripe-connect {
        width: 100% !important;
        justify-content: center;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }

    .final-actions-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .final-actions-buttons .btn {
        width: 100% !important;
        justify-content: center;
    }

    .wizard-encouragement-box {
        font-size: 14px !important;
        padding: 12px !important;
        margin-bottom: 20px;
    }
}

/* ****** Partie 9 Correctifs Icônes et Autocomplete ******** */
#autocomplete-search-group {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
    transition: var(--transition-smooth);
    color: var(--text-color);
    text-align: left;
}

.suggestion-item:hover {
    background: rgba(243, 118, 74, 0.05);
    color: var(--primary-color);
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Stripe Connect Step 7 Styles */
.stripe-explanation-card {
    background: rgba(99, 91, 255, 0.03);
    border: 1px solid rgba(99, 91, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.stripe-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.stripe-explanation-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: #4f5b76;
}

.stripe-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 24px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.08);
}

.benefit-item strong {
    display: block;
    font-size: 15px;
    color: #1d1f27;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.btn-stripe-connect {
    background: #635bff;
    color: #fff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(99, 91, 255, 0.25);
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.btn-stripe-connect:hover {
    background: #4b45cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(99, 91, 255, 0.35);
    color: #fff !important;
}

.btn-dashboard-fallback {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-dashboard-fallback:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Stripe logo fix to prevent squishing */
.stripe-logo-container svg {
    width: 120px !important;
    height: 50px !important;
    display: inline-block !important;
}

/* Collapsible Fields */
.collapsible-content {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 20px;
}
.collapsible-content textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 12px;
    font-size: 14.5px;
    outline: none;
    resize: vertical;
    transition: var(--transition-smooth);
}
.collapsible-content textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(243, 118, 74, 0.15);
}

/* Button hover style to avoid browser/theme gray contrast issue */
#furzo-artist-wizard .btn:hover,
#furzo-artist-wizard .btn-primary:hover,
#furzo-artist-wizard .btn-secondary:hover,
#furzo-artist-wizard .btn-success:hover,
#furzo-artist-wizard .toggle-collapsible:hover,
#furzo-artist-wizard button:hover {
    color: #ffffff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(243, 118, 74, 0.2) !important;
}

#furzo-artist-wizard .btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

#furzo-artist-wizard .btn-success:hover {
    background-color: var(--success-hover) !important;
    border-color: var(--success-hover) !important;
}

/* Category Checkboxes Grid - Premium Pills */
.categories-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.category-checkbox-card {
    position: relative;
    cursor: pointer;
    display: inline-block;
    user-select: none;
}
.category-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.category-card-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.category-icon {
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.category-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition-smooth);
}
.category-checkbox-card:hover .category-card-content {
    border-color: var(--primary-color);
    background: rgba(243, 118, 74, 0.02);
    transform: translateY(-1px);
}
.category-checkbox-card input[type="checkbox"]:checked + .category-card-content {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(243, 118, 74, 0.18);
}
.category-checkbox-card input[type="checkbox"]:checked + .category-card-content .category-text {
    color: #fff;
}
.category-checkbox-card input[type="checkbox"]:checked + .category-card-content .category-icon {
    transform: scale(1.15);
}
/* Category Grouped Sections Layout - Premium UI/UX */
.category-grouped-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .category-grouped-container {
        grid-template-columns: 1fr;
    }
}
.category-group-section {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #eef1f6;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}
.category-group-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(243, 118, 74, 0.12);
    padding-bottom: 8px;
}
.group-title-icon {
    font-size: 16px;
}

.categories-checkbox-grid.invalid-grid .category-card-content {
    border-color: #ffcccc;
    background: #fffafa;
}

/* Questionnaire d'orientation d'abonnement (Étape 4) */
.plans-questionnaire-box {
    background: #fdfdfd;
    border: 1px dashed rgba(243, 118, 74, 0.25);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.questionnaire-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
    color: var(--text-color);
}
.questionnaire-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 20px;
}
.questionnaire-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto 15px;
}
.q-opt-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border: 1.5px solid #eef1f6;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    width: 100%;
}
.q-opt-btn:hover {
    border-color: rgba(243, 118, 74, 0.3);
    background: rgba(243, 118, 74, 0.01);
}
.q-opt-btn.active-q {
    border-color: var(--primary-color);
    background: rgba(243, 118, 74, 0.04);
    box-shadow: 0 4px 12px rgba(243, 118, 74, 0.08);
}
.q-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.q-btn-text-wrap {
    display: flex;
    flex-direction: column;
}
.q-text-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}
.q-text-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.q-recommendation-badge {
    display: inline-block;
    background: rgba(46, 196, 182, 0.1);
    color: var(--success-hover);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    margin-top: 10px;
    border: 1px solid rgba(46, 196, 182, 0.15);
}

/* Sélecteur d'abonnement manuel (Tabs) */
.plans-manual-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.plan-tab-btn {
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 20px;
    border: 1.5px solid #eef1f6;
    background: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-color);
}
.plan-tab-btn:hover {
    border-color: rgba(243, 118, 74, 0.3);
    color: var(--primary-color);
}
.plan-tab-btn.active-tab {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(243, 118, 74, 0.2);
}

/* Affichage de la carte active */
.active-plan-card-display {
    max-width: 420px;
    margin: 0 auto 35px;
}

/* CGV Static and Custom Style (Étape 5) */
.furzo-cgv-static-box {
    border: 1px solid #eef1f6;
    border-radius: 12px;
    background: #fdfdfd;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}
.cgv-static-header {
    background: #f8f9fa;
    padding: 12px 18px;
    border-bottom: 1px solid #eef1f6;
    font-size: 13.5px;
    color: var(--text-color);
}
.cgv-static-body {
    padding: 18px;
    max-height: 250px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    color: #4f5b76;
    text-align: left;
}
.cgv-static-body p {
    margin: 0 0 12px 0;
}
.cgv-static-body strong {
    color: var(--text-color);
}
.cgv-static-body em {
    color: #2b2d42;
    font-weight: 600;
}

/* Premium Subscription Plans Grid Styles */
.plan-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.plan-content {
    border: 2px solid #eef1f6;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.plan-badge {
    align-self: center;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    background: #eef1f6;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.plan-badge.recommendation {
    background: rgba(243, 118, 74, 0.12);
    color: var(--primary-color);
}

.plan-badge.savings {
    background: rgba(46, 196, 182, 0.12);
    color: var(--success-color);
}

.plan-title {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #1d1f27;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 25px;
    min-height: 58px;
}

.plan-price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-recurrence {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
    letter-spacing: 0.5px;
}

.plan-features,
.plan-limits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
}

.plan-features {
    border-top: 1px solid #f0f2f5;
    padding-top: 25px;
}

.plan-limits {
    border-top: 1px dashed #eef1f6;
    padding-top: 20px;
    margin-bottom: 30px;
}

.plan-features li,
.plan-limits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-footer-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: auto;
    border-top: 1px solid #f0f2f5;
    padding-top: 20px;
    line-height: 1.4;
}

.plan-card:hover .plan-content {
    border-color: rgba(243, 118, 74, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.plan-card input[type="radio"]:checked + .plan-content {
    border-color: var(--primary-color);
    background: rgba(243, 118, 74, 0.02);
    box-shadow: 0 20px 40px rgba(243, 118, 74, 0.1);
}

.plan-card input[type="radio"]:checked + .plan-content .price-amount {
    color: var(--primary-color);
}

.plan-card input[type="radio"]:checked + .plan-content::after {
    content: "✓";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 26px;
    height: 26px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 900px) {
}

@media (max-width: 768px) {
}




