/* ===== POPUP ACCUEIL UNIQUE ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #ffffff;
    padding: 40px 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    animation: popupAppear 0.6s ease;
}

.popup-content h2 {
    margin-bottom: 10px;
}

.popup-content p {
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Grille boutiques */
.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

/* Logo avec fond transparent */
.boutiques-grid img {
    width: 100%;
    max-width: 100px;
    margin: auto;
    cursor: pointer;

    /* Fond transparent */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 15px;
    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* Hover */
.boutiques-grid img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(123,63,228,0.4);
}

.popup-hint {
    font-size: 14px;
    opacity: 0.6;
}

.hidden {
    display: none;
}

.popup-hint {
    cursor: pointer;
    text-decoration: underline;
}

.popup-hint:hover {
    opacity: 1;
}




@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
