<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.fc-popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* -------------------------
   Overlay principal
------------------------- */
.fc-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
}

body.fc-popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* -------------------------
   Conteneur de la popin
------------------------- */
.fc-popup-content {
    background: #f8f6f2;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: popupZoom 0.4s ease;
    padding: 0;
    overflow: hidden;
}

/* -------------------------
   Grille de base
------------------------- */
.fc-popup-grid {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

/* -------------------------
   Colonne gauche (contenu)
------------------------- */
.fc-popup-left {
    width: 50%;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.fc-popup-left h3 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: .8rem;
    letter-spacing: .25rem !important;
    margin-bottom: 10px;
}

.fc-popup-left h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 5px;
}

.fc-popup-left .ss-title {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.15
}


.fc-popup-left p {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 300;
    color: #111;
    line-height: 1.25;

}

.fc-popup-left form {
    max-width: 100%;
    margin-bottom: 0
}

.fc-popup-left input,
.fc-popup-left button {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

/* -------------------------
   Colonne droite (image)
------------------------- */
.fc-popup-right {
    width: 50%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-image: url('https://www.francecanape.com/wp-content/uploads/2025/05/rendez-vous-magasin.jpg.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.fc-popup-right_rdv_store {
    width: 50%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-image: url('https://www.francecanape.com/wp-content/uploads/2025/05/rendez-vous-magasin.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fc-popup-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -------------------------
   Étape 2 : Message de succès
------------------------- */
.fc-popup-step-success {
    display: none;
    padding: 50px 30px;
    text-align: center;
}

.fc-popup-step-success h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.fc-popup-step-success p {
    font-size: 1rem;
    color: #222;
    margin: 10px 0;
    line-height: 1.25
}

.fc-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.fc-code {
    background: #eee;
    padding: 15px 25px;
    font-weight: bold;
    font-family: monospace;
    border-radius: 4px 0 0 4px;
}

#fc-copy-code {
    background: #111;
    color: #fff;
    border: none;
    padding: 5px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0 !important;
    margin: 0;
    text-transform: none;
    transition: background 0.2s;
}

#fc-copy-code:hover {
    background: #333;
}

.fc-subtext,
.fc-condition {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* -------------------------
   Bouton de fermeture
------------------------- */
.fc-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.fc-close:hover {
    color: #111;
}

/* Masquer discrètement le texte CGU */
#fc-popup-newsletter .protection {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

#fc-popup-newsletter .sib-alert-message-success {
    display: none !important
}


.sib-email-area .email {
    font-weight: 500 !important;
    color: #111 !important;
    letter-spacing: .025rem;
}


/* -------------------------
   Responsive
------------------------- */
@media (max-width: 768px) {
    .fc-popup-grid {
        flex-direction: column;
        min-height: auto;
    }


    .fc-popup-left h2 {
        font-size: 1.5rem;
    }


    .fc-popup-left h3 {
        font-size: .65rem;
    }


    .fc-popup-left,
    .fc-popup-right {
        width: 100%;
        padding: 1.5rem;
    }


    .fc-popup-right {
        height: 180px;
    }

    .fc-popup-right img {
        height: auto;
        max-height: 250px;
    }

    .fc-code-container {
        flex-direction: column;
    }

    .fc-code,
    #fc-copy-code {
        width: 100%;
        margin: 5px 0;
        border-radius: 4px;
        text-align: center;
    }

    .fc-popup-left .ss-title {
        font-size: 1.25rem;
    }

}

/* -------------------------
   Animation
------------------------- */
@keyframes popupZoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}</pre></body></html>