/* CCL - Popup promocional */

.ccl-popup {
    position: fixed;
    z-index: 9999;
    display: none;
}

.ccl-popup.is-visible {
    display: block;
}

.ccl-popup-inferior-derecha {
    bottom: 20px;
    right: 20px;
}

.ccl-popup-inferior-izquierda {
    bottom: 20px;
    left: 20px;
}

.ccl-popup-centro {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
}

.ccl-popup-centro.is-visible {
    display: flex;
}

.ccl-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.ccl-popup-box {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    max-width: 90vw;
    max-height: 90vh;
}

.ccl-popup-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ccl-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccl-popup-close:hover {
    background: #000;
}

.ccl-popup.is-cerrado {
    display: none;
}

@media (max-width: 600px) {
    .ccl-popup-inferior-derecha,
    .ccl-popup-inferior-izquierda {
        bottom: 10px;
    }
    .ccl-popup-inferior-derecha {
        right: 10px;
    }
    .ccl-popup-inferior-izquierda {
        left: 10px;
    }
    .ccl-popup-box {
        max-width: 80vw;
        max-height: 80vw;
    }
}
