   /* La bannière de l'animal sélectionné */
.selected-banner-pop {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F3F8FF; /* Fond doux */
    border: 3px solid #000;
    border-radius: 18px;
    padding: 15px 20px;
    box-shadow: 4px 4px 0px #000;
}

/* Avatar miniature avec sa grosse bordure */
.furet-avatar-mini {
    width: 75px;
    height: 75px;
    border: 3px solid #000;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 3px 3px 0px #000;
    flex-shrink: 0;
}

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

/* Alignement du texte et du bouton */
.selected-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Nom du compagnon sélectionné */
.furet-name-display {
    font-weight: 900;
    font-size: 1.3em;
    color: #000;
    text-transform: capitalize;
}

/* Bouton "Changer de compagnon" style sticker */
.change-btn-pop {
    display: inline-block; /* Permet de lui donner la structure d'un bouton */
    text-decoration: none; /* Supprime le soulignement par défaut du lien */
    color: #000; /* Force le texte en noir */
    background: #FFB0B0; 
    border: 2px solid #000;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9em;
    cursor: pointer;
    box-shadow: 2px 2px 0px #000;
    transition: transform 0.1s, box-shadow 0.1s;
    width: fit-content;
}

.change-btn-pop:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px #000;
    background: #FF9B9B;
    color: #000;
}

