.block-telechargement {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.block-telechargement__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.block-telechargement__icon {
    width: 18px;
    height: 18px;
}

.block-telechargement__empty {
    text-align: center;
    opacity: 0.7;
}

.block-telechargement-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.block-telechargement-popup__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.block-telechargement-popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 40px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.block-telechargement-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.block-telechargement-popup__form {
    margin-top: 20px;
}

.block-telechargement-popup__form h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px;
    text-transform: uppercase;
}

.block-telechargement-popup__success {
    text-align: center;
}

.block-telechargement-popup__success-title {
    font-size: 24px;
    margin: 0 0 16px;
}

.block-telechargement-popup__success-text {
    margin: 0 0 24px;
}

.block-telechargement-popup__success-link {
    display: inline-block;
}

@media (max-width: 768px) {
    .block-telechargement-popup__content {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }

    .block-telechargement-popup__form h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
