.lg-atypique-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    z-index: 999999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: auto;
}

.lg-atypique-popup.lg-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lg-atypique-popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 24px 32px;
    min-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lg-atypique-popup.lg-show .lg-atypique-popup-content {
    transform: translateY(0);
}

.lg-atypique-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-atypique-popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.lg-atypique-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.lg-atypique-popup-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.lg-atypique-popup-text p {
    margin: 0;
    display: inline;
}

.lg-atypique-popup-text strong {
    color: #a0907e;
    font-weight: 600;
}

.lg-atypique-popup-actions {
    display: flex;
    justify-content: center;
}

.lg-atypique-popup-btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    background: #a0907e;
    color: white;
}

.lg-atypique-popup-btn:hover {
    background: #8a7c69;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160, 144, 126, 0.4);
}

@media (max-width: 599px) {
    .lg-atypique-popup {
        bottom: 10px;
        max-width: 95%;
        left: 2.5%;
        transform: none;
    }
    
    .lg-atypique-popup-content {
        padding: 20px 20px;
        min-width: auto;
        width: 100%;
    }
    
    .lg-atypique-popup-title {
        font-size: 16px;
    }
    
    .lg-atypique-popup-text {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .lg-atypique-popup-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }
}