    :root, * {
    --primary-glow: rgba(186, 101, 48, .55);
    --secondary-glow: rgba(10, 10, 10, .58);
    --couleur_base_blanc : #FFFFFF;
    --couleur_base_bleu_ciel : #BA6530;
    --couleur_base_bleu_marine : #BA6530;
    --couleur_base_bleu : #BA6530;
    --noir : #0A0A0A;
    --blanc : #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overscroll-behavior-x: none;
}

body {
    background: var(--couleur_base_blanc);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

/* baniere */
.container_scene
{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
    background-position: center;
    background-size: cover;
}
.scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.light-source {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--couleur_base_bleu_ciel) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 1;
    animation: moveLight 3s infinite alternate ease-in-out;
}

.glass-text {
    font-size: 8vw; /* Taille adaptative */
    font-weight: 800;
    color: var(--blanc);
    text-transform: uppercase;
    letter-spacing: 10px;
    position: relative;
    /* Effet de texte légèrement transparent pour le style verre */
    text-shadow: 0 0 20px rgba(255, 255, 255, .5);
    
    /* Reflet inversé fluide */
    -webkit-box-reflect: below -30px linear-gradient(transparent 20%, rgba(255,255,255,0.1));
    text-align: center;
}

@keyframes moveLight {
    0% { transform: translate(-20%, -20%); }
    100% { transform: translate(20%, 20%); }
}