.change-btn-pop:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000;
}
   .info-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .info-badge {
        display: flex;
        align-items: center;
        gap: 15px;
        background: #FFFFFF;
        border: 3px solid #2D3436;
        border-radius: 18px;
        padding: 15px 20px;
        box-shadow: 6px 6px 0px #A29BFE; /* Ombre violette */
        font-family: 'Fredoka', sans-serif;
        color: #2D3436;
        transition: transform 0.2s;
    }

    .info-badge:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0px #2D3436;
    }

    .info-icon {
        font-size: 1.8rem;
        background: #FFEAA7;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 2px solid #2D3436;
        flex-shrink: 0;
    }

    .info-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .info-text b {
        color: #6C5CE7;
    }

    .etoile-mini {
        color: #FF7675;
        font-size: 1.2rem;
        font-weight: 800;
    }

    :root {
        --bg-color: #F0F2F5;
        --card-bg: #FFFFFF;
        --primary: #6C5CE7;
        --secondary: #00CEC9;
        --accent: #FF7675;
        --dark: #2D3436;
        --border-radius: 24px;
    }

    .reser-box {
        max-width: 850px;
        margin: 50px auto;
        font-family: 'Fredoka', sans-serif;
        background: var(--bg-color);
        padding: 40px 20px;
        border-radius: var(--border-radius);
    }

    /* Titres stylisés */
    .form-section legend {
        background: var(--primary);
        color: white;
        padding: 8px 25px;
        border-radius: 50px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        border: 3px solid var(--dark);
        box-shadow: 4px 4px 0px var(--dark);
    }

    .form-section {
        border: 3px solid var(--dark);
        border-radius: var(--border-radius);
        background: var(--card-bg);
        padding: 40px;
        box-shadow: 12px 12px 0px rgba(45, 52, 54, 0.1);
        margin-bottom: 40px;
        position: relative;
    }

    /* Grille de sélection "Bento" */
    .rabbit-selector {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 25px;
        padding-top: 20px;
    }

    .rabbit-item {
        background: #F9FAFB;
        border: 3px solid var(--dark);
        border-radius: var(--border-radius);
        padding: 20px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .rabbit-item:hover {
        transform: translateY(-10px) rotate(2deg);
        background: var(--secondary);
        box-shadow: 8px 8px 0px var(--dark);
    }

    .rabbit-circle {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
        border-radius: 20px; /* Look carré arrondi moderne */
        border: 3px solid var(--dark);
        overflow: hidden;
        background: white;
    }

    .rabbit-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rabbit-name {
        font-weight: 900;
        color: var(--dark);
        font-size: 1.1rem;
        display: block;
    }
label{color:#111;}
    /* Bannière de sélection quand choisi */
    .selected-banner {
        background: var(--secondary);
        border: 3px solid var(--dark);
        border-radius: var(--border-radius);
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 25px;
        box-shadow: 8px 8px 0px var(--dark);
    }

    /* Inputs Modernes */
    .input-pop {
        width: 100%;
        border: 3px solid var(--dark);
        border-radius: 18px;
        padding: 20px;
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 25px;
        box-sizing: border-box;
        transition: 0.2s;
        background: #F9FAFB;
    }

    .input-pop:focus {
        background: white;
        border-color: var(--primary);
        box-shadow: 6px 6px 0px var(--primary);
        outline: none;
    }

    /* Bouton d'envoi "Gaming" */
    .btn-submit {
        background: var(--accent);
        color: white;
        border: 4px solid var(--dark);
        padding: 25px;
        border-radius: 50px;
        font-weight: 900;
        font-size: 1.4rem;
        text-transform: uppercase;
        cursor: pointer;
        width: 100%;
        box-shadow: 0px 8px 0px var(--dark);
        transition: all 0.1s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .btn-submit:hover {
        transform: translateY(-4px);
        box-shadow: 0px 12px 0px var(--dark);
    }

    .btn-submit:active {
        transform: translateY(6px);
        box-shadow: 0px 2px 0px var(--dark);
    }

    .etoile { color: var(--accent); font-size: 1.2rem; }
	    .info-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .info-badge {
        display: flex;
        align-items: center;
        gap: 15px;
        background: #FFFFFF;
        border: 3px solid #2D3436;
        border-radius: 18px;
        padding: 15px 20px;
        box-shadow: 6px 6px 0px #A29BFE; /* Ombre violette */
        font-family: 'Fredoka', sans-serif;
        color: #2D3436;
        transition: transform 0.2s;
    }

    .info-badge:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0px #2D3436;
    }

    .info-icon {
        font-size: 1.8rem;
        background: #FFEAA7;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 2px solid #2D3436;
        flex-shrink: 0;
    }

    .info-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .info-text b {
        color: #6C5CE7;
    }

    .etoile-mini {
        color: #FF7675;
        font-size: 1.2rem;
        font-weight: 800;
    }

    :root {
        --bg-color: #F0F2F5;
        --card-bg: #FFFFFF;
        --primary: #6C5CE7;
        --secondary: #00CEC9;
        --accent: #FF7675;
        --dark: #2D3436;
        --border-radius: 24px;
    }

    .reser-box {
        max-width: 850px;
        margin: 50px auto;
        font-family: 'Fredoka', sans-serif;
        background: var(--bg-color);
        padding: 40px 20px;
        border-radius: var(--border-radius);
    }

    /* Titres stylisés */
    .form-section legend {
        background: var(--primary);
        color: white;
        padding: 8px 25px;
        border-radius: 50px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        border: 3px solid var(--dark);
        box-shadow: 4px 4px 0px var(--dark);
    }

    .form-section {
        border: 3px solid var(--dark);
        border-radius: var(--border-radius);
        background: var(--card-bg);
        padding: 40px;
        box-shadow: 12px 12px 0px rgba(45, 52, 54, 0.1);
        margin-bottom: 40px;
        position: relative;
    }

    /* Grille de sélection "Bento" */
    .rabbit-selector {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 25px;
        padding-top: 20px;
    }

    .rabbit-item {
        background: #F9FAFB;
        border: 3px solid var(--dark);
        border-radius: var(--border-radius);
        padding: 20px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .rabbit-item:hover {
        transform: translateY(-10px) rotate(2deg);
        background: var(--secondary);
        box-shadow: 8px 8px 0px var(--dark);
    }

    .rabbit-circle {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
        border-radius: 20px; /* Look carré arrondi moderne */
        border: 3px solid var(--dark);
        overflow: hidden;
        background: white;
    }

    .rabbit-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rabbit-name {
        font-weight: 900;
        color: var(--dark);
        font-size: 1.1rem;
        display: block;
    }
label{color:#111;}
    /* Bannière de sélection quand choisi */
    .selected-banner {
        background: var(--secondary);
        border: 3px solid var(--dark);
        border-radius: var(--border-radius);
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 25px;
        box-shadow: 8px 8px 0px var(--dark);
    }

    /* Inputs Modernes */
    .input-pop {
        width: 100%;
        border: 3px solid var(--dark);
        border-radius: 18px;
        padding: 20px;
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 25px;
        box-sizing: border-box;
        transition: 0.2s;
        background: #F9FAFB;
    }

    .input-pop:focus {
        background: white;
        border-color: var(--primary);
        box-shadow: 6px 6px 0px var(--primary);
        outline: none;
    }

    /* Bouton d'envoi "Gaming" */
    .btn-submit {
        background: var(--accent);
        color: white;
        border: 4px solid var(--dark);
        padding: 25px;
        border-radius: 50px;
        font-weight: 900;
        font-size: 1.4rem;
        text-transform: uppercase;
        cursor: pointer;
        width: 100%;
        box-shadow: 0px 8px 0px var(--dark);
        transition: all 0.1s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .btn-submit:hover {
        transform: translateY(-4px);
        box-shadow: 0px 12px 0px var(--dark);
    }

    .btn-submit:active {
        transform: translateY(6px);
        box-shadow: 0px 2px 0px var(--dark);
    }

    .etoile { color: var(--accent); font-size: 1.2rem; }
	  .contact-form-pop {
        max-width: 800px;
        margin: 0 auto;
        font-family: 'Fredoka', sans-serif;
    }

    /* Suppression des fieldsets classiques pour des sections propres */
    .form-section {
        background: white;
        border: 3px solid #2D3436;
        border-radius: 25px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 8px 8px 0px #2D3436;
    }

    .form-section legend {
        background: #2D3436;
        color: white;
        padding: 5px 20px;
        border-radius: 12px;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    /* Style des entrées texte */
    input[type="email"], textarea {
        width: 100%;
        border: 3px solid #E0E0E0;
        border-radius: 15px;
        padding: 15px;
        font-size: 1rem;
        transition: all 0.3s;
        box-sizing: border-box;
    }

    input[type="email"]:focus, textarea:focus {
        border-color: #A29BFE;
        outline: none;
        box-shadow: 0 0 10px rgba(162, 155, 254, 0.3);
    }

    /* Onglets de catégories */
    .onglet-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        list-style: none;
        padding: 0;
    }

    .mon_onglet, .mon_onglet_selected {
        flex: 1;
        min-width: 150px;
        padding: 12px;
        text-align: center;
        border: 3px solid #2D3436;
        border-radius: 15px;
        cursor: pointer;
        font-weight: 700;
        transition: 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mon_onglet { background: #F0F0F0; }
    .mon_onglet_selected { background: #A29BFE; color: white; box-shadow: 4px 4px 0px #2D3436; }

   /* Le conteneur qui gère l'espacement entre les tuiles */
    .sujet-grid {
        display: grid;
        /* Sur PC: 2 colonnes / Sur Mobile: 1 colonne automatique */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px; /* Espace entre les boîtes */
        padding: 10px 0;
    }

    /* La tuile (le label qui englobe tout) */
    .sujet-tile {
        cursor: pointer;
        display: block; /* Important pour prendre toute la place de la cellule grid */
        position: relative;
    }

    /* On cache le bouton radio mais il reste là pour le clic */
    .sujet-tile input {
        position: absolute;
        opacity: 0;
    }

    /* Le contenu visible de la tuile */
    .sujet-content {
        display: block;
        background: #FFFFFF;
        border: 2px solid #2D3436;
        border-radius: 15px;
        padding: 15px 20px;
        text-align: center;
        color: #2D3436; /* Couleur du texte bien visible */
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        transition: all 0.2s ease;
        min-height: 50px; /* Évite que les boîtes soient trop plates */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* État au SURVOL */
    .sujet-tile:hover .sujet-content {
        background: #F0F0F0;
        transform: translateY(-2px);
    }

    /* État QUAND ON CLIQUE (Sélectionné) */
    .sujet-tile input:checked + .sujet-content {
        background: #FFEAA7; /* Jaune pop */
        border-color: #2D3436;
        box-shadow: 4px 4px 0px #2D3436; /* Ombre marquée style Pop */
        color: #000000;
        font-weight: 800;
    }

    /* Bouton Envoyer */
    .btn-send {
        background: #55E6C1;
        border: 3px solid #2D3436;
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 6px 6px 0px #2D3436;
        display: block;
        margin: 20px auto;
        transition: 0.2s;
    }

    .btn-send:hover {
        transform: translate(-3px, -3px);
        box-shadow: 9px 9px 0px #2D3436;
    }

    .btn-send:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0px #2D3436; }

    .etoile { color: #FF7675; }
	/* Pour un champ de texte qui respire */
    textarea#message {
        min-height: 150px;
        resize: vertical; /* Permet à l'utilisateur d'agrandir s'il a beaucoup à dire */
        border: 3px solid #2D3436;
        box-shadow: inset 4px 4px 0px #f0f0f0;
    }

    /* Le bouton qui "saute" aux yeux */
    .btn-send {
        width: 100%;
        max-width: 400px;
        margin: 30px auto;
        display: block;
        background: #55E6C1; /* Vert Menthe */
        color: #2D3436;
        border: 3px solid #2D3436;
        padding: 20px;
        border-radius: 20px;
        font-size: 1.3rem;
        font-weight: 900;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0px 6px 0px #2D3436;
        transition: all 0.1s active;
    }

    .btn-send:hover {
        background: #50d8b3;
        transform: translateY(-2px);
        box-shadow: 0px 8px 0px #2D3436;
    }

    .btn-send:active {
        transform: translateY(4px);
        box-shadow: 0px 2px 0px #2D3436;
    }
	    .phone-container {
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }

    .phone-card {
        background: #FFFFFF;
        border: 4px solid #2D3436;
        border-radius: 30px;
        padding: 30px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 8px 8px 0px #A29BFE;
        max-width: 300px;
        width: 100%;
        text-decoration: none; /* Enlève le soulignement du lien */
        display: block;
    }

    .phone-card:hover {
        transform: translate(-4px, -4px);
        box-shadow: 12px 12px 0px #2D3436;
        background: #F8F7FF;
    }

    .phone-circle {
        width: 80px;
        height: 80px;
        background: #FFEAA7;
        border: 3px solid #2D3436;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        box-shadow: 4px 4px 0px #2D3436;
    }

    .phone-circle svg {
        fill: #2D3436;
        width: 40px;
        height: 40px;
    }

    .phone-label {
        display: block;
        font-family: 'Fredoka', sans-serif;
        color: #2D3436;
        font-weight: 800;
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .phone-sub {
        display: block;
        font-size: 0.9rem;
        color: #6C5CE7;
        margin-top: 5px;
        font-weight: 600;
    }

    /* Badge "Pour réserver" */
    .phone-badge {
        background: #2D3436;
        color: #fff;
        padding: 4px 12px;
        border-radius: 10px;
        font-size: 0.75rem;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 10px;
    }
	.copy-wrapper {
        text-align: center;
        margin-top: -10px; /* Colle un peu plus au bloc téléphone */
        margin-bottom: 20px;
    }

    .btn-copy {
        background: #F0F2F5;
        border: 2px solid #2D3436;
        padding: 8px 15px;
        border-radius: 12px;
        font-family: 'Fredoka', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-copy:hover {
        background: #55E6C1; /* Devient vert au survol */
        transform: scale(1.05);
    }

    .btn-copy:active {
        transform: scale(0.95);
    }
	   /* Conteneur principal */
    .reser-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 15px;
        max-width: 800px;
        margin: 0 auto;
        font-family: 'Fredoka', sans-serif;
    }

    /* Titre des groupes */
    .reser-group-title {
        font-size: 1.3rem;
        font-weight: 800;
  
        text-transform: uppercase;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Grille adaptative : 1 colonne sur mobile, 2 sur PC */
    .reser-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    /* Bouton Interactif */
    .reser-card {
        background: var(--onglet);
        border: 3px solid #2D3436;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s ease;
        box-shadow: 6px 6px 0px #2D3436;
    }

    .reser-card:hover {
        transform: translate(-3px, -3px);
        box-shadow: 9px 9px 0px #2D3436;
        background: #f9f9f9;
    }

    .reser-card:active {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0px #2D3436;
    }

    /* Icône ronde */
    .reser-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 2px solid #2D3436;
    }

    .reser-icon-box svg {
        width: 32px;
        height: 32px;
    }

    /* Texte interne */
    .reser-text {
        display: flex;
        flex-direction: column;
    }

    .reser-label {
        font-size: 0.8rem;
        color: #636e72;
        font-weight: 700;
        text-transform: uppercase;
    }

    .reser-value {
        font-size: 1.1rem;
        font-weight: 800;
        color: #2D3436;
    }

    /* Couleurs des icônes */
    .bg-blue   { background: #D6E4FF; }
    .bg-green  { background: #D1FAE5; }
    .bg-yellow { background: #FEF3C7; }
    .bg-purple { background: #EDE9FE; }

    @media (max-width: 480px) {
        .reser-card { padding: 15px; }
        .reser-icon-box { width: 50px; height: 50px; }
    }
	/* Animation de l'apparition du contenu */
    .mon_contenu {
        animation: fadeIn 0.4s ease-in-out;
    }

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

    /* Style quand on survole une tuile de sujet */
    .sujet-tile:hover .sujet-content {
        border-color: #A29BFE;
        background: #F8F7FF;
    }