/* Popin marketing - affichage une fois par jour */

.mpopin-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10001;
}

.mpopin-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 560px;
    width: 90%;
    background: transparent;
}

.mpopin-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgb(29, 29, 27);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
    transition: background 0.2s;
}

.mpopin-close:hover {
    background: #444;
}

.mpopin-img {
    display: block;
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.mpopin-link {
    display: block;
}