.scene::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.05;
    pointer-events: none;
}
/* menu */
.logo_site_white
{
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 4;
    width: clamp(96px, 12vw, 150px);
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(10, 10, 10, .24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.logo_site_white img
{
    display: block;
    width: 100%;
    height: auto;
}
.bouton_menu_scene
{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
.bouton_menu_scene
button
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: var(--blanc);
    font-size: 30px;
    color: var(--couleur_base_bleu_ciel);
    cursor: pointer;
}
.bouton_menu_scene
button:active
{
    opacity: .5;
}
.container_menu
{
    position: fixed;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    z-index: 5;
    overflow: hidden;
    transition: .5s;
}
.container_menu.active
{
    right: 0;
}
.background_menu
{
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, .5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.div_menu
{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.detail_div_menu
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.detail_div_menu
a
{
    text-decoration: none;
    outline: none;
    color:var(--noir);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    width: 150px;
    height: 150px;
    background: var(--blanc);
    border-radius: 50%;
}
.bouton_menu_scene,
.sous_div_menu
{
    z-index: 2;
}

/* reserver */
.div_prendre_rendez_vous
{
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prendre_rendez_vous
{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    background: var(--blanc);
    width: auto;
    border-radius: 40px;
    color: var(--noir);
    font-size: 20px;
    font-weight: bold;
}
.prendre_rendez_vous
.icone
{
    width: 50px;
    height: 50px;
    color: var(--couleur_base_bleu_ciel);
    display: flex;
    justify-content: center;
    align-items: center;
}
.prendre_rendez_vous
.direction
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    background: var(--couleur_base_blanc);
}
/* calendrier */
.container_all_dates_available
{
    width: 100%;
    padding: 0px 15px;
}
.zone_calendrier_horizontal
{
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 20px 0px 0px;
}
.zone_date_mobile
{
    display: none;
}
.label_date_mobile
{
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--couleur_base_bleu);
}
.date_mobile_picker
{
    width: 100%;
    border: 1px solid rgba(123, 69, 17, .18);
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--noir);
    background: rgba(252, 248, 236, 0.98);
    outline: none;
}
.resume_date_mobile
{
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(252, 248, 236, 0.98), rgba(247, 235, 212, 0.98));
    border: 1px solid rgba(198, 128, 43, .18);
    color: var(--couleur_base_bleu);
    font-weight: 700;
    text-align: center;
}
.bouton_navigation_calendrier
{
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(252, 248, 236, 0.98);
    color: var(--couleur_base_bleu);
    box-shadow: 0 10px 22px rgba(49, 21, 3, .10);
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.bouton_navigation_calendrier:hover
{
    transform: translateY(-2px);
}
.bouton_navigation_calendrier:disabled
{
    opacity: .4;
    cursor: default;
    transform: none;
}
.swiper_calendrier
{
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
    cursor: grab;
}
.swiper_calendrier::-webkit-scrollbar
{
    display: none;
}
.swiper_calendrier:active
{
    cursor: grabbing;
}
.calendar_track
{
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: max-content;
    padding: 6px 2px 14px;
    touch-action: pan-x;
}
.details_swiper_calendrier
{
    width: 100px;
    min-width: 100px;
    height: 150px;
    background: var(--blanc);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--noir);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;
    scroll-snap-align: center;
}
.details_swiper_calendrier:active
{
    opacity: .5;
}
.details_swiper_calendrier:focus-visible
{
    outline: 3px solid rgba(198, 128, 43, .45);
    outline-offset: 3px;
}
.details_swiper_calendrier
.date
{
    text-align: center;
}
.details_swiper_calendrier
.date
.other
{
    font-size: 14px;
    color: var(--couleur_base_bleu_ciel);
}
.details_swiper_calendrier
.indice_de_choix
{
    position: absolute;
    width: 50px;
    height: 25px;
    background: var(--couleur_base_blanc);
    bottom: -12.5px;
    border-radius: 50%;
}
.details_swiper_calendrier.active
.indice_de_choix
{
    background: var(--couleur_base_bleu_ciel);
}
/* time */
.div_container_heure
{
    width: 100%;
    padding: 20px 0px;
    background: var(--blanc);
}
.div_container_heure
.titre
{
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.container_heure
{
    padding: 10px;
}
.container_heure
.detail_heure
{
    display: inline-block;
    margin: 10px;
    padding: 10px;
    border: 1px solid var(--noir);
    color: var(--noir);
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}
.container_heure
.detail_heure:active
{
    opacity: .5;
}
.container_heure
.detail_heure.active
{
    background: var(--couleur_base_bleu_ciel);
    color: var(--blanc);
    border: none;
}
.container_heure
.detail_heure.second.active
{
    background: var(--noir);
    color: var(--blanc);
    border: none;
}

/* forfaits */
.div_swiper_forfait,
.div_swiper_packages
{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    perspective: 1200px;
}
.div_wrapper_forfait
{
    transform-style: preserve-3d;
}
.details_swiper_forfait
{
    width: 500px;
    height: auto;
    background: var(--blanc);
    border-radius: 10px;
}
.details_swiper_forfait.active
{
    background: var(--couleur_base_bleu_ciel);
}
.details_forfait
{
    width: 100%;
    height: auto;
    padding: 50px;
}
.titre_details_forfait
{
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 10px 0px;
    color: var(--couleur_base_bleu_ciel);
    background-position: center;
    background-size: cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--couleur_base_blanc);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.titre_details_forfait
p
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    color: var(--blanc);
    font-size: 20px;
}
.details_swiper_forfait.active
.titre_details_forfait
{
    color: var(--blanc);
}
.commentaire_details_forfait
{
    font-size: 14px;
    padding: 20px 0px;
    color: var(--secondary-glow);
}
.details_swiper_forfait.active
.commentaire_details_forfait
{
    color: var(--blanc);
}
.commentaire_details_forfait.packages
{
    font-size: 20px;
    font-weight: 800;
}
.list_details_forfait
{
    width: 100%;
    padding: 10px 10px;
    margin: 5px 0px;
    border: 1px solid var(--couleur_base_bleu_ciel);
    border-radius: 10px;
    font-size: 16px;
    color: var(--noir);
}
.details_swiper_forfait.active
.list_details_forfait
{
    border: 1px solid var(--blanc);
    color: var(--blanc);
}
.description_package
{
    margin: 10px 0px;
    width: 100%;
    font-size: 14px;
    color: var(--couleur_base_bleu);
}
.details_swiper_forfait.active
.description_package
{
    color: var(--blanc);
}
.titre_selection_produit
{
    font-size: 50px;
    font-weight: 1000;
    color: var(--couleur_base_bleu_marine);
    text-align: center;
    width: 100%;
    margin-top: 150px;
}

/* validation */
.container_formulaire_de_validation
{
    margin: 50px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.formulaire_de_validation
{
    width: 50%;
    background: var(--blanc);
    border-radius: 10px;
    padding: 20px;
}
.titre_formulaire_de_validation
{
    width: 100%;
    margin: 20px 0px;
    font-size: 20px;
    color: var(--noir);
    font-weight: 800;
    text-align: center;
}
.input_formulaire_de_validation
{
    position: relative;
    border: 1px solid var(--couleur_base_bleu_marine);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 0 0;
}
.input_formulaire_de_validation
input
{
    padding: 10px;
    font-size: 16px;
    color: var(--noir);
    width: 100%;
    border: none;
    outline: none;
    padding-left: 25px;
    z-index: 1;
    background: none;
}

.input_formulaire_de_validation
i
{
    position: absolute;
    font-size: 16px;
    padding: 10px 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    text-align: center;
    width: 20px;
    color: var(--couleur_base_blanc);
}
.input_formulaire_de_validation
button
{
    width: 100%;
    padding: 10px;
    background: var(--couleur_base_bleu_ciel);
    color: var(--blanc);
    display: inline-block;
    text-align: center;
    outline: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
}


/* footer */
footer
{
    margin-top: 30px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 8px;
    color: var(--secondary-glow);
}
footer
strong,
footer
a
{
    color: var(--noir);
    text-decoration: none;
    outline: none;
}

/* contact */
.container_contact_studio_impact
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.div_contact_studio_impact
{
    width: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--blanc);
    border-radius: 10px;
    max-height: 100vh;
}
.titre_contact_studio_impact
{
    width: 100%;
    font-size: 40px;
    font-weight: 800;
    color: var(--noir);
    margin: 10px 0px;
    text-align: center;
}
.details_contact_studio_impact
{
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    color: var(--noir);
    background: var(--blanc);
    width: 100%;
    margin: 10px 0px;
    text-decoration: none;
    outline: none;
}

/* accueil packs */
.page_packs_studio
{
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.30), rgba(10, 10, 10, 0.15)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(10, 10, 10, 0.34), transparent 30%),
        linear-gradient(180deg, #BA6530 0%, #7c3f1d 58%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}
.page_packs_studio::before
{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 10px
        );
    opacity: .35;
    pointer-events: none;
}
.hero_packs_studio
{
    min-height: 40vh;
    position: relative;
    padding: 120px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero_packs_overlay
{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0));
}
.hero_packs_content
{
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--blanc);
}
.hero_packs_surtitre
{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 12px;
    color: rgba(255,255,255,.8);
}
.hero_packs_content h1
{
    font-size: 62px;
    line-height: 1;
    margin-bottom: 18px;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-weight: 400;
}
.hero_packs_intro
{
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}
.hero_packs_cta
{
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    color: #BA6530;
    background: rgba(255,255,255,.92);
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(42, 17, 2, .16);
}
.section_packs_studio
{
    position: relative;
    z-index: 1;
    padding: 10px 20px 40px;
}
.section_packs_studio.second
{
    padding-top: 30px;
}
.titre_script_packs
{
    text-align: center;
    font-size: 78px;
    line-height: 1;
    color: var(--blanc);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    margin-bottom: 24px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.grille_cartes_packs
{
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.carte_pack_studio
{
    background: rgba(252, 248, 236, 0.96);
    border-radius: 30px;
    padding: 24px 20px 28px;
    min-height: 360px;
    box-shadow: 0 18px 40px rgba(49, 21, 3, .18);
    display: flex;
    flex-direction: column;
}
.entete_carte_pack
{
    text-align: center;
    border-bottom: 2px solid #e4cb8c;
    padding-bottom: 14px;
    margin-bottom: 18px;
}
.entete_carte_pack h2
{
    font-size: 32px;
    line-height: 1;
    color: #101010;
    font-weight: 900;
    margin-bottom: 10px;
}
.entete_carte_pack p
{
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    color: #101010;
    font-style: italic;
}
.liste_pack_studio
{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.liste_pack_studio li
{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2b2b2b;
    font-size: 16px;
    line-height: 1.4;
}
.liste_pack_studio li i
{
    color: #5747a3;
    margin-top: 3px;
    font-size: 14px;
}
.liste_pack_studio li.inactif
{
    color: #444444;
}
.liste_pack_studio li.inactif i
{
    color: #6e5b8d;
}
.note_pack_studio
{
    margin-top: auto;
    padding-top: 12px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    color: #5a4e3d;
    letter-spacing: 1px;
}
.section_contact_packs
{
    position: relative;
    z-index: 1;
    padding: 10px 20px 60px;
    text-align: center;
}
.lien_contact_packs
{
    display: inline-block;
    color: var(--blanc);
    font-size: 64px;
    line-height: 1;
    text-decoration: none;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    text-shadow: 0 8px 24px rgba(0,0,0,.2);
}






.null
{
    display: none !important;
}

/* surcharge design global accueil */
body
{
    color: var(--noir);
}
.container_scene_accueil
{
    background-attachment: fixed;
}
.container_scene_accueil::before
{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 22, 11, 0.18), rgba(36, 22, 11, 0.55)),
        repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 12px
        );
}
.scene_accueil_studio
{
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: linear-gradient(180deg, rgba(29, 14, 4, 0.26), rgba(29, 14, 4, 0.6));
}
.hero_accueil_contenu
{
    position: relative;
    z-index: 1;
    width: min(90%, 860px);
    text-align: center;
    color: var(--blanc);
}
.hero_accueil_description
{
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.8;
}
.light-source
{
    background: radial-gradient(circle, rgba(245, 219, 176, 0.72) 0%, transparent 70%);
}
.bouton_menu_scene button
{
    background: rgba(255,255,255,.95);
    color: var(--couleur_base_bleu);
}
.background_menu
{
    background: rgba(36, 22, 11, .35);
}
.detail_div_menu a
{
    background: rgba(248, 241, 228, .96);
    box-shadow: 0 12px 28px rgba(36, 22, 11, .15);
}
.prendre_rendez_vous
{
    background: rgba(248, 241, 228, .96);
    box-shadow: 0 18px 45px rgba(28, 14, 4, .22);
}
.prendre_rendez_vous .icone
{
    color: var(--couleur_base_bleu);
}
.prendre_rendez_vous .direction
{
    background: rgba(122, 67, 8, .08);
}
.page_packs_studio
{
    padding: 50px 0 10px;
}
.bloc_intro_packs
{
    position: relative;
    z-index: 1;
    width: min(900px, 92%);
    margin: 0 auto 10px;
    text-align: center;
}
.texte_intro_packs
{
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
}
.titre_selection_produit
{
    font-size: 62px;
    font-weight: 400;
    color: var(--blanc);
    margin-top: 80px;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.div_swiper_forfait,
.div_swiper_packages,
.div_swiper_forfaits_mensuel
{
    padding-top: 20px;
}
.details_swiper_forfait
{
    background: transparent;
    border-radius: 30px;
}
.details_forfait
{
    padding: 30px 24px;
}
.carte_pack_studio
{
    border: 1px solid rgba(231, 199, 142, .55);
}
.commentaire_details_forfait
{
    padding: 8px 0px 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.commentaire_details_forfait.packages
{
    font-size: 16px;
}
.list_details_forfait
{
    padding: 12px 14px;
    border: 1px solid rgba(123, 69, 17, .14);
    border-radius: 14px;
    background: rgba(255,255,255,.56);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.details_swiper_forfait.active .list_details_forfait
{
    border: 1px solid rgba(123, 69, 17, .14);
    color: var(--noir);
}
.list_details_forfait i
{
    color: #5747a3;
    margin-top: 3px;
}
.list_details_forfait.inactif
{
    opacity: .72;
}
.list_details_forfait.inactif i
{
    color: #7c687e;
}
.description_package
{
    text-align: center;
}
.bloc_etape_reservation
{
    width: min(1100px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.48);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 199, 142, .65);
    border-radius: 28px;
    padding: 22px 18px;
    box-shadow: 0 18px 40px rgba(49, 21, 3, .12);
}
.titre_etape_reservation
{
    font-size: 24px;
    font-weight: 800;
    color: var(--couleur_base_bleu);
    text-align: center;
}
.container_all_dates_available
{
    padding: 0px 15px 20px;
}
.swiper_calendrier
{
    margin: 0;
}
.details_swiper_calendrier
{
    background: rgba(252, 248, 236, 0.98);
    border-radius: 26px;
    border: 1px solid rgba(198, 128, 43, .18);
    box-shadow: 0 12px 28px rgba(49, 21, 3, .08);
}
.details_swiper_calendrier .date .other
{
    color: var(--couleur_base_bleu);
}
.details_swiper_calendrier .indice_de_choix
{
    background: rgba(198, 128, 43, .14);
}
.div_container_heure
{
    padding: 20px 15px;
    background: transparent;
}
.div_container_heure .titre
{
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--couleur_base_bleu);
}
.container_heure
{
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 18px;
    background: rgba(255,255,255,.48);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 199, 142, .65);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(49, 21, 3, .12);
}
.container_heure .detail_heure
{
    padding: 12px 18px;
    border: 1px solid rgba(123, 69, 17, .22);
    border-radius: 999px;
    background: rgba(252, 248, 236, 0.98);
}
.container_heure .detail_heure.second.active
{
    background: var(--couleur_base_bleu);
}
.formulaire_de_validation
{
    width: min(680px, 92%);
    background: rgba(255,255,255,.62);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 24px;
    border: 1px solid rgba(231, 199, 142, .65);
    box-shadow: 0 18px 40px rgba(49, 21, 3, .12);
}
.titre_formulaire_de_validation
{
    font-size: 28px;
    color: var(--couleur_base_bleu);
}
.encart_acompte_reservation
{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(253, 245, 225, 0.98), rgba(246, 228, 190, 0.92));
    border: 1px solid rgba(198, 128, 43, .24);
    color: var(--couleur_base_bleu);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.encart_acompte_icone
{
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.62);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--couleur_base_bleu);
}
.encart_acompte_texte
{
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
}
.input_formulaire_de_validation
{
    border: 1px solid rgba(123, 69, 17, .18);
    border-radius: 18px;
    background: rgba(252, 248, 236, 0.98);
}
.input_formulaire_de_validation input
{
    padding-left: 40px;
}
.input_formulaire_de_validation i
{
    left: 12px;
    color: var(--couleur_base_bleu);
}
.input_formulaire_de_validation button
{
    padding: 14px;
    background: linear-gradient(135deg, #BA6530, #0A0A0A);
    font-size: 18px;
}
.div_contact_studio_impact
{
    width: min(720px, 90%);
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 28px;
}
.titre_contact_studio_impact
{
    color: var(--couleur_base_bleu);
}
.details_contact_studio_impact
{
    background: var(--couleur_base_blanc);
}
footer
{
    margin-bottom: 12px;
    font-size: 11px;
}

/* réajustements cartes forfaits sans swiper */
.grille_forfaits_studio
{
    width: min(1180px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.grille_forfaits_studio.deux_forfaits
{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grille_forfaits_mensuels
{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.details_swiper_forfait
{
    width: 100%;
    cursor: pointer;
    transition: transform .25s ease, filter .25s ease;
}
.details_swiper_forfait:hover
{
    transform: translateY(-6px);
}
.details_swiper_forfait .carte_pack_studio
{
    position: relative;
    overflow: hidden;
}
.contenu_carte_forfait
{
    position: relative;
    z-index: 2;
}
.ruban_forfait_studio
{
    position: absolute;
    top: 102px;
    left: 18px;
    right: 18px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8a5515 0%, #f8e3a8 22%, #fff4d4 50%, #d7ac47 78%, #8f5913 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,.55), 0 6px 14px rgba(126, 75, 15, .18);
    z-index: 1;
}
.badge_selection_forfait
{
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #BA6530, #0A0A0A);
    color: var(--blanc);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 3;
}
.commentaire_details_forfait
{
    padding-top: 26px;
}
.details_swiper_forfait.selectionne
{
    transform: translateY(-8px) scale(1.01);
}
.details_swiper_forfait.selectionne .carte_pack_studio
{
    border-color: rgba(255, 236, 186, .95);
    box-shadow: 0 22px 48px rgba(49, 21, 3, .22), 0 0 0 4px rgba(254, 237, 194, .28);
    background: linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(247, 235, 212, 0.98));
}
.details_swiper_forfait.selectionne .badge_selection_forfait
{
    opacity: 1;
    transform: translateY(0);
}
.details_swiper_forfait.selectionne .entete_carte_pack p
{
    color: #5f3408;
}
.details_swiper_forfait.selectionne .ruban_forfait_studio
{
    box-shadow: inset 0 1px 2px rgba(255,255,255,.65), 0 8px 18px rgba(126, 75, 15, .28);
}
