/* Popup intermédiaire pour "Voir le détail" - Style La Nouvelle République */
.popup-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-detail-content {
    background: #f8f9fa;
    border-radius: 0;
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo La Nouvelle République en haut */
.popup-detail-header {
    text-align: left;
    margin-bottom: 40px;
}

.popup-detail-header img {
    height: 40px;
}

/* Motifs de points décoratifs */
.popup-detail-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.popup-detail-dots::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #17a2b8 2px, transparent 2px);
    background-size: 15px 15px;
}

.popup-detail-dots-left {
    top: 20px;
    left: -20px;
}

.popup-detail-dots-right {
    bottom: 20px;
    right: -20px;
}

/* Contenu central */
.popup-detail-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-detail-message {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 400px;
}

.popup-detail-url {
    font-size: 24px;
    color: #17a2b8;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Logo Dans nos villes */
.popup-detail-logo {
    margin-bottom: 20px;
}

.popup-detail-logo img {
    height: 60px;
}

/* Barre de progression */
.popup-detail-progress {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 30px;
}

.popup-detail-progress-bar {
    height: 100%;
    background: #17a2b8;
    width: 0%;
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
    .popup-detail-content {
        padding: 40px 20px;
        min-height: 400px;
    }
    
    .popup-detail-message {
        font-size: 16px;
    }
    
    .popup-detail-url {
        font-size: 20px;
    }
    
    .popup-detail-logo img {
        height: 50px;
    }
    
    .popup-detail-dots {
        width: 80px;
        height: 80px;
    }
}
