.vfm-video-ads-player {
    position: relative;
    display: block;
    width: 100%;
    /* min-width evita que columnas flex/grid de Elementor lo aplasten a 0 */
    min-width: 0;
    height: auto;
    background: #111;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.35);
    font-family: 'Montserrat', 'Arial', sans-serif;
    box-sizing: border-box;
}

.vfm-video-ads-player * {
    box-sizing: border-box;
}

/* Contenedor donde el SDK de Google IMA inyecta el <video> del anuncio */
.vfm-va-slot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e1e1e;
}

.vfm-va-slot video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    background: #000;
}

.vfm-va-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    background: rgba(17,17,17,0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border-left: 2px solid #ff3333;
    pointer-events: none;
}

.vfm-va-mute-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 6;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(17,17,17,0.75);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s background, 0.2s transform;
    padding: 0;
}

.vfm-va-mute-btn:hover {
    background: #ff3333;
    transform: translateY(-1px);
}

.vfm-va-mute-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.vfm-va-icon-unmuted { display: none; }
.vfm-va-icon-muted   { display: block; }

.vfm-va-mute-btn:not(.is-muted) .vfm-va-icon-muted   { display: none; }
.vfm-va-mute-btn:not(.is-muted) .vfm-va-icon-unmuted { display: block; }
